From 7be85c03a73af0c9e23718b037120c7de4c4dc96 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 7 Nov 2022 19:29:55 +0100 Subject: [PATCH] Implement '-nodfs' Allow skipping DFS initialization. --- r5dev/core/init.cpp | 4 ++++ r5dev/engine/host_cmd.cpp | 24 +++++++++++++++++++++--- r5dev/engine/host_cmd.h | 15 ++++++++++++++- 3 files changed, 39 insertions(+), 4 deletions(-) diff --git a/r5dev/core/init.cpp b/r5dev/core/init.cpp index b19ab519..ffd38d4e 100644 --- a/r5dev/core/init.cpp +++ b/r5dev/core/init.cpp @@ -181,6 +181,8 @@ void Systems_Init() #endif // !CLIENT_DLL && GAMEDLL_S3 Host_Attach(); + HostCmd_Attach(); + CHostState_Attach(); CModelBsp_Attach(); @@ -314,6 +316,8 @@ void Systems_Shutdown() #endif // !CLIENT_DLL && GAMEDLL_S3 Host_Detach(); + HostCmd_Detach(); + CHostState_Detach(); CModelBsp_Detach(); diff --git a/r5dev/engine/host_cmd.cpp b/r5dev/engine/host_cmd.cpp index 2e45f79a..01e99028 100644 --- a/r5dev/engine/host_cmd.cpp +++ b/r5dev/engine/host_cmd.cpp @@ -1,7 +1,25 @@ #include "core/stdafx.h" +#include "tier0/commandline.h" #include "engine/host_cmd.h" -/////////////////////////////////////////////////////////////////////////////// -EngineParms_t* g_pEngineParms = nullptr; +bool DFS_InitializeFeatureFlagDefinitions(const char* pszFeatureFlags) +{ + if (CommandLine()->CheckParm("-nodfs")) + return false; -// TODO: this file is for when dedicated is stable, to move hard coded patches in Host_Init for a more dynamic solution. + return v_DFS_InitializeFeatureFlagDefinitions(pszFeatureFlags); +} + +/////////////////////////////////////////////////////////////////////////////// +void HostCmd_Attach() +{ + DetourAttach(&v_DFS_InitializeFeatureFlagDefinitions, &DFS_InitializeFeatureFlagDefinitions); +} + +void HostCmd_Detach() +{ + DetourDetach(&v_DFS_InitializeFeatureFlagDefinitions, &DFS_InitializeFeatureFlagDefinitions); +} + +/////////////////////////////////////////////////////////////////////////////// +EngineParms_t* g_pEngineParms = nullptr; \ No newline at end of file diff --git a/r5dev/engine/host_cmd.h b/r5dev/engine/host_cmd.h index 04b2fbb8..66dfae5f 100644 --- a/r5dev/engine/host_cmd.h +++ b/r5dev/engine/host_cmd.h @@ -25,9 +25,15 @@ inline auto Host_ChangeLevel = p_Host_ChangeLevel.RCast(); +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) +inline CMemory p_DFS_InitializeFeatureFlagDefinitions; +inline auto v_DFS_InitializeFeatureFlagDefinitions = p_DFS_InitializeFeatureFlagDefinitions.RCast(); +#endif // !(GAMEDLL_S0) || !(GAMEDLL_S1) || !(GAMEDLL_S2) + extern EngineParms_t* g_pEngineParms; - +void HostCmd_Attach(); +void HostCmd_Detach(); /////////////////////////////////////////////////////////////////////////////// class VHostCmd : public IDetour { @@ -37,6 +43,9 @@ class VHostCmd : public IDetour spdlog::debug("| FUN: Host_NewGame : {:#18x} |\n", p_Host_NewGame.GetPtr()); spdlog::debug("| FUN: Host_ChangeLevel : {:#18x} |\n", p_Host_ChangeLevel.GetPtr()); spdlog::debug("| FUN: SetLaunchOptions : {:#18x} |\n", p_SetLaunchOptions.GetPtr()); +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) + spdlog::debug("| FUN: DFS_InitializeFeatureFlagDefinitions : {:#18x} |\n", p_DFS_InitializeFeatureFlagDefinitions.GetPtr()); +#endif // !(GAMEDLL_S0) || !(GAMEDLL_S1) || !(GAMEDLL_S2) spdlog::debug("| VAR: g_pEngineParms : {:#18x} |\n", reinterpret_cast(g_pEngineParms)); spdlog::debug("+----------------------------------------------------------------+\n"); } @@ -53,6 +62,10 @@ class VHostCmd : public IDetour p_Host_ChangeLevel = g_GameDll.FindPatternSIMD(reinterpret_cast("\x40\x56\x57\x41\x56\x48\x81\xEC\x00\x00\x00\x00"), "xxxxxxxx????"); p_SetLaunchOptions = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x5C\x24\x00\x48\x89\x6C\x24\x00\x57\x48\x83\xEC\x20\x48\x8B\x1D\x00\x00\x00\x00\x48\x8B\xE9\x48\x85\xDB"), "xxxx?xxxx?xxxxxxxx????xxxxxx"); #endif +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) + p_DFS_InitializeFeatureFlagDefinitions = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x8B\xC4\x55\x53\x48\x8D\x68\xE8"), "xxxxxxxxx"); + v_DFS_InitializeFeatureFlagDefinitions = p_DFS_InitializeFeatureFlagDefinitions.RCast(); /*48 8B C4 55 53 48 8D 68 E8*/ +#endif // !(GAMEDLL_S0) || !(GAMEDLL_S1) || !(GAMEDLL_S2) Host_Init = p_Host_Init.RCast(); /*48 89 5C 24 ?? 48 89 74 24 ?? 48 89 7C 24 ?? 55 41 54 41 55 41 56 41 57 48 8D AC 24 ?? ?? ?? ?? B8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 2B E0 48 8B D9*/ Host_NewGame = p_Host_NewGame.RCast(); /*48 8B C4 ?? 41 54 41 55 48 81 EC 70 04 00 00 F2 0F 10 05 ?? ?? ?? 0B*/ Host_ChangeLevel = p_Host_ChangeLevel.RCast(); /*40 56 57 41 56 48 81 EC ?? ?? ?? ??*/