added bell beep on new turn

tweaked modded stats
This commit is contained in:
jan6 2020-03-15 12:16:51 +00:00
parent 33ded6d0dc
commit 7421652997
3 changed files with 14 additions and 8 deletions

View File

@ -1,3 +1,8 @@
Version 1.4.2 by ~jan6, 2020
added a terminal bell on the start of each turn, to notify players
Version 1.4.1 by ~jan6, 2020
restored original stats,

View File

@ -19,17 +19,17 @@
#define STAR '*' /* star character */
#define BLACKHOLE '@' /* black hole character */
#define END_PERCENT 55 /* end when this much of the map is full */
#define INIT_CASH 6000 /* initial player cash */
#define SPLIT_PRICE 3000 /* when stocks split 2-1 */
#define END_PERCENT 45 /* end when this much of the map is full */
#define INIT_CASH 600 /* initial player cash */
#define SPLIT_PRICE 300 /* when stocks split 2-1 */
#define NUMCO 5 /* number of companies (don't change) */
#define INIT_CO_COST 90 /* initial company start cost */
#define FOUNDER_BONUS 10 /* founder gets this much stock */
#define INIT_CO_COST 9 /* initial company start cost */
#define FOUNDER_BONUS 5 /* founder gets this much stock */
#define NUMMOVES 6 /* number of moves options a player gets */
#define MAXPLAYERS 4 /* total number of players a game can have */
#define STARCOST 251 /* company's price increase near star */
#define BLACKHOLECOST -250 /* price increase near black hole */
#define NEWCOCOST 101 /* company's price increase near new co */
#define STARCOST 26 /* company's price increase near star */
#define BLACKHOLECOST -25 /* price increase near black hole */
#define NEWCOCOST 10 /* company's price increase near new co */
#define Mx 12 /* x dimension of map */

View File

@ -251,6 +251,7 @@ int main(int argc, char *argv[])
//ai_buy_sell(pl,co,turn,map,Difficulty);
//}
turn = (++turn)%numplayers;
fprintf(stderr,"\x07");
}
} while (!done);