Rev 5062 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2726 | hendricks2 | 1 | // |
2 | // Definitions of common game-only data structures/functions |
||
3 | // (and declarations of data appearing in both) |
||
4 | // for EDuke32 and Mapster32 |
||
5 | // |
||
6 | |||
7 | #ifndef EDUKE32_COMMON_GAME_H_ |
||
8 | #define EDUKE32_COMMON_GAME_H_ |
||
9 | |||
4766 | hendricks2 | 10 | #ifdef __cplusplus |
11 | extern "C" { |
||
12 | #endif |
||
13 | |||
4557 | hendricks2 | 14 | extern int32_t usecwd; |
15 | |||
2726 | hendricks2 | 16 | #define GAMEFLAG_DUKE 0x00000001 |
17 | #define GAMEFLAG_NAM 0x00000002 |
||
18 | #define GAMEFLAG_NAPALM 0x00000004 |
||
19 | #define GAMEFLAG_WW2GI 0x00000008 |
||
3654 | terminx | 20 | #define GAMEFLAG_ADDON 0x00000010 |
3803 | terminx | 21 | #define GAMEFLAG_SHAREWARE 0x00000020 |
22 | #define GAMEFLAG_DUKEBETA 0x00000060 // includes 0x20 since it's a shareware beta |
||
5050 | hendricks2 | 23 | #define GAMEFLAGMASK 0x0000007F // flags allowed from grpinfo |
4887 | hendricks2 | 24 | #define GAMEFLAG_NWINTER 0x00000080 |
2726 | hendricks2 | 25 | |
26 | extern int32_t g_gameType; |
||
27 | |||
4557 | hendricks2 | 28 | extern int32_t g_usingAddon; |
29 | extern int32_t g_dependencyCRC; |
||
5064 | hendricks2 | 30 | extern int32_t g_groupCRC; |
31 | extern void (*g_postprocessing)(int32_t); |
||
4557 | hendricks2 | 32 | |
2726 | hendricks2 | 33 | #define DUKE (g_gameType & GAMEFLAG_DUKE) |
34 | #define NAM (g_gameType & GAMEFLAG_NAM) |
||
35 | #define NAPALM (g_gameType & GAMEFLAG_NAPALM) |
||
36 | #define WW2GI (g_gameType & GAMEFLAG_WW2GI) |
||
3803 | terminx | 37 | #define SHAREWARE (g_gameType & GAMEFLAG_SHAREWARE) |
3886 | terminx | 38 | #define DUKEBETA ((g_gameType & GAMEFLAG_DUKEBETA) == GAMEFLAG_DUKEBETA) |
4887 | hendricks2 | 39 | #define NWINTER (g_gameType & GAMEFLAG_NWINTER) |
2726 | hendricks2 | 40 | |
41 | enum Games_t { |
||
42 | GAME_DUKE = 0, |
||
43 | GAME_NAM, |
||
44 | GAME_NAPALM, |
||
45 | GAME_WW2GI, |
||
46 | GAMECOUNT |
||
47 | }; |
||
48 | |||
3637 | terminx | 49 | enum instpath_t { |
4790 | hendricks2 | 50 | INSTPATH_STEAM_DUKE3D, |
51 | INSTPATH_GOG_DUKE3D, |
||
52 | INSTPATH_3DR_DUKE3D, |
||
53 | INSTPATH_3DR_ANTH, |
||
54 | INSTPATH_STEAM_NAM, |
||
3637 | terminx | 55 | NUMINSTPATHS |
56 | }; |
||
57 | |||
4886 | hendricks2 | 58 | enum searchpathtypes_t { |
59 | SEARCHPATH_REMOVE = 1<<0, |
||
60 | SEARCHPATH_NAM = 1<<1, |
||
4887 | hendricks2 | 61 | |
62 | SEARCHPATH_NWINTER = 1<<2, |
||
4886 | hendricks2 | 63 | }; |
64 | |||
4560 | hendricks2 | 65 | typedef enum basepal_ { |
66 | BASEPAL = 0, |
||
67 | WATERPAL, |
||
68 | SLIMEPAL, |
||
69 | DREALMSPAL, |
||
70 | TITLEPAL, |
||
71 | ENDINGPAL, // 5 |
||
72 | ANIMPAL, |
||
73 | BASEPALCOUNT |
||
74 | } basepal_t; |
||
75 | |||
4557 | hendricks2 | 76 | extern const char *g_gameNamePtr; |
77 | |||
2726 | hendricks2 | 78 | extern char *g_grpNamePtr; |
79 | extern char *g_scriptNamePtr; |
||
80 | |||
2796 | helixhorne | 81 | extern const char *G_DefaultGrpFile(void); |
82 | extern const char *G_GrpFile(void); |
||
2726 | hendricks2 | 83 | |
2796 | helixhorne | 84 | extern const char *G_DefaultConFile(void); |
85 | extern const char *G_ConFile(void); |
||
2726 | hendricks2 | 86 | |
4128 | hendricks2 | 87 | extern char **g_scriptModules; |
88 | extern int32_t g_scriptModulesNum; |
||
89 | |||
90 | extern void G_AddCon(const char *buffer); |
||
91 | extern void G_AddConModule(const char *buffer); |
||
92 | |||
2726 | hendricks2 | 93 | extern void clearGrpNamePtr(void); |
94 | extern void clearScriptNamePtr(void); |
||
95 | |||
4557 | hendricks2 | 96 | extern int32_t loaddefinitions_game(const char *, int32_t); |
97 | extern int32_t g_groupFileHandle; |
||
98 | |||
3220 | hendricks2 | 99 | ////////// |
100 | |||
3976 | helixhorne | 101 | extern void G_InitMultiPsky(int32_t CLOUDYOCEAN__DYN, int32_t MOONSKY1__DYN, int32_t BIGORBIT1__DYN, int32_t LA__DYN); |
102 | extern void G_SetupGlobalPsky(void); |
||
3220 | hendricks2 | 103 | |
3581 | hendricks2 | 104 | ////////// |
105 | |||
4557 | hendricks2 | 106 | extern char g_modDir[BMAX_PATH]; |
4668 | terminx | 107 | extern int32_t kopen4loadfrommod(const char *filename, char searchfirst); |
3581 | hendricks2 | 108 | extern void G_AddSearchPaths(void); |
3654 | terminx | 109 | extern void G_CleanupSearchPaths(void); |
3581 | hendricks2 | 110 | |
4557 | hendricks2 | 111 | extern void G_ExtPreInit(int32_t argc,const char **argv); |
112 | extern void G_ExtInit(void); |
||
4997 | terminx | 113 | extern void G_ScanGroups(void); |
114 | extern void G_LoadGroups(int32_t autoload); |
||
4557 | hendricks2 | 115 | |
3637 | terminx | 116 | extern const char * G_GetInstallPath(int32_t insttype); |
117 | |||
4559 | hendricks2 | 118 | ////////// |
119 | |||
120 | void G_LoadGroupsInDir(const char *dirname); |
||
121 | void G_DoAutoload(const char *dirname); |
||
122 | |||
4564 | hendricks2 | 123 | ////////// |
124 | |||
125 | extern uint8_t *basepaltable[BASEPALCOUNT]; |
||
126 | |||
127 | extern int32_t G_LoadLookups(void); |
||
128 | |||
4948 | hendricks2 | 129 | ////////// |
130 | |||
131 | #if defined HAVE_FLAC || defined HAVE_VORBIS |
||
132 | int32_t S_UpgradeFormat(const char *fn, char searchfirst); |
||
133 | #endif |
||
134 | |||
4766 | hendricks2 | 135 | #ifdef __cplusplus |
136 | } |
||
2726 | hendricks2 | 137 | #endif |
4766 | hendricks2 | 138 | |
139 | #endif |