-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.h
63 lines (55 loc) · 1.34 KB
/
settings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Atlantis v1.0 13 September 1993
* Copyright 1993 by Russell Wallace
*
* This program may be freely used, modified and distributed. It may not be
* sold or used commercially without prior written permission from the author.
*/
#ifndef ATL_SETTINGS_H
#define ATL_SETTINGS_H
#define CFG_STACKS 0x01
#define CFG_TEACHERS 0x02
#define CFG_MOVES 0x04
struct stream;
struct cJSON;
typedef enum {
COOR_NONE,
COOR_TORUS,
COOR_ALH,
COOR_ERESSEA
} coor_t;
#define NAMESIZE 81
#define DISPLAYSIZE 161
#define MAXDIRECTIONS 6
typedef struct settings {
int width, height;
int moves;
int upkeep;
unsigned int features;
int startmoney;
int startmen;
coor_t transform;
char **directions[MAXDIRECTIONS];
} settings;
void read_config_json(struct cJSON*);
int read_config(const char *filename);
struct settings * get_config(void);
#define config (*get_config())
#define ORDERGAP 4
#define MAXPERBLOCK 5
#define BLOCKSIZE 8
#define BLOCKMAX 2
#define MAINTENANCE 10
#define STARTMONEY 5000
#define RECRUITCOST 50
#define RECRUITFRACTION 4
#define ENTERTAININCOME 20
#define ENTERTAINFRACTION 20
#define TAXINCOME 200
#define COMBATEXP 10
#define PRODUCEEXP 10
#define TEACHNUMBER 10
#define STUDYCOST 200
#define POPGROWTH 5
#define PEASANTMOVE 5
#endif