2010-08-02 08:13:51 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
|
|
|
|
|
|
|
This file is part of EDuke32.
|
|
|
|
|
|
|
|
EDuke32 is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2014-07-20 08:55:56 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-08-02 08:13:51 +00:00
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __game_h__
|
|
|
|
#define __game_h__
|
|
|
|
|
2013-07-13 21:04:52 +00:00
|
|
|
#include "premap.h"
|
|
|
|
|
2013-12-28 17:04:34 +00:00
|
|
|
// Compile game-side legacy Room over Room code?
|
|
|
|
#define LEGACY_ROR 1
|
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
#define USERQUOTE_LEFTOFFSET 5
|
|
|
|
#define USERQUOTE_RIGHTOFFSET 14
|
|
|
|
|
2014-05-17 12:36:40 +00:00
|
|
|
#define MAXRIDECULE 10
|
|
|
|
#define MAXRIDECULELENGTH 40
|
|
|
|
#define MAXSAVEGAMES 10
|
|
|
|
#define MAXSAVEGAMENAME 22
|
|
|
|
#define MAXPWLOCKOUT 128
|
|
|
|
#define MAXRTSNAME 128
|
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
enum GametypeFlags_t {
|
|
|
|
GAMETYPE_COOP = 0x00000001,
|
|
|
|
GAMETYPE_WEAPSTAY = 0x00000002,
|
|
|
|
GAMETYPE_FRAGBAR = 0x00000004,
|
|
|
|
GAMETYPE_SCORESHEET = 0x00000008,
|
|
|
|
GAMETYPE_DMSWITCHES = 0x00000010,
|
|
|
|
GAMETYPE_COOPSPAWN = 0x00000020,
|
|
|
|
GAMETYPE_ACCESSCARDSPRITES = 0x00000040,
|
|
|
|
GAMETYPE_COOPVIEW = 0x00000080,
|
|
|
|
GAMETYPE_COOPSOUND = 0x00000100,
|
|
|
|
GAMETYPE_OTHERPLAYERSINMAP = 0x00000200,
|
|
|
|
GAMETYPE_ITEMRESPAWN = 0x00000400,
|
|
|
|
GAMETYPE_MARKEROPTION = 0x00000800,
|
|
|
|
GAMETYPE_PLAYERSFRIENDLY = 0x00001000,
|
|
|
|
GAMETYPE_FIXEDRESPAWN = 0x00002000,
|
|
|
|
GAMETYPE_ACCESSATSTART = 0x00004000,
|
|
|
|
GAMETYPE_PRESERVEINVENTORYDEATH = 0x00008000,
|
|
|
|
GAMETYPE_TDM = 0x00010000,
|
|
|
|
GAMETYPE_TDMSPAWN = 0x00020000
|
|
|
|
};
|
|
|
|
|
|
|
|
// logo control
|
|
|
|
enum LogoFlags_t {
|
|
|
|
LOGO_ENABLED = 0x00000001,
|
|
|
|
LOGO_PLAYANIM = 0x00000002,
|
|
|
|
LOGO_PLAYMUSIC = 0x00000004,
|
|
|
|
LOGO_3DRSCREEN = 0x00000008,
|
|
|
|
LOGO_TITLESCREEN = 0x00000010,
|
|
|
|
LOGO_DUKENUKEM = 0x00000020,
|
|
|
|
LOGO_THREEDEE = 0x00000040,
|
|
|
|
LOGO_PLUTOPAKSPRITE = 0x00000080,
|
|
|
|
LOGO_SHAREWARESCREENS = 0x00000100,
|
2013-03-04 01:24:17 +00:00
|
|
|
LOGO_TENSCREEN = 0x00000200,
|
2013-03-15 16:56:29 +00:00
|
|
|
LOGO_STOPANIMSOUNDS = 0x00000400,
|
|
|
|
LOGO_NOE4CUTSCENE = 0x00000800,
|
2014-06-16 23:16:37 +00:00
|
|
|
LOGO_NOE1BONUSSCENE = 0x00001000,
|
|
|
|
LOGO_NOE2BONUSSCENE = 0x00002000,
|
|
|
|
LOGO_NOE3BONUSSCENE = 0x00004000,
|
|
|
|
LOGO_NOE4BONUSSCENE = 0x00008000,
|
|
|
|
LOGO_NOE1ENDSCREEN = 0x00010000,
|
|
|
|
LOGO_NOE2ENDSCREEN = 0x00020000,
|
|
|
|
LOGO_NOE3RADLOGO = 0x00040000,
|
|
|
|
LOGO_NODUKETEAMTEXT = 0x00080000,
|
|
|
|
LOGO_NODUKETEAMPIC = 0x00100000,
|
2010-08-02 08:13:51 +00:00
|
|
|
};
|
|
|
|
|
2013-06-01 06:55:00 +00:00
|
|
|
enum ScreenTextFlags_t {
|
|
|
|
TEXT_XRIGHT = 0x00000001,
|
|
|
|
TEXT_XCENTER = 0x00000002,
|
|
|
|
TEXT_YBOTTOM = 0x00000004,
|
|
|
|
TEXT_YCENTER = 0x00000008,
|
|
|
|
TEXT_INTERNALSPACE = 0x00000010,
|
|
|
|
TEXT_TILESPACE = 0x00000020,
|
|
|
|
TEXT_INTERNALLINE = 0x00000040,
|
|
|
|
TEXT_TILELINE = 0x00000080,
|
|
|
|
TEXT_XOFFSETZERO = 0x00000100,
|
|
|
|
TEXT_XJUSTIFY = 0x00000200,
|
|
|
|
TEXT_YOFFSETZERO = 0x00000400,
|
|
|
|
TEXT_YJUSTIFY = 0x00000800,
|
|
|
|
TEXT_LINEWRAP = 0x00001000,
|
|
|
|
TEXT_UPPERCASE = 0x00002000,
|
|
|
|
TEXT_INVERTCASE = 0x00004000,
|
|
|
|
TEXT_IGNOREESCAPE = 0x00008000,
|
|
|
|
TEXT_LITERALESCAPE = 0x00010000,
|
|
|
|
TEXT_BACKWARDS = 0x00020000,
|
|
|
|
TEXT_GAMETEXTNUMHACK = 0x00040000,
|
|
|
|
TEXT_DIGITALNUMBER = 0x00080000,
|
|
|
|
TEXT_BIGALPHANUM = 0x00100000,
|
|
|
|
TEXT_GRAYFONT = 0x00200000,
|
|
|
|
};
|
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
void A_DeleteSprite(int32_t s);
|
|
|
|
|
2013-03-15 16:56:29 +00:00
|
|
|
static inline int32_t G_GetLogoFlags(void)
|
|
|
|
{
|
|
|
|
#if !defined LUNATIC
|
|
|
|
return Gv_GetVarByLabel("LOGO_FLAGS",255, -1, -1);
|
|
|
|
#else
|
|
|
|
extern int32_t g_logoFlags;
|
|
|
|
return g_logoFlags;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-01-19 18:28:32 +00:00
|
|
|
#ifdef LUNATIC
|
2010-08-02 08:13:51 +00:00
|
|
|
typedef struct {
|
2013-01-19 18:28:32 +00:00
|
|
|
vec3_t pos;
|
|
|
|
int32_t dist, clock;
|
|
|
|
int16_t ang, horiz, sect;
|
|
|
|
} camera_t;
|
|
|
|
|
|
|
|
extern camera_t g_camera;
|
|
|
|
|
|
|
|
# define CAMERA(Membname) (g_camera.Membname)
|
|
|
|
# define CAMERADIST (g_camera.dist)
|
|
|
|
# define CAMERACLOCK (g_camera.clock)
|
|
|
|
#else
|
|
|
|
# define CAMERA(Membname) (ud.camera ## Membname)
|
|
|
|
# define CAMERADIST g_cameraDistance
|
|
|
|
# define CAMERACLOCK g_cameraClock
|
|
|
|
#endif
|
|
|
|
|
2013-08-11 15:28:48 +00:00
|
|
|
// KEEPINSYNC lunatic/defs.ilua
|
2013-01-19 18:28:32 +00:00
|
|
|
typedef struct {
|
|
|
|
#if !defined LUNATIC
|
|
|
|
vec3_t camerapos;
|
|
|
|
#endif
|
2010-08-02 08:13:51 +00:00
|
|
|
int32_t const_visibility,uw_framerate;
|
|
|
|
int32_t camera_time,folfvel,folavel,folx,foly,fola;
|
|
|
|
int32_t reccnt,crosshairscale;
|
|
|
|
|
|
|
|
int32_t runkey_mode,statusbarscale,mouseaiming,weaponswitch,drawweapon; // JBF 20031125
|
|
|
|
int32_t democams,color,msgdisptime,statusbarmode;
|
|
|
|
int32_t m_noexits,noexits,autovote,automsg,idplayers;
|
|
|
|
int32_t team, viewbob, weaponsway, althud, weaponscale, textscale;
|
|
|
|
|
|
|
|
int32_t entered_name,screen_tilting,shadows,fta_on,executions,auto_run;
|
|
|
|
int32_t coords,tickrate,levelstats,m_coop,coop,screen_size,lockout,crosshair;
|
|
|
|
int32_t playerai,angleinterpolation,obituaries;
|
|
|
|
|
|
|
|
int32_t respawn_monsters,respawn_items,respawn_inventory,recstat,monsters_off,brightness;
|
|
|
|
int32_t m_respawn_items,m_respawn_monsters,m_respawn_inventory,m_recstat,m_monsters_off,detail;
|
|
|
|
int32_t m_ffire,ffire,m_player_skill,m_level_number,m_volume_number,multimode;
|
|
|
|
int32_t player_skill,level_number,volume_number,m_marker,marker,mouseflip;
|
|
|
|
|
|
|
|
int32_t configversion;
|
2013-01-19 18:28:32 +00:00
|
|
|
#if !defined LUNATIC
|
2010-08-02 08:13:51 +00:00
|
|
|
int16_t cameraang, camerasect, camerahoriz;
|
2013-01-19 18:28:32 +00:00
|
|
|
#endif
|
2010-08-02 08:13:51 +00:00
|
|
|
int16_t pause_on,from_bonus;
|
|
|
|
int16_t camerasprite,last_camsprite;
|
|
|
|
int16_t last_level,secretlevel, bgstretch;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
int32_t UseJoystick;
|
|
|
|
int32_t UseMouse;
|
|
|
|
int32_t AutoAim;
|
|
|
|
int32_t ShowOpponentWeapons;
|
|
|
|
int32_t MouseDeadZone,MouseBias;
|
|
|
|
int32_t SmoothInput;
|
|
|
|
|
|
|
|
// JBF 20031211: Store the input settings because
|
|
|
|
// (currently) jmact can't regurgitate them
|
|
|
|
int32_t MouseFunctions[MAXMOUSEBUTTONS][2];
|
|
|
|
int32_t MouseDigitalFunctions[MAXMOUSEAXES][2];
|
|
|
|
int32_t MouseAnalogueAxes[MAXMOUSEAXES];
|
|
|
|
int32_t MouseAnalogueScale[MAXMOUSEAXES];
|
|
|
|
int32_t JoystickFunctions[MAXJOYBUTTONS][2];
|
|
|
|
int32_t JoystickDigitalFunctions[MAXJOYAXES][2];
|
|
|
|
int32_t JoystickAnalogueAxes[MAXJOYAXES];
|
|
|
|
int32_t JoystickAnalogueScale[MAXJOYAXES];
|
|
|
|
int32_t JoystickAnalogueDead[MAXJOYAXES];
|
|
|
|
int32_t JoystickAnalogueSaturate[MAXJOYAXES];
|
|
|
|
uint8_t KeyboardKeys[NUMGAMEFUNCTIONS][2];
|
|
|
|
|
|
|
|
//
|
|
|
|
// Sound variables
|
|
|
|
//
|
|
|
|
int32_t FXDevice;
|
|
|
|
int32_t MusicDevice;
|
2013-08-06 23:53:55 +00:00
|
|
|
int32_t MasterVolume;
|
2010-08-02 08:13:51 +00:00
|
|
|
int32_t FXVolume;
|
|
|
|
int32_t MusicVolume;
|
|
|
|
int32_t SoundToggle;
|
|
|
|
int32_t MusicToggle;
|
|
|
|
int32_t VoiceToggle;
|
|
|
|
int32_t AmbienceToggle;
|
|
|
|
|
|
|
|
int32_t NumVoices;
|
|
|
|
int32_t NumChannels;
|
|
|
|
int32_t NumBits;
|
|
|
|
int32_t MixRate;
|
|
|
|
|
|
|
|
int32_t ReverseStereo;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Screen variables
|
|
|
|
//
|
|
|
|
|
|
|
|
int32_t ScreenMode;
|
|
|
|
|
|
|
|
int32_t ScreenWidth;
|
|
|
|
int32_t ScreenHeight;
|
|
|
|
int32_t ScreenBPP;
|
|
|
|
|
|
|
|
int32_t ForceSetup;
|
|
|
|
int32_t NoAutoLoad;
|
|
|
|
|
|
|
|
int32_t scripthandle;
|
|
|
|
int32_t setupread;
|
|
|
|
|
|
|
|
int32_t CheckForUpdates;
|
|
|
|
int32_t LastUpdateCheck;
|
|
|
|
int32_t useprecache;
|
|
|
|
} config;
|
|
|
|
|
|
|
|
char overhead_on,last_overhead,showweapons;
|
|
|
|
char god,warp_on,cashman,eog,showallmap;
|
2012-03-11 17:38:50 +00:00
|
|
|
char show_help,scrollmode,noclip;
|
2014-05-17 12:36:40 +00:00
|
|
|
char ridecule[MAXRIDECULE][MAXRIDECULELENGTH];
|
|
|
|
char savegame[MAXSAVEGAMES][MAXSAVEGAMENAME];
|
|
|
|
char pwlockout[MAXPWLOCKOUT],rtsname[MAXRTSNAME];
|
2010-08-02 08:13:51 +00:00
|
|
|
char display_bonus_screen;
|
|
|
|
char show_level_text;
|
|
|
|
} user_defs;
|
|
|
|
|
|
|
|
|
|
|
|
// this is checked against http://eduke32.com/VERSION
|
|
|
|
extern const char *s_buildDate;
|
2014-07-28 06:42:28 +00:00
|
|
|
|
Clear up handling of g_*NamePtr in the game.
The primary change is that things have been made memory-clean. Some of these
pointers may point to wildly different places during the course of the program
such as statically or dynamically allocated storage, the buffer returned by
getenv() (which must not be modified according to the docs), or an element of
argv[]. Consequently, we need to strdup, or better, dup_filename them if they
are ever to be passed to a function that modifies their pointed-to data.
Specifically:
- added statics or consts according to usage
- 3 new functions clear{Grp,Def,Script}NamePtr, only 'Def' one extern for now
- in G_CheckCommandLine, don't strip 'const'; use Bstrncpyz where appropriate
- remove multiple declarations
Also, warn if an application parameter has been ignored (not matched).
git-svn-id: https://svn.eduke32.com/eduke32@2561 1a8010ca-5511-0410-912e-c29ae57300e0
2012-03-28 19:44:00 +00:00
|
|
|
extern const char *g_rtsNamePtr;
|
2012-06-03 16:09:33 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
extern char CheatStrings[][MAXCHEATLEN];
|
|
|
|
extern char boardfilename[BMAX_PATH], currentboardfilename[BMAX_PATH];
|
|
|
|
extern char boardfilename[BMAX_PATH];
|
2012-06-03 16:09:33 +00:00
|
|
|
|
|
|
|
extern const char *defaultrtsfilename[GAMECOUNT];
|
|
|
|
extern const char *G_DefaultRtsFile(void);
|
|
|
|
|
2013-12-28 17:04:34 +00:00
|
|
|
#ifdef LEGACY_ROR
|
2010-08-02 08:13:51 +00:00
|
|
|
extern char ror_protectedsectors[MAXSECTORS];
|
2013-12-28 17:04:34 +00:00
|
|
|
#endif
|
2010-08-02 08:13:51 +00:00
|
|
|
|
|
|
|
extern float r_ambientlight;
|
|
|
|
|
|
|
|
extern int32_t althud_flashing;
|
|
|
|
extern int32_t althud_numberpal;
|
|
|
|
extern int32_t althud_numbertile;
|
|
|
|
extern int32_t althud_shadows;
|
|
|
|
extern int32_t cacnum;
|
2013-12-28 17:04:34 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
extern int32_t g_Shareware;
|
2013-01-19 18:28:32 +00:00
|
|
|
#if !defined LUNATIC
|
2010-08-02 08:13:51 +00:00
|
|
|
extern int32_t g_cameraClock;
|
|
|
|
extern int32_t g_cameraDistance;
|
2013-01-19 18:28:32 +00:00
|
|
|
#endif
|
2010-08-02 08:13:51 +00:00
|
|
|
extern int32_t g_crosshairSum;
|
|
|
|
extern int32_t g_doQuickSave;
|
|
|
|
extern int32_t g_forceWeaponChoice;
|
2012-08-13 18:25:32 +00:00
|
|
|
extern int32_t g_fakeMultiMode;
|
2010-08-02 08:13:51 +00:00
|
|
|
extern int32_t g_levelTextTime;
|
|
|
|
extern int32_t g_noSetup;
|
|
|
|
extern int32_t g_quitDeadline;
|
|
|
|
extern int32_t g_restorePalette;
|
|
|
|
extern int32_t hud_glowingquotes;
|
|
|
|
extern int32_t hud_showmapname;
|
|
|
|
extern int32_t quotebot;
|
|
|
|
extern int32_t quotebotgoal;
|
|
|
|
extern int32_t r_maxfps;
|
|
|
|
extern int32_t tempwallptr;
|
|
|
|
extern int32_t ticrandomseed;
|
|
|
|
extern int32_t vote_map;
|
|
|
|
extern int32_t voting;
|
|
|
|
|
2012-01-19 21:57:22 +00:00
|
|
|
//extern int8_t cheatbuf[MAXCHEATLEN],cheatbuflen;
|
2010-08-02 08:13:51 +00:00
|
|
|
|
|
|
|
extern palette_t CrosshairColors;
|
|
|
|
extern palette_t DefaultCrosshairColors;
|
|
|
|
|
|
|
|
extern uint32_t g_frameDelay;
|
|
|
|
|
2012-03-22 22:47:47 +00:00
|
|
|
extern int8_t g_noFloorPal[MAXPALOOKUPS];
|
2011-01-17 03:49:34 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
extern user_defs ud;
|
|
|
|
|
|
|
|
int32_t A_CheckInventorySprite(spritetype *s);
|
|
|
|
int32_t A_InsertSprite(int32_t whatsect,int32_t s_x,int32_t s_y,int32_t s_z,int32_t s_pn,int32_t s_s,int32_t s_xr,int32_t s_yr,int32_t s_a,int32_t s_ve,int32_t s_zv,int32_t s_ow,int32_t s_ss);
|
|
|
|
int32_t A_Spawn(int32_t j,int32_t pn);
|
|
|
|
int32_t G_DoMoveThings(void);
|
2012-01-19 21:57:22 +00:00
|
|
|
//int32_t G_EndOfLevel(void);
|
2010-08-02 08:13:51 +00:00
|
|
|
int32_t G_GameTextLen(int32_t x,const char *t);
|
2013-06-01 06:56:00 +00:00
|
|
|
int32_t G_PrintGameText(int32_t hack,int32_t tile,int32_t x,int32_t y,const char *t,int32_t s,int32_t p,int32_t o,int32_t x1,int32_t y1,int32_t x2,int32_t y2,int32_t z);
|
2010-10-17 14:49:39 +00:00
|
|
|
int32_t kopen4loadfrommod(const char *filename,char searchfirst);
|
2014-05-31 12:26:41 +00:00
|
|
|
extern int32_t minitext_lowercase;
|
2010-08-02 08:13:51 +00:00
|
|
|
int32_t minitext_(int32_t x,int32_t y,const char *t,int32_t s,int32_t p,int32_t sb);
|
2014-05-31 12:26:41 +00:00
|
|
|
void shadowminitext(int32_t x,int32_t y,const char *t,int32_t p,int32_t sb);
|
2013-06-01 06:56:28 +00:00
|
|
|
void creditsminitext(int32_t x,int32_t y,const char *t,int32_t p,int32_t sb);
|
2012-05-05 22:24:02 +00:00
|
|
|
int32_t mpgametext(int32_t y,const char *t,int32_t s,int32_t dabits);
|
2014-05-31 12:26:41 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
int32_t startwin_run(void);
|
|
|
|
|
2011-06-29 19:57:05 +00:00
|
|
|
#ifdef YAX_ENABLE
|
|
|
|
void Yax_SetBunchZs(int32_t sectnum, int32_t cf, int32_t daz);
|
|
|
|
#else
|
|
|
|
#define Yax_SetBunchZs(sectnum, cf, daz)
|
|
|
|
#endif
|
|
|
|
|
2013-05-19 19:29:13 +00:00
|
|
|
#ifdef LUNATIC
|
|
|
|
void El_CreateGameState(void);
|
|
|
|
#endif
|
2013-05-20 19:31:37 +00:00
|
|
|
void G_PostCreateGameState(void);
|
2013-05-19 19:29:13 +00:00
|
|
|
|
2010-08-02 08:13:51 +00:00
|
|
|
void A_SpawnCeilingGlass(int32_t i,int32_t sectnum,int32_t n);
|
|
|
|
void A_SpawnGlass(int32_t i,int32_t n);
|
|
|
|
void A_SpawnRandomGlass(int32_t i,int32_t wallnum,int32_t n);
|
|
|
|
void A_SpawnWallGlass(int32_t i,int32_t wallnum,int32_t n);
|
|
|
|
void G_AddUserQuote(const char *daquote);
|
|
|
|
void G_BackToMenu(void);
|
|
|
|
void G_BonusScreen(int32_t bonusonly);
|
2012-01-19 21:57:22 +00:00
|
|
|
//void G_CheatGetInv(void);
|
2010-08-02 08:13:51 +00:00
|
|
|
void G_DisplayRest(int32_t smoothratio);
|
2012-08-13 18:25:40 +00:00
|
|
|
void G_DoSpriteAnimations(int32_t ourx, int32_t oury, int32_t oura, int32_t smoothratio);
|
2010-08-02 08:13:51 +00:00
|
|
|
void G_DrawBackground(void);
|
|
|
|
void G_DrawFrags(void);
|
2011-12-28 20:33:40 +00:00
|
|
|
void G_HandleMirror(int32_t x, int32_t y, int32_t z, int32_t a, int32_t horiz, int32_t smoothratio);
|
2010-08-02 08:13:51 +00:00
|
|
|
void G_DrawRooms(int32_t snum,int32_t smoothratio);
|
|
|
|
void G_DrawTXDigiNumZ(int32_t starttile,int32_t x,int32_t y,int32_t n,int32_t s,int32_t pal,int32_t cs,int32_t x1,int32_t y1,int32_t x2,int32_t y2,int32_t z);
|
2013-02-11 17:16:54 +00:00
|
|
|
#if !defined LUNATIC
|
2010-08-02 08:13:51 +00:00
|
|
|
void G_DrawTile(int32_t x,int32_t y,int32_t tilenum,int32_t shade,int32_t orientation);
|
|
|
|
void G_DrawTilePal(int32_t x,int32_t y,int32_t tilenum,int32_t shade,int32_t orientation,int32_t p);
|
|
|
|
void G_DrawTilePalSmall(int32_t x,int32_t y,int32_t tilenum,int32_t shade,int32_t orientation,int32_t p);
|
|
|
|
void G_DrawTileSmall(int32_t x,int32_t y,int32_t tilenum,int32_t shade,int32_t orientation);
|
2013-02-11 17:16:54 +00:00
|
|
|
#endif
|
2010-08-02 08:13:51 +00:00
|
|
|
void G_FadePalette(int32_t r,int32_t g,int32_t b,int32_t e);
|
2010-12-19 22:47:10 +00:00
|
|
|
void G_GameExit(const char *t) ATTRIBUTE((noreturn));
|
2010-08-02 08:13:51 +00:00
|
|
|
void G_GameQuit(void);
|
|
|
|
void G_GetCrosshairColor(void);
|
|
|
|
void G_HandleLocalKeys(void);
|
|
|
|
void G_HandleSpecialKeys(void);
|
2014-06-16 23:17:11 +00:00
|
|
|
void G_UpdateAppTitle(void);
|
2012-08-20 21:32:11 +00:00
|
|
|
void G_PrintGameQuotes(int32_t snum);
|
2012-01-19 21:57:22 +00:00
|
|
|
//void G_SE40(int32_t smoothratio);
|
2010-08-02 08:13:51 +00:00
|
|
|
void G_SetCrosshairColor(int32_t r,int32_t g,int32_t b);
|
|
|
|
void G_Shutdown(void);
|
|
|
|
void G_UpdatePlayerFromMenu(void);
|
|
|
|
void M32RunScript(const char *s);
|
|
|
|
void P_DoQuote(int32_t q,DukePlayer_t *p);
|
2012-06-03 16:11:22 +00:00
|
|
|
extern int32_t textsc(int32_t sc);
|
2011-01-17 03:49:34 +00:00
|
|
|
void P_SetGamePalette(DukePlayer_t *player,uint8_t palid,int32_t set);
|
2013-06-01 06:55:00 +00:00
|
|
|
|
|
|
|
extern int32_t G_GetStringLineLength(const char *text, const char *end, const int32_t iter);
|
|
|
|
extern int32_t G_GetStringNumLines(const char *text, const char *end, const int32_t iter);
|
|
|
|
extern char* G_GetSubString(const char *text, const char *end, const int32_t iter, const int32_t length);
|
|
|
|
extern int32_t G_GetStringTile(int32_t font, char *t, int32_t f);
|
|
|
|
extern vec2_t G_ScreenTextSize(const int32_t font, int32_t x, int32_t y, const int32_t z, const int32_t blockangle, const char *str, const int32_t o, int32_t xspace, int32_t yline, int32_t xbetween, int32_t ybetween, const int32_t f, const int32_t x1, const int32_t y1, const int32_t x2, const int32_t y2);
|
|
|
|
extern void G_AddCoordsFromRotation(vec2_t *coords, const vec2_t *unitDirection, const int32_t magnitude);
|
2014-04-09 18:51:35 +00:00
|
|
|
extern vec2_t G_ScreenText(const int32_t font, int32_t x, int32_t y, const int32_t z, const int32_t blockangle, const int32_t charangle, const char *str, const int32_t shade, int32_t pal, int32_t o, int32_t alpha, int32_t xspace, int32_t yline, int32_t xbetween, int32_t ybetween, const int32_t f, int32_t x1, int32_t y1, int32_t x2, int32_t y2);
|
2013-06-01 06:56:28 +00:00
|
|
|
extern vec2_t G_ScreenTextShadow(int32_t sx, int32_t sy, const int32_t font, int32_t x, int32_t y, const int32_t z, const int32_t blockangle, const int32_t charangle, const char *str, const int32_t shade, int32_t pal, int32_t o, const int32_t alpha, int32_t xspace, int32_t yline, int32_t xbetween, int32_t ybetween, const int32_t f, int32_t x1, int32_t y1, int32_t x2, int32_t y2);
|
2013-06-01 06:55:00 +00:00
|
|
|
|
2014-04-09 18:51:35 +00:00
|
|
|
#define NEG_ALPHA_TO_BLEND(alpha, blend, orientation) do { \
|
|
|
|
if (alpha < 0) { blend = -alpha; alpha = 0; orientation |= RS_TRANS1; } \
|
|
|
|
} while (0)
|
|
|
|
|
2014-05-22 11:17:50 +00:00
|
|
|
// Cstat protection mask for (currently) spawned MASKWALL* sprites.
|
|
|
|
// TODO: look at more cases of cstat=(cstat&PROTECTED)|ADDED in A_Spawn()?
|
|
|
|
// 2048+(32+16)+8+4
|
|
|
|
#define SPAWN_PROTECT_CSTAT_MASK (CSTAT_SPRITE_NOSHADE|CSTAT_SPRITE_SLAB|CSTAT_SPRITE_XFLIP|CSTAT_SPRITE_YFLIP);
|
|
|
|
|
2010-10-17 14:49:39 +00:00
|
|
|
int32_t app_main(int32_t argc,const char **argv);
|
2010-08-02 08:13:51 +00:00
|
|
|
void fadepal(int32_t r,int32_t g,int32_t b,int32_t start,int32_t end,int32_t step);
|
2012-01-19 21:57:22 +00:00
|
|
|
//void fadepaltile(int32_t r,int32_t g,int32_t b,int32_t start,int32_t end,int32_t step,int32_t tile);
|
2013-02-16 18:52:56 +00:00
|
|
|
void G_InitTimer(int32_t ticpersec);
|
2010-08-02 08:13:51 +00:00
|
|
|
|
|
|
|
static inline int32_t G_GetTeamPalette(int32_t team)
|
|
|
|
{
|
|
|
|
int8_t pal[] = { 3, 10, 11, 12 };
|
|
|
|
|
2014-03-22 09:25:15 +00:00
|
|
|
if ((unsigned)team >= ARRAY_SIZE(pal))
|
2010-08-02 08:13:51 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return pal[team];
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
int32_t G_GetVersionFromWebsite(char *buffer);
|
|
|
|
#endif
|
|
|
|
|
2011-02-25 21:50:19 +00:00
|
|
|
#ifdef USE_OPENGL
|
2010-08-02 08:13:51 +00:00
|
|
|
extern char forcegl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define minitextshade(x, y, t, s, p, sb) minitext_(x,y,t,s,p,sb)
|
|
|
|
#define minitext(x, y, t, p, sb) minitext_(x,y,t,0,p,sb)
|
|
|
|
#define menutext(x,y,s,p,t) menutext_(x,y,s,p,(char *)OSD_StripColors(menutextbuf,t),10+16)
|
|
|
|
#define gametext(x,y,t,s,dabits) G_PrintGameText(0,STARTALPHANUM, x,y,t,s,0,dabits,0, 0, xdim-1, ydim-1, 65536)
|
|
|
|
#define gametextscaled(x,y,t,s,dabits) G_PrintGameText(1,STARTALPHANUM, x,y,t,s,0,dabits,0, 0, xdim-1, ydim-1, 65536)
|
|
|
|
#define gametextpal(x,y,t,s,p) G_PrintGameText(0,STARTALPHANUM, x,y,t,s,p,26,0, 0, xdim-1, ydim-1, 65536)
|
|
|
|
#define gametextpalbits(x,y,t,s,p,dabits) G_PrintGameText(0,STARTALPHANUM, x,y,t,s,p,dabits,0, 0, xdim-1, ydim-1, 65536)
|
2014-05-31 12:26:41 +00:00
|
|
|
#define mpgametext(y, t, s, dabits) G_PrintGameText(4,STARTALPHANUM, 5,y,t,s,0,dabits,0, 0, xdim-1, ydim-1, 65536);
|
|
|
|
|
2012-10-30 15:54:35 +00:00
|
|
|
#define A_CheckSpriteFlags(iActor, iType) (((g_tile[sprite[iActor].picnum].flags^actor[iActor].flags) & iType) != 0)
|
2012-01-19 21:58:23 +00:00
|
|
|
// (unsigned)iPicnum check: AMC TC Rusty Nails, bayonet MG alt. fire, iPicnum == -1 (via aplWeaponShoots)
|
2012-10-30 15:54:35 +00:00
|
|
|
#define A_CheckSpriteTileFlags(iPicnum, iType) (((unsigned)iPicnum < MAXTILES) && (g_tile[iPicnum].flags & iType) != 0)
|
2010-08-02 08:13:51 +00:00
|
|
|
#define S_StopSound(num) S_StopEnvSound(num, -1)
|
|
|
|
|
2014-01-30 19:12:10 +00:00
|
|
|
extern int32_t G_StartRTS(int32_t i, int localp);
|
|
|
|
|
2013-02-10 16:24:38 +00:00
|
|
|
extern void G_MaybeAllocPlayer(int32_t pnum);
|
|
|
|
|
2012-09-05 17:25:34 +00:00
|
|
|
static inline void G_HandleAsync(void)
|
|
|
|
{
|
|
|
|
handleevents();
|
|
|
|
Net_GetPackets();
|
|
|
|
}
|
|
|
|
|
2012-09-08 22:18:40 +00:00
|
|
|
static inline int32_t calc_smoothratio(int32_t totalclk, int32_t ototalclk)
|
|
|
|
{
|
|
|
|
return clamp((totalclk-ototalclk)*(65536/TICSPERFRAME), 0, 65536);
|
|
|
|
}
|
|
|
|
|
2012-08-26 22:16:08 +00:00
|
|
|
// sector effector lotags
|
|
|
|
enum {
|
2012-09-08 22:18:44 +00:00
|
|
|
SE_0_ROTATING_SECTOR = 0,
|
|
|
|
SE_1_PIVOT = 1,
|
|
|
|
SE_2_EARTHQUAKE = 2,
|
|
|
|
SE_3_RANDOM_LIGHTS_AFTER_SHOT_OUT = 3,
|
|
|
|
SE_4_RANDOM_LIGHTS = 4,
|
|
|
|
SE_5 = 5,
|
|
|
|
SE_6_SUBWAY = 6,
|
|
|
|
// ^^ potentially incomplete substitution in code
|
|
|
|
// vv almost surely complete substitution
|
|
|
|
SE_7_TELEPORT = 7,
|
|
|
|
SE_8_UP_OPEN_DOOR_LIGHTS = 8,
|
|
|
|
SE_9_DOWN_OPEN_DOOR_LIGHTS = 9,
|
|
|
|
SE_10_DOOR_AUTO_CLOSE = 10,
|
|
|
|
SE_11_SWINGING_DOOR = 11,
|
|
|
|
SE_12_LIGHT_SWITCH = 12,
|
|
|
|
SE_13_EXPLOSIVE = 13,
|
|
|
|
SE_14_SUBWAY_CAR = 14,
|
|
|
|
SE_15_SLIDING_DOOR = 15,
|
2012-08-26 22:16:08 +00:00
|
|
|
SE_16_REACTOR = 16,
|
|
|
|
SE_17_WARP_ELEVATOR = 17,
|
2012-09-08 22:18:44 +00:00
|
|
|
SE_18_INCREMENTAL_SECTOR_RISE_FALL = 18,
|
|
|
|
SE_19_EXPLOSION_LOWERS_CEILING = 19,
|
|
|
|
SE_20_STRETCH_BRIDGE = 20,
|
2012-08-26 22:16:08 +00:00
|
|
|
SE_21_DROP_FLOOR = 21,
|
2012-09-08 22:18:44 +00:00
|
|
|
SE_22_TEETH_DOOR = 22,
|
|
|
|
SE_23_ONE_WAY_TELEPORT = 23,
|
2012-08-26 22:16:08 +00:00
|
|
|
SE_24_CONVEYOR = 24,
|
|
|
|
SE_25_PISTON = 25,
|
|
|
|
SE_26 = 26,
|
|
|
|
SE_27_DEMO_CAM = 27,
|
|
|
|
SE_28_LIGHTNING = 28,
|
|
|
|
SE_29_WAVES = 29,
|
|
|
|
SE_30_TWO_WAY_TRAIN = 30,
|
|
|
|
SE_31_FLOOR_RISE_FALL = 31,
|
|
|
|
SE_32_CEILING_RISE_FALL = 32,
|
|
|
|
SE_33_QUAKE_DEBRIS = 33,
|
2012-09-08 22:18:44 +00:00
|
|
|
SE_34 = 34, // XXX
|
|
|
|
SE_35 = 35, // XXX
|
2012-08-26 22:16:08 +00:00
|
|
|
SE_36_PROJ_SHOOTER = 36,
|
2012-10-05 20:48:10 +00:00
|
|
|
SE_49_POINT_LIGHT = 49,
|
|
|
|
SE_50_SPOT_LIGHT = 50,
|
2013-06-22 11:31:13 +00:00
|
|
|
SE_130 = 130,
|
|
|
|
SE_131 = 131,
|
2012-08-26 22:16:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// sector lotags
|
|
|
|
enum {
|
2012-10-14 20:41:17 +00:00
|
|
|
ST_1_ABOVE_WATER = 1,
|
|
|
|
ST_2_UNDERWATER = 2,
|
|
|
|
ST_3 = 3,
|
|
|
|
// ^^^ maybe not complete substitution in code
|
2012-09-08 22:18:44 +00:00
|
|
|
ST_9_SLIDING_ST_DOOR = 9,
|
2012-08-26 22:16:08 +00:00
|
|
|
ST_15_WARP_ELEVATOR = 15,
|
2012-09-08 22:18:44 +00:00
|
|
|
ST_16_PLATFORM_DOWN = 16,
|
|
|
|
ST_17_PLATFORM_UP = 17,
|
|
|
|
ST_18_ELEVATOR_DOWN = 18,
|
|
|
|
ST_19_ELEVATOR_UP = 19,
|
2012-08-26 22:16:08 +00:00
|
|
|
ST_20_CEILING_DOOR = 20,
|
|
|
|
ST_21_FLOOR_DOOR = 21,
|
|
|
|
ST_22_SPLITTING_DOOR = 22,
|
2012-09-08 22:18:44 +00:00
|
|
|
ST_23_SWINGING_DOOR = 23,
|
|
|
|
ST_25_SLIDING_DOOR = 25,
|
2012-08-26 22:16:08 +00:00
|
|
|
ST_26_SPLITTING_ST_DOOR = 26,
|
2012-09-08 22:18:44 +00:00
|
|
|
ST_27_STRETCH_BRIDGE = 27,
|
2012-08-26 22:16:08 +00:00
|
|
|
ST_28_DROP_FLOOR = 28,
|
|
|
|
ST_29_TEETH_DOOR = 29,
|
|
|
|
ST_30_ROTATE_RISE_BRIDGE = 30,
|
|
|
|
ST_31_TWO_WAY_TRAIN = 31,
|
2012-09-08 22:18:44 +00:00
|
|
|
// left: ST 32767, 65534, 65535
|
2012-08-26 22:16:08 +00:00
|
|
|
};
|
|
|
|
|
2012-09-08 22:18:34 +00:00
|
|
|
// Cheats
|
|
|
|
// KEEPINSYNC game.c: char CheatStrings[][]
|
|
|
|
enum cheatindex_t
|
|
|
|
{
|
|
|
|
CHEAT_CORNHOLIO, // 0
|
|
|
|
CHEAT_STUFF,
|
|
|
|
CHEAT_SCOTTY,
|
|
|
|
CHEAT_COORDS,
|
|
|
|
CHEAT_VIEW,
|
|
|
|
CHEAT_TIME, // 5
|
|
|
|
CHEAT_UNLOCK,
|
|
|
|
CHEAT_CASHMAN,
|
|
|
|
CHEAT_ITEMS,
|
|
|
|
CHEAT_RATE,
|
|
|
|
CHEAT_SKILL, // 10
|
|
|
|
CHEAT_BETA,
|
|
|
|
CHEAT_HYPER,
|
|
|
|
CHEAT_MONSTERS,
|
|
|
|
CHEAT_RESERVED,
|
|
|
|
CHEAT_RESERVED2, // 15
|
|
|
|
CHEAT_TODD,
|
|
|
|
CHEAT_SHOWMAP,
|
|
|
|
CHEAT_KROZ,
|
|
|
|
CHEAT_ALLEN,
|
|
|
|
CHEAT_CLIP, // 20
|
|
|
|
CHEAT_WEAPONS,
|
|
|
|
CHEAT_INVENTORY,
|
|
|
|
CHEAT_KEYS,
|
|
|
|
CHEAT_DEBUG,
|
|
|
|
CHEAT_RESERVED3, // 25
|
|
|
|
CHEAT_COMEGETSOME,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-09-05 17:25:37 +00:00
|
|
|
# define G_ModDirSnprintf(buf, size, basename, ...) \
|
|
|
|
( \
|
|
|
|
( \
|
|
|
|
(g_modDir[0] != '/') ? \
|
|
|
|
Bsnprintf(buf, size, "%s/" basename, g_modDir, ## __VA_ARGS__) : \
|
|
|
|
Bsnprintf(buf, size, basename, ## __VA_ARGS__) \
|
|
|
|
) >= ((int32_t)size)-1 \
|
|
|
|
)
|
|
|
|
|
2012-11-05 02:49:08 +00:00
|
|
|
#include "game_inline.h"
|
|
|
|
|
2013-07-13 21:04:52 +00:00
|
|
|
static inline void G_NewGame_EnterLevel(void)
|
|
|
|
{
|
|
|
|
G_NewGame(ud.m_volume_number, ud.m_level_number, ud.m_player_skill);
|
|
|
|
|
|
|
|
if (G_EnterLevel(MODE_GAME))
|
|
|
|
G_BackToMenu();
|
|
|
|
}
|
|
|
|
|
2010-08-12 21:06:51 +00:00
|
|
|
#endif
|