From 1bdc0c466e3066a088e46e65e0c3e3b46392202d Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 18 Mar 2023 17:36:09 +0100 Subject: [PATCH] De-inline CHostState Force inlining this was a temporary solution in the past to overcome a crash caused by stack corruption. This problem seems to be solved, and thus its no longer necessary to force inline all methods. --- r5dev/engine/host_state.cpp | 22 +++++++++++----------- r5dev/engine/host_state.h | 21 ++++++++++----------- 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/r5dev/engine/host_state.cpp b/r5dev/engine/host_state.cpp index d22a1d54..c9b48eb4 100644 --- a/r5dev/engine/host_state.cpp +++ b/r5dev/engine/host_state.cpp @@ -3,7 +3,7 @@ // Purpose: Runs the state machine for the host & server. // //=============================================================================// -// host_state.cpp: methods are declared inline to prevent stack corruption. +// host_state.cpp:. // ///////////////////////////////////////////////////////////////////////////////// #include "core/stdafx.h" @@ -56,7 +56,7 @@ //----------------------------------------------------------------------------- // Purpose: state machine's main processing loop //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::FrameUpdate(CHostState* pHostState, double flCurrentTime, float flFrameTime) +void CHostState::FrameUpdate(CHostState* pHostState, double flCurrentTime, float flFrameTime) { static bool bInitialized = false; static bool bResetIdleName = false; @@ -178,7 +178,7 @@ FORCEINLINE void CHostState::FrameUpdate(CHostState* pHostState, double flCurren //----------------------------------------------------------------------------- // Purpose: state machine initialization //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::Init(void) +void CHostState::Init(void) { if (m_iNextState != HostStates_t::HS_SHUTDOWN) { @@ -211,7 +211,7 @@ FORCEINLINE void CHostState::Init(void) //----------------------------------------------------------------------------- // Purpose: state machine setup //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::Setup(void) +void CHostState::Setup(void) { g_pHostState->LoadConfig(); #ifndef CLIENT_DLL @@ -230,7 +230,7 @@ FORCEINLINE void CHostState::Setup(void) //----------------------------------------------------------------------------- // Purpose: think //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::Think(void) const +void CHostState::Think(void) const { static bool bInitialized = false; static CFastTimer banListTimer; @@ -304,7 +304,7 @@ FORCEINLINE void CHostState::Think(void) const //----------------------------------------------------------------------------- // Purpose: load and execute configuration files //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::LoadConfig(void) const +void CHostState::LoadConfig(void) const { if (CommandLine()->ParmValue("-launcher", 0) < 1) // Launcher level 1 indicates everything is handled from the commandline/launcher. { @@ -342,7 +342,7 @@ FORCEINLINE void CHostState::LoadConfig(void) const //----------------------------------------------------------------------------- // Purpose: shutdown active game //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::GameShutDown(void) +void CHostState::GameShutDown(void) { if (m_bActiveGame) { @@ -357,7 +357,7 @@ FORCEINLINE void CHostState::GameShutDown(void) //----------------------------------------------------------------------------- // Purpose: initialize new game //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::State_NewGame(void) +void CHostState::State_NewGame(void) { DevMsg(eDLL_T::ENGINE, "%s: Loading level: '%s'\n", __FUNCTION__, g_pHostState->m_levelName); @@ -395,7 +395,7 @@ FORCEINLINE void CHostState::State_NewGame(void) //----------------------------------------------------------------------------- // Purpose: change singleplayer level //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::State_ChangeLevelSP(void) +void CHostState::State_ChangeLevelSP(void) { DevMsg(eDLL_T::ENGINE, "%s: Changing singleplayer level to: '%s'\n", __FUNCTION__, m_levelName); m_flShortFrameTime = 1.5; // Set frame time. @@ -421,7 +421,7 @@ FORCEINLINE void CHostState::State_ChangeLevelSP(void) //----------------------------------------------------------------------------- // Purpose: change multiplayer level //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::State_ChangeLevelMP(void) +void CHostState::State_ChangeLevelMP(void) { DevMsg(eDLL_T::ENGINE, "%s: Changing multiplayer level to: '%s'\n", __FUNCTION__, m_levelName); m_flShortFrameTime = 0.5; // Set frame time. @@ -453,7 +453,7 @@ FORCEINLINE void CHostState::State_ChangeLevelMP(void) //----------------------------------------------------------------------------- // Purpose: resets the level name //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::ResetLevelName(void) +void CHostState::ResetLevelName(void) { static const char* szNoMap = "no_map"; Q_snprintf(const_cast(m_levelName), sizeof(m_levelName), szNoMap); diff --git a/r5dev/engine/host_state.h b/r5dev/engine/host_state.h index e915e590..fa2e22d0 100644 --- a/r5dev/engine/host_state.h +++ b/r5dev/engine/host_state.h @@ -16,21 +16,20 @@ enum class HostStates_t : int class CHostState { public: + static void FrameUpdate(CHostState* pHostState, double flCurrentTime, float flFrameTime); + void LoadConfig(void) const; - FORCEINLINE static void FrameUpdate(CHostState* pHostState, double flCurrentTime, float flFrameTime); - FORCEINLINE void LoadConfig(void) const; + void Init(void); + void Setup(void); + void Think(void) const; - FORCEINLINE void Init(void); - FORCEINLINE void Setup(void); - FORCEINLINE void Think(void) const; + void GameShutDown(void); + void State_NewGame(void); - FORCEINLINE void GameShutDown(void); - FORCEINLINE void State_NewGame(void); + void State_ChangeLevelSP(void); + void State_ChangeLevelMP(void); - FORCEINLINE void State_ChangeLevelSP(void); - FORCEINLINE void State_ChangeLevelMP(void); - - FORCEINLINE void ResetLevelName(void); + void ResetLevelName(void); public: HostStates_t m_iCurrentState; //0x0000