diff --git a/source/games/duke/src/constants.h b/source/games/duke/src/constants.h index 9dd3f7e1f..a7e6e7c77 100644 --- a/source/games/duke/src/constants.h +++ b/source/games/duke/src/constants.h @@ -448,3 +448,51 @@ enum sflags_t SFLAG_KILLCOUNT = 0x10000000, SFLAG_NOCANSEECHECK = 0x20000000, }; + +enum +{ + EVENT_INIT = 0, + EVENT_ENTERLEVEL, + EVENT_RESETWEAPONS, // for each player + EVENT_RESETINVENTORY, // for each player + EVENT_HOLSTER, // for each player + EVENT_LOOKLEFT, // for each player + EVENT_LOOKRIGHT, // for each player + EVENT_SOARUP, // for each player + EVENT_SOARDOWN, // for each player + EVENT_CROUCH, // for each player + EVENT_JUMP, // for each player + EVENT_RETURNTOCENTER, // for each player + EVENT_LOOKUP, // for each player + EVENT_LOOKDOWN, // for each player + EVENT_AIMUP, // for each player + EVENT_AIMDOWN, // for each player + EVENT_FIRE, // for each player + EVENT_CHANGEWEAPON, // for each player + EVENT_GETSHOTRANGE, // for each player + EVENT_GETAUTOAIMANGLE, // for each player + EVENT_GETLOADTILE, + + EVENT_CHEATGETSTEROIDS, + EVENT_CHEATGETHEAT, + EVENT_CHEATGETBOOT, + EVENT_CHEATGETSHIELD, + EVENT_CHEATGETSCUBA, + EVENT_CHEATGETHOLODUKE, + EVENT_CHEATGETJETPACK, + EVENT_CHEATGETFIRSTAID, + EVENT_QUICKKICK, + EVENT_INVENTORY, + EVENT_USENIGHTVISION, + EVENT_USESTEROIDS, + EVENT_INVENTORYLEFT, + EVENT_INVENTORYRIGHT, + EVENT_HOLODUKEON, + EVENT_HOLODUKEOFF, + EVENT_USEMEDKIT, + EVENT_USEJETPACK, + EVENT_TURNAROUND, + + EVENT_NUMEVENTS, + EVENT_MAXEVENT = EVENT_NUMEVENTS - 1 +}; diff --git a/source/games/duke/src/duke3d.h b/source/games/duke/src/duke3d.h index 5dab29be3..838ccf4ec 100644 --- a/source/games/duke/src/duke3d.h +++ b/source/games/duke/src/duke3d.h @@ -16,7 +16,6 @@ #include "gamecontrol.h" #include "game.h" #include "gamedef.h" -#include "gameexec.h" #include "gamevar.h" #include "global.h" #include "macros.h" diff --git a/source/games/duke/src/funct.h b/source/games/duke/src/funct.h index f69b6d97b..e81468c51 100644 --- a/source/games/duke/src/funct.h +++ b/source/games/duke/src/funct.h @@ -146,4 +146,11 @@ void clearcamera(player_struct* ps); void showtwoscreens(CompletionFunc func); void doorders(CompletionFunc func); +void execute(int s, int p, int d); +void makeitfall(int s); +int furthestangle(int spriteNum, int angDiv); +void getglobalz(int s); +int getincangle(int c, int n); +void OnEvent(int id, int pnum = -1, int snum = -1, int dist = -1); + END_DUKE_NS diff --git a/source/games/duke/src/gamedef.h b/source/games/duke/src/gamedef.h index 7f84c84d9..80733b27b 100644 --- a/source/games/duke/src/gamedef.h +++ b/source/games/duke/src/gamedef.h @@ -74,6 +74,8 @@ typedef struct { extern char const * VM_GetKeywordForID(int32_t id); +extern TArray ScriptCode; + #include "concmd.h" diff --git a/source/games/duke/src/gameexec.cpp b/source/games/duke/src/gameexec.cpp index a62fd8906..6e31a6251 100644 --- a/source/games/duke/src/gameexec.cpp +++ b/source/games/duke/src/gameexec.cpp @@ -36,7 +36,6 @@ source as it is released. #include "duke3d.h" #include "gamedef.h" #include "gamevar.h" -#include "gameexec.h" BEGIN_DUKE_NS diff --git a/source/games/duke/src/gameexec.h b/source/games/duke/src/gameexec.h deleted file mode 100644 index 12cc8ef3c..000000000 --- a/source/games/duke/src/gameexec.h +++ /dev/null @@ -1,122 +0,0 @@ -//------------------------------------------------------------------------- -/* -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 -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ -//------------------------------------------------------------------------- - -#ifndef gameexec_h_ -#define gameexec_h_ - -#include "build.h" -#include "global.h" -#include "gamedef.h" // vmstate_t - -BEGIN_DUKE_NS - -enum -{ - EVENT_INIT = 0, - EVENT_ENTERLEVEL, - EVENT_RESETWEAPONS, // for each player - EVENT_RESETINVENTORY, // for each player - EVENT_HOLSTER, // for each player - EVENT_LOOKLEFT, // for each player - EVENT_LOOKRIGHT, // for each player - EVENT_SOARUP, // for each player - EVENT_SOARDOWN, // for each player - EVENT_CROUCH, // for each player - EVENT_JUMP, // for each player - EVENT_RETURNTOCENTER, // for each player - EVENT_LOOKUP, // for each player - EVENT_LOOKDOWN, // for each player - EVENT_AIMUP, // for each player - EVENT_AIMDOWN, // for each player - EVENT_FIRE, // for each player - EVENT_CHANGEWEAPON, // for each player - EVENT_GETSHOTRANGE, // for each player - EVENT_GETAUTOAIMANGLE, // for each player - EVENT_GETLOADTILE, - - EVENT_CHEATGETSTEROIDS, - EVENT_CHEATGETHEAT, - EVENT_CHEATGETBOOT, - EVENT_CHEATGETSHIELD, - EVENT_CHEATGETSCUBA, - EVENT_CHEATGETHOLODUKE, - EVENT_CHEATGETJETPACK, - EVENT_CHEATGETFIRSTAID, - EVENT_QUICKKICK, - EVENT_INVENTORY, - EVENT_USENIGHTVISION, - EVENT_USESTEROIDS, - EVENT_INVENTORYLEFT, - EVENT_INVENTORYRIGHT, - EVENT_HOLODUKEON, - EVENT_HOLODUKEOFF, - EVENT_USEMEDKIT, - EVENT_USEJETPACK, - EVENT_TURNAROUND, - - EVENT_NUMEVENTS, - EVENT_MAXEVENT = EVENT_NUMEVENTS - 1 -}; - -extern TArray ScriptCode; - - -void OnEvent(int id, int pnum = -1, int snum = -1, int dist = -1); - -static FORCE_INLINE int32_t VM_OnEvent(int nEventID, int spriteNum=-1, int playerNum=-1, int nDist=-1, int32_t nReturn=0) -{ - // set return - if (IsGameEvent(nEventID)) - { - SetGameVarID(g_iReturnVarID, nReturn, spriteNum, playerNum); - OnEvent(nEventID, spriteNum, playerNum, -1); - return GetGameVarID(g_iReturnVarID, spriteNum, playerNum); - } - return nReturn; -} - -static FORCE_INLINE int32_t VM_OnEventWithReturn(int nEventID, int spriteNum, int playerNum, int32_t nReturn) -{ - // set return - if (IsGameEvent(nEventID)) - { - SetGameVarID(g_iReturnVarID, nReturn, spriteNum, playerNum); - OnEvent(nEventID, spriteNum, playerNum, -1); - return GetGameVarID(g_iReturnVarID, spriteNum, playerNum); - } - return nReturn; -} - - -void execute(int s, int p, int d); - -void makeitfall(int s); -int furthestangle(int spriteNum, int angDiv); -void getglobalz(int s); -int getincangle(int c, int n); - -void G_GetTimeDate(int32_t * pValues); -int G_StartTrack(int levelNum); - -END_DUKE_NS - -#endif diff --git a/source/games/duke/src/global.h b/source/games/duke/src/global.h index 9f95e5fe5..cc965f3d3 100644 --- a/source/games/duke/src/global.h +++ b/source/games/duke/src/global.h @@ -30,7 +30,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "quotemgr.h" #include "sounds.h" #include "constants.h" -#include "gameexec.h" BEGIN_DUKE_NS diff --git a/source/games/duke/src/zz_game.cpp b/source/games/duke/src/zz_game.cpp index bb26a830e..130ac5934 100644 --- a/source/games/duke/src/zz_game.cpp +++ b/source/games/duke/src/zz_game.cpp @@ -334,7 +334,11 @@ static void G_CompileScripts(void) Bmemset(sector, 0, MAXSECTORS*sizeof(sectortype)); Bmemset(wall, 0, MAXWALLS*sizeof(walltype)); - VM_OnEvent(EVENT_INIT); + if (IsGameEvent(EVENT_INIT)) + { + SetGameVarID(g_iReturnVarID, -1, -1, -1); + OnEvent(EVENT_INIT); + } } inline int G_CheckPlayerColor(int color) diff --git a/source/games/duke/src/zz_premap.cpp b/source/games/duke/src/zz_premap.cpp index cc38f698c..6b8283780 100644 --- a/source/games/duke/src/zz_premap.cpp +++ b/source/games/duke/src/zz_premap.cpp @@ -319,7 +319,11 @@ int G_EnterLevel(int gameMode) if ((gameMode & MODE_DEMO) == 0 && ud.recstat == 2) ud.recstat = 0; - VM_OnEvent(EVENT_ENTERLEVEL); + if (IsGameEvent(EVENT_ENTERLEVEL)) + { + SetGameVarID(g_iReturnVarID, -1, -1, -1); + OnEvent(EVENT_ENTERLEVEL); + } //if (g_networkMode != NET_DEDICATED_SERVER) {