]> git.pond.sub.org Git - empserver/blob - include/options.h
Replace the build process. The new one requires GNU Make, Autoconf
[empserver] / include / options.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  *  options.h: Define which "optional" features should be enabled.
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare
32  *     Jeff Bailey
33  *     Chad Zabel
34  *     Thomas Rushack, 1992
35  *     Ken Stevens, 1995
36  *     Steve McClure, 1998
37  */
38
39 #ifndef _OPTIONS_H_
40 #define _OPTIONS_H_
41
42 #define MAXNOC 99
43 #define BLITZ
44
45 /* #define NO_FORT_FIRE *//* Forts cannot fire */
46
47 #define BRIDGETOWERS            /* Bridge towers are enabled */
48
49 #define GODNEWS                 /* We inform the world when deities give/take away */
50
51 #define LANDSPIES               /* Enable the land unit type spies */
52
53 #define START_CASH 25000        /* set starting cash when capitol created */
54
55                         /* Setting BLITZ sets a couple of things.
56                            1.  BTU's always max when you login. 
57                            2.  Changing name doesn't take any btus or $$
58                            enables BLITZ updates, also turns on NOFOOD, below */
59
60 /* #define GO_RENEW *//* Gold and Oil are renewable resources */
61 /* #define GUINEA_PIGS *//* Experimental stuff not ready for prime time */
62 /* #define DEFENSE_INFRA *//* Allow the improvement of defensive infrastructure */
63
64 /*#define MOB_ACCESS *//* Mobility updates real-time */
65 /*#define TECH_POP *//* Technology costs more as population rises */
66
67 /*#define MARKET *//* Time-based MARKET and TRADING */
68 #define LOANS                   /* Bail out other countries via S&L scandals */
69 #define TREATIES                /* Sign treaties with your friends and enemies */
70
71 /*#define HIDDEN*//* Hides information between players */
72 /*#define LOSE_CONTACT*//* Allows contact to be lost after a few updates */
73
74 /* Chainsaw Mods */
75 /*#define FUEL*//* Ships use fuel to move */
76 /*#define TRADESHIPS*//* Use Tradeships */
77 /*#define SLOW_WAR*//* Declaring war takes time */
78 #define PINPOINTMISSILE /**/
79 #define FALLOUT                 /* Enables secondary effects caused by radiation */
80 #define SAIL                    /* A update routine to move ships */
81 #define NOMOBCOST               /* No mob cost for firing from ships */
82 /*#define SUPER_BARS *//* Bars can't be destroyed by fire */
83 #define EASY_BRIDGES            /* Bridges can be built anywhere */
84 #define ALL_BLEED               /* Tech bleeds to everyone */
85 /*#define DRNUKE*//* Need research to make nukes */
86 #define NO_PLAGUE               /* Plague is disabled */
87 /*#define RES_POP*//* population is limited by research */
88 /*#define BIG_CITY *//* allow 10x civs in 'c' sectors */
89 #define INTERDICT_ATT           /* interdict post-attack move in */
90 #define SHOWPLANE /**/
91 #define UPDATESCHED             /* Used to controle update times and should always */
92 #ifdef UPDATESCHED              /* be used */
93 #define DEMANDUPDATE            /* NOTE! Depends on UPDATESCHED! Don't use without it! */
94 #endif /* UPDATESCHED */
95 /*#define       NOFOOD*/ /**/
96
97 #ifdef BLITZ
98 #define NOFOOD                  /* automatically have no food for blitzes */
99 #endif /* BLITZ */
100
101 #endif /* _OPTIONS_H_ */