From ab8d0b8f573715fae079fa5881eb7d41ddf0773a Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 17 Jul 2022 12:16:31 +0200 Subject: [PATCH] Improve CHostState::FrameUpdate parameter types and names --- r5dev/engine/host_state.cpp | 4 ++-- r5dev/engine/host_state.h | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/r5dev/engine/host_state.cpp b/r5dev/engine/host_state.cpp index 5bfd0454..fd5e6299 100644 --- a/r5dev/engine/host_state.cpp +++ b/r5dev/engine/host_state.cpp @@ -50,7 +50,7 @@ //----------------------------------------------------------------------------- // Purpose: state machine's main processing loop //----------------------------------------------------------------------------- -FORCEINLINE void CHostState::FrameUpdate(CHostState* rcx, void* rdx, float time) +FORCEINLINE void CHostState::FrameUpdate(CHostState* pHostState, double flCurrentTime, float flFrameTime) { static bool bInitialized = false; if (!bInitialized) @@ -100,7 +100,7 @@ FORCEINLINE void CHostState::FrameUpdate(CHostState* rcx, void* rdx, float time) } case HostStates_t::HS_RUN: { - CHostState_State_Run(&g_pHostState->m_iCurrentState, nullptr, time); + CHostState_State_Run(&g_pHostState->m_iCurrentState, flCurrentTime, flFrameTime); break; } case HostStates_t::HS_GAME_SHUTDOWN: diff --git a/r5dev/engine/host_state.h b/r5dev/engine/host_state.h index e4f23656..00006e67 100644 --- a/r5dev/engine/host_state.h +++ b/r5dev/engine/host_state.h @@ -17,7 +17,7 @@ class CHostState { public: - FORCEINLINE static void FrameUpdate(CHostState* rcx, void* rdx, float time); + FORCEINLINE static void FrameUpdate(CHostState* pHostState, double flCurrentTime, float flFrameTime); FORCEINLINE void LoadConfig(void) const; FORCEINLINE void Init(void); @@ -52,10 +52,10 @@ public: /* ==== CHOSTSTATE ====================================================================================================================================================== */ inline CMemory p_CHostState_FrameUpdate; -inline auto CHostState_FrameUpdate = p_CHostState_FrameUpdate.RCast(); +inline auto CHostState_FrameUpdate = p_CHostState_FrameUpdate.RCast(); inline CMemory p_CHostState_State_Run; -inline auto CHostState_State_Run = p_CHostState_State_Run.RCast(); +inline auto CHostState_State_Run = p_CHostState_State_Run.RCast(); inline CMemory p_CHostState_State_GameShutDown; inline auto CHostState_State_GameShutDown = p_CHostState_State_GameShutDown.RCast(); @@ -89,8 +89,8 @@ class VHostState : public IDetour #elif defined (GAMEDLL_S3) p_CHostState_State_GameShutDown = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x5C\x24\x00\x57\x48\x83\xEC\x20\x48\x8B\xD9\xE8\x00\x00\x00\x00\x48\x8B\x0D\x00\x00\x00\x00"), "xxxx?xxxxxxxxx????xxx????"); #endif - CHostState_FrameUpdate = p_CHostState_FrameUpdate.RCast(); /*48 89 5C 24 08 48 89 6C 24 20 F3 0F 11 54 24 18*/ - CHostState_State_Run = p_CHostState_State_Run.RCast(); /*48 8B C4 48 89 58 10 48 89 70 18 48 89 78 20 55 41 54 41 55 41 56 41 57 48 8D A8 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 0F 29 70 C8 45 33 E4*/ + CHostState_FrameUpdate = p_CHostState_FrameUpdate.RCast(); /*48 89 5C 24 08 48 89 6C 24 20 F3 0F 11 54 24 18*/ + CHostState_State_Run = p_CHostState_State_Run.RCast(); /*48 8B C4 48 89 58 10 48 89 70 18 48 89 78 20 55 41 54 41 55 41 56 41 57 48 8D A8 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 0F 29 70 C8 45 33 E4*/ CHostState_State_GameShutDown = p_CHostState_State_GameShutDown.RCast(); /*48 89 5C 24 ?? 57 48 83 EC 20 48 8B D9 E8 ?? ?? ?? ?? 48 8B 0D ?? ?? ?? ??*/ } virtual void GetVar(void) const