From 3c7151810fbd699168978800cda4c81a21f5e769 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 3 Nov 2019 12:32:58 +0100 Subject: [PATCH] - made the game interfaces classes instead of function pointer lists because that is far better at error catching. - fixed: Blood's monster flag is a 'have_monsters', not 'nomonsters' flag. As a result none were spawned. --- source/blood/src/blood.cpp | 21 ++++++--------------- source/blood/src/blood.h | 9 +++++++++ source/blood/src/controls.cpp | 6 +++--- source/blood/src/network.cpp | 5 +++++ source/build/include/baselayer.h | 12 +++++++----- source/common/gamecontrol.cpp | 18 +++++++++--------- source/duke3d/src/duke3d.h | 9 +++++++++ source/duke3d/src/game.cpp | 21 ++++++++------------- source/rr/src/duke3d.h | 9 +++++++++ source/rr/src/game.cpp | 23 ++++++++--------------- source/sw/src/game.cpp | 21 +++++++++------------ source/sw/src/game.h | 9 +++++++++ 12 files changed, 91 insertions(+), 72 deletions(-) diff --git a/source/blood/src/blood.cpp b/source/blood/src/blood.cpp index 1e4a6c0b9..a28e7fb16 100644 --- a/source/blood/src/blood.cpp +++ b/source/blood/src/blood.cpp @@ -1229,10 +1229,10 @@ static int32_t check_filename_casing(void) } #endif -int app_main() +int GameInterface::app_main() { memcpy(&gGameOptions, &gSingleGameOptions, sizeof(GAMEOPTIONS)); - gGameOptions.nMonsterSettings = userConfig.nomonsters; + gGameOptions.nMonsterSettings = !userConfig.nomonsters; bQuickStart = userConfig.nologo; ParseOptions(); @@ -2139,19 +2139,10 @@ void sndPlaySpecialMusicOrNothing(int nMusic) } } -extern void faketimerhandler(); -extern int app_main(); -bool validate_hud(int layout); -void set_hud_layout(int layout); -void set_hud_scale(int scale); -int32_t GetTime(); -GameInterface Interface = { - faketimerhandler, - app_main, - validate_hud, - set_hud_layout, - set_hud_scale, -}; +::GameInterface* CreateInterface() +{ + return new GameInterface; +} END_BLD_NS diff --git a/source/blood/src/blood.h b/source/blood/src/blood.h index 846809ad9..9fe06ed31 100644 --- a/source/blood/src/blood.h +++ b/source/blood/src/blood.h @@ -83,4 +83,13 @@ bool fileExistsRFF(int id, const char* ext); int sndTryPlaySpecialMusic(int nMusic); void sndPlaySpecialMusicOrNothing(int nMusic); +struct GameInterface : ::GameInterface +{ + void faketimerhandler() override; + int app_main() override; + bool validate_hud(int) override; + void set_hud_layout(int size) override; + void set_hud_scale(int size) override; +}; + END_BLD_NS diff --git a/source/blood/src/controls.cpp b/source/blood/src/controls.cpp index 41e4a8bef..66f7a075e 100644 --- a/source/blood/src/controls.cpp +++ b/source/blood/src/controls.cpp @@ -84,12 +84,12 @@ int32_t mouseyaxismode = -1; // This is mainly here to account for the different implementation between Blood and the other games // and to allow unified handling and the same value range in the CVAR code. // Unlike EDuke's version, NBlood's was actually fine, it just had a too small value range to be chosen as the unified version. -bool validate_hud(int layout) +bool GameInterface::validate_hud(int layout) { return layout > 3 && layout != 8; // 8 is the status bar overlay which NBlood did not implement. } -void set_hud_layout(int layout) +void GameInterface::set_hud_layout(int layout) { static const uint8_t screen_size_vals[] = { 7, 7, 7, 7, 6, 5, 4, 3, 3, 2, 1, 0 }; @@ -99,7 +99,7 @@ void set_hud_layout(int layout) } } -void set_hud_scale(int scale) +void GameInterface::set_hud_scale(int scale) { // Not implemented, only needed as a placeholder. Maybe implement it after all? The hud is a bit large at its default size. } diff --git a/source/blood/src/network.cpp b/source/blood/src/network.cpp index 0cc79072b..697046cd0 100644 --- a/source/blood/src/network.cpp +++ b/source/blood/src/network.cpp @@ -1392,6 +1392,11 @@ void faketimerhandler(void) // enet_host_service(gNetMode == NETWORK_SERVER ? gNetENetServer : gNetENetClient, NULL, 0); } +void GameInterface::faketimerhandler() +{ + ::Blood::faketimerhandler(); +} + void netPlayerQuit(int nPlayer) { char buffer[128]; diff --git a/source/build/include/baselayer.h b/source/build/include/baselayer.h index ff52fb808..c722cc51a 100644 --- a/source/build/include/baselayer.h +++ b/source/build/include/baselayer.h @@ -228,13 +228,15 @@ int32_t baselayer_init(); struct GameInterface { - void (*faketimerhandler)(); - int (*app_main)(); - bool (*validate_hud)(int); - void (*set_hud_layout)(int size); - void (*set_hud_scale)(int size); + virtual ~GameInterface() {} + virtual void faketimerhandler() {} // This is a remnant of older versions, but Blood backend has not updated yet. + virtual int app_main() = 0; + virtual bool validate_hud(int) = 0; + virtual void set_hud_layout(int size) = 0; + virtual void set_hud_scale(int size) = 0; }; extern GameInterface* gi; + #endif // baselayer_h_ diff --git a/source/common/gamecontrol.cpp b/source/common/gamecontrol.cpp index 405f4a675..0a3d999c2 100644 --- a/source/common/gamecontrol.cpp +++ b/source/common/gamecontrol.cpp @@ -301,46 +301,46 @@ void UserConfig::ProcessOptions() namespace Duke { - extern GameInterface Interface; + ::GameInterface* CreateInterface(); } namespace Redneck { - extern GameInterface Interface; + ::GameInterface* CreateInterface(); } namespace Blood { - extern GameInterface Interface; + ::GameInterface* CreateInterface(); } namespace ShadowWarrior { - extern GameInterface Interface; + ::GameInterface* CreateInterface(); } void CheckFrontend(int flags) { if (flags & GAMEFLAG_BLOOD) { - gi = &Blood::Interface; + gi = Blood::CreateInterface(); globalShadeDiv = 62; } else if (flags & GAMEFLAG_RR) { - gi = &Redneck::Interface; + gi = Redneck::CreateInterface(); globalShadeDiv = 30; } else if (flags & GAMEFLAG_FURY) { - gi = &Duke::Interface; + gi = Duke::CreateInterface(); globalShadeDiv = 26; // This is different from all other games which need a value two less than the amount of shades. } else if (flags & GAMEFLAG_SW) { - gi = &ShadowWarrior::Interface; + gi = ShadowWarrior::CreateInterface(); globalShadeDiv = 30; } else { - gi = &Duke::Interface; + gi = Duke::CreateInterface(); globalShadeDiv = 30; } } diff --git a/source/duke3d/src/duke3d.h b/source/duke3d/src/duke3d.h index cacada738..8c1b3150f 100644 --- a/source/duke3d/src/duke3d.h +++ b/source/duke3d/src/duke3d.h @@ -144,6 +144,15 @@ static inline int32_t G_DefaultActorHealth(int spriteNum) return G_HaveActor(spriteNum) ? g_tile[spriteNum].execPtr[0] : 0; } + +struct GameInterface : ::GameInterface +{ + int app_main() override; + bool validate_hud(int) override; + void set_hud_layout(int size) override; + void set_hud_scale(int size) override; +}; + END_DUKE_NS #endif diff --git a/source/duke3d/src/game.cpp b/source/duke3d/src/game.cpp index 8651d4f3b..7a224ef0a 100644 --- a/source/duke3d/src/game.cpp +++ b/source/duke3d/src/game.cpp @@ -4454,7 +4454,7 @@ void G_PrintCurrentMusic(void) // Trying to sanitize the mess of options and the mess of variables the mess was stored in. (Did I say this was a total mess before...? >) ) // Hopefully this is more comprehensible, at least it neatly stores everything useful in a single linear value... -bool validate_hud(int layout) +bool GameInterface::validate_hud(int layout) { if (layout <= 6) // Status bar with border { @@ -4483,7 +4483,7 @@ bool validate_hud(int layout) return false; } -void set_hud_layout(int layout) +void GameInterface::set_hud_layout(int layout) { static const uint8_t screen_size_vals[] = { 60, 54, 48, 40, 32, 24, 16, 8, 8, 4, 4, 0 }; if (validate_hud(layout)) @@ -4495,7 +4495,7 @@ void set_hud_layout(int layout) } } -void set_hud_scale(int scale) +void GameInterface::set_hud_scale(int scale) { G_UpdateScreenArea(); } @@ -6125,7 +6125,7 @@ void G_MaybeAllocPlayer(int32_t pnum) EDUKE32_STATIC_ASSERT(sizeof(actor_t)%4 == 0); EDUKE32_STATIC_ASSERT(sizeof(DukePlayer_t)%4 == 0); -int app_main() +int GameInterface::app_main() { g_skillCnt = 4; ud.multimode = 1; @@ -6908,14 +6908,9 @@ void A_SpawnRandomGlass(int spriteNum, int wallNum, int glassCnt) } #endif -extern void faketimerhandler(); - -GameInterface Interface = { - faketimerhandler, - app_main, - validate_hud, - set_hud_layout, - set_hud_scale, -}; +::GameInterface* CreateInterface() +{ + return new GameInterface; +} END_DUKE_NS diff --git a/source/rr/src/duke3d.h b/source/rr/src/duke3d.h index 420fbf008..5d4405f7c 100644 --- a/source/rr/src/duke3d.h +++ b/source/rr/src/duke3d.h @@ -148,6 +148,15 @@ static inline int32_t G_DefaultActorHealth(int spriteNum) return G_HaveActor(spriteNum) ? g_tile[spriteNum].execPtr[0] : 0; } + +struct GameInterface : ::GameInterface +{ + int app_main() override; + bool validate_hud(int) override; + void set_hud_layout(int size) override; + void set_hud_scale(int size) override; +}; + END_RR_NS #endif diff --git a/source/rr/src/game.cpp b/source/rr/src/game.cpp index 38e36b291..e24a5a5c0 100644 --- a/source/rr/src/game.cpp +++ b/source/rr/src/game.cpp @@ -5975,7 +5975,7 @@ void G_PrintCurrentMusic(void) // Trying to sanitize the mess of options and the mess of variables the mess was stored in. (Did I say this was a total mess before...? >) ) // Hopefully this is more comprehensible, at least it neatly stores everything useful in a single linear value... -bool validate_hud(int layout) +bool GameInterface::validate_hud(int layout) { if (layout <= (RR? 5: 6)) // Status bar with border { @@ -6004,7 +6004,7 @@ bool validate_hud(int layout) return false; } -void set_hud_layout(int layout) +void GameInterface::set_hud_layout(int layout) { static const uint8_t screen_size_vals[] = { 60, 54, 48, 40, 32, 24, 16, 8, 8, 4, 4, 0 }; static const uint8_t screen_size_vals_rr[] = { 56, 48, 40, 32, 24, 16, 12, 8, 8, 4, 4, 0 }; @@ -6017,7 +6017,7 @@ void set_hud_layout(int layout) } } -void set_hud_scale(int scale) +void GameInterface::set_hud_scale(int scale) { G_UpdateScreenArea(); } @@ -7532,7 +7532,7 @@ void G_MaybeAllocPlayer(int32_t pnum) EDUKE32_STATIC_ASSERT(sizeof(actor_t)%4 == 0); EDUKE32_STATIC_ASSERT(sizeof(DukePlayer_t)%4 == 0); -int app_main() +int GameInterface::app_main() { playing_rr = 1; g_skillCnt = 4; @@ -8388,16 +8388,9 @@ void A_SpawnRandomGlass(int spriteNum, int wallNum, int glassCnt) } } +::GameInterface* CreateInterface() +{ + return new GameInterface; +} - -extern void faketimerhandler(); -extern int app_main(); - -GameInterface Interface = { - faketimerhandler, - app_main, - validate_hud, - set_hud_layout, - set_hud_scale, -}; END_RR_NS diff --git a/source/sw/src/game.cpp b/source/sw/src/game.cpp index be947262a..860db0f6d 100644 --- a/source/sw/src/game.cpp +++ b/source/sw/src/game.cpp @@ -3288,7 +3288,7 @@ void CommandLineHelp(char const * const * argv) #endif } -int32_t app_main() +int32_t GameInterface::app_main() { int i; int stat, nexti; @@ -5029,18 +5029,15 @@ saveable_module saveable_build = NUM_SAVEABLE_ITEMS(saveable_build_data) }; -extern void faketimerhandler(); -extern int app_main(); -/*extern*/ bool validate_hud(int requested_size) { return requested_size; } -/*extern*/ void set_hud(int requested_size) { /* the relevant setting is gs.BorderNum */} +/*extern*/ bool GameInterface::validate_hud(int requested_size) { return requested_size; } +/*extern*/ void GameInterface::set_hud_layout(int requested_size) { /* the relevant setting is gs.BorderNum */} +/*extern*/ void GameInterface::set_hud_scale(int requested_size) { /* the relevant setting is gs.BorderNum */ } + +::GameInterface* CreateInterface() +{ + return new GameInterface; +} -GameInterface Interface = { - faketimerhandler, - app_main, - validate_hud, - set_hud, - set_hud, -}; // vim:ts=4:sw=4:expandtab: END_SW_NS diff --git a/source/sw/src/game.h b/source/sw/src/game.h index ad7d0adc1..293277f5f 100644 --- a/source/sw/src/game.h +++ b/source/sw/src/game.h @@ -2374,6 +2374,15 @@ int COVERinsertsprite(short sectnum, short statnum); //returns (short)spritenu void AudioUpdate(void); // stupid +struct GameInterface : ::GameInterface +{ + int app_main() override; + bool validate_hud(int) override; + void set_hud_layout(int size) override; + void set_hud_scale(int size) override; +}; + + END_SW_NS #endif