Rev 4789 | Rev 4811 | Go to most recent revision | 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 |
||
2726 | hendricks2 | 23 | |
24 | extern int32_t g_gameType; |
||
25 | |||
4557 | hendricks2 | 26 | extern int32_t g_usingAddon; |
27 | extern int32_t g_dependencyCRC; |
||
28 | |||
2726 | hendricks2 | 29 | #define DUKE (g_gameType & GAMEFLAG_DUKE) |
30 | #define NAM (g_gameType & GAMEFLAG_NAM) |
||
31 | #define NAPALM (g_gameType & GAMEFLAG_NAPALM) |
||
32 | #define WW2GI (g_gameType & GAMEFLAG_WW2GI) |
||
3803 | terminx | 33 | #define SHAREWARE (g_gameType & GAMEFLAG_SHAREWARE) |
3886 | terminx | 34 | #define DUKEBETA ((g_gameType & GAMEFLAG_DUKEBETA) == GAMEFLAG_DUKEBETA) |
2726 | hendricks2 | 35 | |
36 | enum Games_t { |
||
37 | GAME_DUKE = 0, |
||
38 | GAME_NAM, |
||
39 | GAME_NAPALM, |
||
40 | GAME_WW2GI, |
||
41 | GAMECOUNT |
||
42 | }; |
||
43 | |||
3637 | terminx | 44 | enum instpath_t { |
4790 | hendricks2 | 45 | INSTPATH_STEAM_DUKE3D, |
46 | INSTPATH_GOG_DUKE3D, |
||
47 | INSTPATH_3DR_DUKE3D, |
||
48 | INSTPATH_3DR_ANTH, |
||
49 | INSTPATH_STEAM_NAM, |
||
3637 | terminx | 50 | NUMINSTPATHS |
51 | }; |
||
52 | |||
4560 | hendricks2 | 53 | typedef enum basepal_ { |
54 | BASEPAL = 0, |
||
55 | WATERPAL, |
||
56 | SLIMEPAL, |
||
57 | DREALMSPAL, |
||
58 | TITLEPAL, |
||
59 | ENDINGPAL, // 5 |
||
60 | ANIMPAL, |
||
61 | BASEPALCOUNT |
||
62 | } basepal_t; |
||
63 | |||
4557 | hendricks2 | 64 | extern const char *g_gameNamePtr; |
65 | |||
2726 | hendricks2 | 66 | extern char *g_grpNamePtr; |
67 | extern char *g_scriptNamePtr; |
||
68 | |||
2796 | helixhorne | 69 | extern const char *G_DefaultGrpFile(void); |
70 | extern const char *G_GrpFile(void); |
||
2726 | hendricks2 | 71 | |
2796 | helixhorne | 72 | extern const char *G_DefaultConFile(void); |
73 | extern const char *G_ConFile(void); |
||
2726 | hendricks2 | 74 | |
4128 | hendricks2 | 75 | extern char **g_scriptModules; |
76 | extern int32_t g_scriptModulesNum; |
||
77 | |||
78 | extern void G_AddCon(const char *buffer); |
||
79 | extern void G_AddConModule(const char *buffer); |
||
80 | |||
2726 | hendricks2 | 81 | extern void clearGrpNamePtr(void); |
82 | extern void clearScriptNamePtr(void); |
||
83 | |||
4557 | hendricks2 | 84 | extern int32_t loaddefinitions_game(const char *, int32_t); |
85 | extern int32_t g_groupFileHandle; |
||
86 | |||
3220 | hendricks2 | 87 | ////////// |
88 | |||
3976 | helixhorne | 89 | extern void G_InitMultiPsky(int32_t CLOUDYOCEAN__DYN, int32_t MOONSKY1__DYN, int32_t BIGORBIT1__DYN, int32_t LA__DYN); |
90 | extern void G_SetupGlobalPsky(void); |
||
3220 | hendricks2 | 91 | |
3581 | hendricks2 | 92 | ////////// |
93 | |||
4557 | hendricks2 | 94 | extern char g_modDir[BMAX_PATH]; |
4668 | terminx | 95 | extern int32_t kopen4loadfrommod(const char *filename, char searchfirst); |
3581 | hendricks2 | 96 | extern void G_AddSearchPaths(void); |
3654 | terminx | 97 | extern void G_CleanupSearchPaths(void); |
3581 | hendricks2 | 98 | |
4557 | hendricks2 | 99 | extern void G_ExtPreInit(int32_t argc,const char **argv); |
100 | extern void G_ExtInit(void); |
||
101 | extern void G_ExtPreStartupWindow(void); |
||
102 | extern void G_ExtPostStartupWindow(int32_t autoload); |
||
103 | |||
3637 | terminx | 104 | extern const char * G_GetInstallPath(int32_t insttype); |
105 | |||
4559 | hendricks2 | 106 | ////////// |
107 | |||
108 | void G_LoadGroupsInDir(const char *dirname); |
||
109 | void G_DoAutoload(const char *dirname); |
||
110 | |||
4564 | hendricks2 | 111 | ////////// |
112 | |||
113 | extern uint8_t *basepaltable[BASEPALCOUNT]; |
||
114 | |||
115 | extern int32_t g_firstFogPal; |
||
116 | extern int32_t G_LoadLookups(void); |
||
117 | |||
4766 | hendricks2 | 118 | #ifdef __cplusplus |
119 | } |
||
2726 | hendricks2 | 120 | #endif |
4766 | hendricks2 | 121 | |
122 | #endif |