]> git.pond.sub.org Git - empserver/blob - include/optlist.h
(START_UNITS, start_unit_type, deity_build_land, new): Remove
[empserver] / include / optlist.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  optlist.h: Definitions of option listings
29  * 
30  *  Known contributors to this file:
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1998
33  */
34
35 #ifndef _OPTLIST_H_
36 #define _OPTLIST_H_
37
38 #include "nsc.h"
39
40 /* Default econfig file */
41 extern char dflt_econfig[];
42
43 struct option_list {
44     char *opt_key;
45     int *opt_valuep;
46 };
47
48 extern struct option_list Options[];
49
50 /* Options, can be switched in econfig */
51 extern int opt_ALL_BLEED;
52 extern int opt_BIG_CITY;
53 extern int opt_BLITZ;
54 extern int opt_BRIDGETOWERS;
55 extern int opt_DEFENSE_INFRA;
56 extern int opt_DEMANDUPDATE;
57 extern int opt_DRNUKE;
58 extern int opt_EASY_BRIDGES;
59 extern int opt_FALLOUT;
60 extern int opt_FUEL;
61 extern int opt_GODNEWS;
62 extern int opt_GO_RENEW;
63 extern int opt_GUINEA_PIGS;
64 extern int opt_HIDDEN;
65 extern int opt_INTERDICT_ATT;
66 extern int opt_LANDSPIES;
67 extern int opt_LOANS;
68 extern int opt_LOSE_CONTACT;
69 extern int opt_MARKET;
70 extern int opt_MOB_ACCESS;
71 extern int opt_NEUTRON;
72 extern int opt_NOFOOD;
73 extern int opt_NOMOBCOST;
74 extern int opt_NONUKES;
75 extern int opt_NO_FORT_FIRE;
76 extern int opt_NO_HCMS;
77 extern int opt_NO_LCMS;
78 extern int opt_NO_OIL;
79 extern int opt_NO_PLAGUE;
80 extern int opt_PINPOINTMISSILE;
81 extern int opt_RES_POP;
82 extern int opt_SAIL;
83 extern int opt_SHOWPLANE;
84 extern int opt_SLOW_WAR;
85 extern int opt_SUPER_BARS;
86 extern int opt_TECH_POP;
87 extern int opt_TRADESHIPS;
88 extern int opt_TREATIES;
89 extern int opt_UPDATESCHED;
90
91 /* Game parameters, can be set in econfig */
92 #define EMP_CONFIG_H_OUTPUT
93 #include "econfig-spec.h"
94 #undef  EMP_CONFIG_H_OUTPUT
95
96 /* Variables that get values derived from econfig */
97 extern char *motdfil;
98 extern char *downfil;
99 extern char *disablefil;
100 extern char *banfil;
101 extern char *authfil;
102 extern char *annfil;
103 extern char *timestampfil;
104 extern char *teldir;
105 extern char *telfil;
106
107 enum {
108     KM_ALLOC = 0x01,            /* memory allocated */
109     KM_INTERNAL = 0x02          /* not to be disclosed to players */
110 };
111
112 struct keymatch {
113     char *km_key;               /* the key */
114     nsc_type km_type;           /* type of associated data */
115     void *km_data;              /* pointer to associated data */
116     int km_flags;               /* useful flags */
117     char *km_comment;           /* Comment (hopefully useful) */
118 };
119
120 extern struct keymatch configkeys[];
121
122 #endif /* _OPTLIST_H_ */