1 /*
2 Copyright (C) 1994-1995 Apogee Software, Ltd.
3 
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8 
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 
13 See the GNU General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 
19 */
20 #ifndef _develop_public
21 #define _develop_public
22 
23 #define NOMEMCHECK
24 #define DEBUG 0
25 #define DEVELOPMENT 0
26 #define BETA 0
27 #define SOUNDTEST 0
28 #define PRECACHETEST 0
29 #define ELEVATORTEST 0
30 #define TEAMTEST     0
31 #define LOADSAVETEST 0
32 #define WEAPONCHEAT  1
33 #define MEMORYCORRUPTIONTEST  0
34 #define SYNCCHECK    1
35 #define DATACORRUPTIONTEST    0
36 #define BATTLECHECK 0 // This should be turned off for release, on for beta
37 #define BATTLEINFO  0 // This should be turned off for release
38 
39 #define DELUXE   0
40 #define LOWCOST  0
41 
42 // Make sure only one of the following are on at one time
43 #define SHAREWARE   0
44 #define SUPERROTT   0
45 #define SITELICENSE 0
46 
47 // cute little dopefish thing, only works with special patch?
48 #define DOPEFISH 0
49 
50 // okay?
51 
52 #define TEDLAUNCH   0
53 #define SOFTERROR   0
54 #define RANDOMTEST  0
55 #define WHEREAMI    0
56 
57 
58 
59 
60 #if (WHEREAMI==1)
61 
62 #define wami(val)      \
63    {                   \
64    programlocation=val;\
65    }
66 
67 #define waminot()
68 /*
69    {                  \
70    programlocation=-1;\
71    }
72 */
73 
74 #else
75 
76 #define wami(val)
77 #define waminot()
78 
79 #endif
80 
81 #define	isSHAREWARE	(SHAREWARE==1)//(gamestate.Product==ROTT_SHAREWARE)
82 
83 #endif
84