2020-07-20 21:07:44 +00:00
|
|
|
#pragma once
|
2020-06-11 07:22:16 +00:00
|
|
|
|
|
|
|
#include "build.h"
|
|
|
|
#include "compat.h"
|
2020-06-21 20:18:12 +00:00
|
|
|
#include "duke3d.h"
|
2020-07-06 11:26:26 +00:00
|
|
|
#include "quotemgr.h"
|
2020-06-11 07:22:16 +00:00
|
|
|
#include "sounds.h"
|
2020-07-06 11:26:26 +00:00
|
|
|
#include "constants.h"
|
2020-07-19 18:04:11 +00:00
|
|
|
#include "types.h"
|
2020-08-30 08:42:44 +00:00
|
|
|
#include "d_net.h"
|
2020-06-11 07:22:16 +00:00
|
|
|
|
|
|
|
BEGIN_DUKE_NS
|
|
|
|
|
2020-07-19 18:04:11 +00:00
|
|
|
extern user_defs ud;
|
|
|
|
|
2020-11-29 12:54:58 +00:00
|
|
|
struct DukeGameInfo
|
|
|
|
{
|
|
|
|
// Static constant global state
|
2020-11-29 21:31:02 +00:00
|
|
|
int respawnactortime;
|
|
|
|
int bouncemineblastradius;
|
|
|
|
int respawnitemtime;
|
|
|
|
int morterblastradius;
|
|
|
|
int numfreezebounces;
|
|
|
|
int pipebombblastradius;
|
|
|
|
int playerfriction;
|
|
|
|
int rpgblastradius;
|
|
|
|
int seenineblastradius;
|
|
|
|
int shrinkerblastradius;
|
|
|
|
int gravity;
|
|
|
|
int tripbombblastradius;
|
|
|
|
int camerashitable;
|
|
|
|
int max_player_health;
|
|
|
|
int max_armour_amount;
|
|
|
|
int lasermode;
|
|
|
|
int freezerhurtowner;
|
|
|
|
int impact_damage;
|
|
|
|
|
|
|
|
TileInfo tileinfo[MAXTILES]; // This is not from EDuke32.
|
|
|
|
ActorInfo actorinfo[MAXTILES];
|
|
|
|
int16_t max_ammo_amount[MAX_WEAPONS];
|
|
|
|
int16_t weaponsandammosprites[15];
|
|
|
|
int playerheight;
|
|
|
|
int displayflags;
|
2020-11-29 12:54:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern DukeGameInfo gs;
|
2020-07-19 20:34:59 +00:00
|
|
|
|
|
|
|
extern int otherp; // transient helper, MP only
|
|
|
|
extern int actor_tog; // cheat state
|
|
|
|
extern intptr_t apScriptGameEvent[];
|
|
|
|
extern TArray<int> ScriptCode;
|
2020-07-19 21:09:10 +00:00
|
|
|
extern int playerswhenstarted;
|
|
|
|
extern int show_shareware;
|
|
|
|
extern int screenpeek;
|
2020-07-19 18:04:11 +00:00
|
|
|
|
2020-07-19 20:34:59 +00:00
|
|
|
// Variables that must be saved
|
2020-07-21 19:32:38 +00:00
|
|
|
extern uint8_t sectorextra[MAXSECTORS]; // these hold fields that were formerly in sprite and sector. Move these back into the base structs!
|
2020-07-19 18:04:11 +00:00
|
|
|
|
2020-07-19 20:34:59 +00:00
|
|
|
extern int rtsplaying;
|
|
|
|
extern int tempwallptr;
|
2020-10-17 07:06:09 +00:00
|
|
|
|
2020-07-19 18:04:11 +00:00
|
|
|
extern bool sound445done;
|
2020-07-19 20:34:59 +00:00
|
|
|
extern player_struct ps[MAXPLAYERS];
|
|
|
|
extern int spriteqamount;
|
|
|
|
extern uint8_t shadedsector[MAXSECTORS];
|
|
|
|
extern int lastvisinc;
|
2020-07-19 21:09:10 +00:00
|
|
|
extern animwalltype animwall[MAXANIMWALLS];
|
|
|
|
extern int numanimwalls;
|
|
|
|
extern int animatecnt;
|
|
|
|
extern int numclouds;
|
2020-11-04 18:25:49 +00:00
|
|
|
extern DDukeActor* camsprite;
|
2020-07-19 21:09:10 +00:00
|
|
|
extern int numcyclers;
|
|
|
|
extern int earthquaketime;
|
|
|
|
extern int global_random;
|
|
|
|
extern int mirrorcnt;
|
|
|
|
extern int numplayersprites;
|
|
|
|
extern int spriteqloc;
|
2020-07-20 21:07:44 +00:00
|
|
|
extern int thunder_brightness;
|
2020-07-19 21:09:10 +00:00
|
|
|
|
2020-07-20 18:40:29 +00:00
|
|
|
enum animtype_t
|
|
|
|
{
|
|
|
|
anim_floorz,
|
|
|
|
anim_ceilingz,
|
|
|
|
anim_vertexx,
|
|
|
|
anim_vertexy,
|
|
|
|
};
|
2021-11-06 13:22:16 +00:00
|
|
|
extern int animatesect[MAXANIMATES];
|
2020-07-20 18:40:29 +00:00
|
|
|
extern int16_t animatetarget[MAXANIMATES];
|
|
|
|
extern int8_t animatetype[MAXANIMATES];
|
2020-07-19 21:09:10 +00:00
|
|
|
extern int animategoal[MAXANIMATES];
|
|
|
|
extern int animatevel[MAXANIMATES];
|
|
|
|
|
|
|
|
extern int16_t clouds[256];
|
2020-12-06 19:49:32 +00:00
|
|
|
extern float cloudx;
|
|
|
|
extern float cloudy;
|
2020-08-25 23:33:40 +00:00
|
|
|
extern int cloudclock;
|
2020-07-19 21:09:10 +00:00
|
|
|
|
2020-10-24 07:40:10 +00:00
|
|
|
extern DDukeActor *spriteq[1024];
|
2020-07-19 21:09:10 +00:00
|
|
|
extern int16_t cyclers[MAXCYCLERS][6];
|
2021-11-06 13:22:16 +00:00
|
|
|
extern int mirrorsector[64];
|
|
|
|
extern int mirrorwall[64];
|
2020-07-19 21:09:10 +00:00
|
|
|
|
|
|
|
extern int wupass;
|
|
|
|
extern int chickenplant;
|
|
|
|
extern int thunderon;
|
|
|
|
extern int ufospawn;
|
|
|
|
extern int ufocnt;
|
|
|
|
extern int hulkspawn;
|
|
|
|
extern int lastlevel;
|
|
|
|
|
|
|
|
extern int geosectorwarp[MAXGEOSECTORS];
|
|
|
|
extern int geosectorwarp2[MAXGEOSECTORS];
|
|
|
|
extern int geosector[MAXGEOSECTORS];
|
|
|
|
extern int geox[MAXGEOSECTORS];
|
|
|
|
extern int geoy[MAXGEOSECTORS];
|
|
|
|
extern int geox2[MAXGEOSECTORS];
|
|
|
|
extern int geoy2[MAXGEOSECTORS];
|
|
|
|
extern int geocnt;
|
|
|
|
|
|
|
|
extern short ambientlotag[64];
|
|
|
|
extern short ambienthitag[64];
|
|
|
|
extern unsigned ambientfx;
|
|
|
|
extern int msx[MAXANIMPOINTS], msy[MAXANIMPOINTS];
|
|
|
|
extern int WindTime, WindDir;
|
|
|
|
extern short fakebubba_spawn, mamaspawn_count, banjosound;
|
2020-10-26 06:30:34 +00:00
|
|
|
extern short BellTime;
|
|
|
|
extern DDukeActor* BellSprite /* word_119BE0*/;
|
2020-07-19 21:09:10 +00:00
|
|
|
extern uint8_t enemysizecheat /*raat607*/, ufospawnsminion, pistonsound, chickenphase /* raat605*/, RRRA_ExitedLevel, fogactive;
|
|
|
|
extern uint32_t everyothertime;
|
|
|
|
extern player_orig po[MAXPLAYERS];
|
2020-07-06 20:23:18 +00:00
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
END_DUKE_NS
|
|
|
|
|
2020-07-06 20:23:18 +00:00
|
|
|
#include "inlines.h"
|
|
|
|
|