]> git.pond.sub.org Git - empserver/blob - include/optlist.h
(opt_NEUTRON, buil, denotate, show_nuke_capab, show_nuke_build,
[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_NOFOOD;
72 extern int opt_NOMOBCOST;
73 extern int opt_NO_FORT_FIRE;
74 extern int opt_NO_HCMS;
75 extern int opt_NO_LCMS;
76 extern int opt_NO_OIL;
77 extern int opt_NO_PLAGUE;
78 extern int opt_PINPOINTMISSILE;
79 extern int opt_RES_POP;
80 extern int opt_SAIL;
81 extern int opt_SHOWPLANE;
82 extern int opt_SLOW_WAR;
83 extern int opt_SUPER_BARS;
84 extern int opt_TECH_POP;
85 extern int opt_TRADESHIPS;
86 extern int opt_TREATIES;
87 extern int opt_UPDATESCHED;
88
89 /* Game parameters, can be set in econfig */
90 #define EMP_CONFIG_H_OUTPUT
91 #include "econfig-spec.h"
92 #undef  EMP_CONFIG_H_OUTPUT
93
94 /* Variables that get values derived from econfig */
95 extern char *motdfil;
96 extern char *downfil;
97 extern char *disablefil;
98 extern char *banfil;
99 extern char *authfil;
100 extern char *annfil;
101 extern char *timestampfil;
102 extern char *teldir;
103 extern char *telfil;
104
105 enum {
106     KM_ALLOC = 0x01,            /* memory allocated */
107     KM_INTERNAL = 0x02          /* not to be disclosed to players */
108 };
109
110 struct keymatch {
111     char *km_key;               /* the key */
112     nsc_type km_type;           /* type of associated data */
113     void *km_data;              /* pointer to associated data */
114     int km_flags;               /* useful flags */
115     char *km_comment;           /* Comment (hopefully useful) */
116 };
117
118 extern struct keymatch configkeys[];
119
120 #endif /* _OPTLIST_H_ */