From 73a3748e7c46b17c5f78bc4f70285085d515ab53 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 16 Apr 2022 23:53:03 +0200 Subject: [PATCH] Dedicated optimizations Strip 'CWin32Surface::InitStaticData()' and 'KeyboardLayout_Init()' from dedicated --- r5dev/common/opcodes.cpp | 7 +++++++ r5dev/common/opcodes.h | 13 +++++++++++++ r5dev/core/r5dev.h | 14 +++++++------- r5dev/engine/sys_utils.cpp | 4 ++-- 4 files changed, 29 insertions(+), 9 deletions(-) diff --git a/r5dev/common/opcodes.cpp b/r5dev/common/opcodes.cpp index 50c4d1ec..685001be 100644 --- a/r5dev/common/opcodes.cpp +++ b/r5dev/common/opcodes.cpp @@ -302,6 +302,13 @@ void Dedicated_Init() Community_Frame.Offset(0x0).Patch({ 0xC3 }); // FUN --> RET | Return early to prevent 'Community_Frame()' from being ran every frame on the server (CLIENT ONLY). //GetEngineClientThread.Offset(0x0).Patch({ 0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3 }); // FUN --> RET | Return nullptr for mp_gamemode thread assignment during registration callback. + { + CWin32Surface_initStaticData.Patch({ 0xC3 }); // FUN --> RET | Prevent 'CWin32Surface::initStaticData()' from being ran in CInit. +#if !defined (GAMEDLL_S0) || !defined (GAMEDLL_S1) + KeyboardLayout_Init.Patch({ 0xC3 }); // FUN --> RET | Prevent keyboard layout initialization for IME in CInit. +#endif + } + // This mandatory pak file should only exist on the client. if (!FileExists("vpk\\client_frontend.bsp.pak000_000.vpk")) { diff --git a/r5dev/common/opcodes.h b/r5dev/common/opcodes.h index 12e6ea38..e2f50ed0 100644 --- a/r5dev/common/opcodes.h +++ b/r5dev/common/opcodes.h @@ -107,6 +107,13 @@ inline CMemory GetEngineClientThread = g_mGameDll.FindPatternSIMD(reinterpret_ca inline CMemory GetEngineClientThread = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x40\x53\x48\x83\xEC\x20\x65\x48\x8B\x04\x25\x00\x00\x00\x00\x48\x8B\xD9\xB9\x00\x00\x00\x00\x48\x8B\x10\x8B\x04\x11\x39\x05\x00\x00\x00\x00\x7F\x21"), "xxxxxxxxxxx????xxxx????xxxxxxxx????xx"); #endif +inline CMemory CWin32Surface_initStaticData = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x48\x83\xEC\x28\xE8\x00\x00\x00\x00\x48\x8D\x0D\x00\x00\x00\x00\x48\x83\xC4\x28\xE9\x00\x00\x00\x00\xCC\xCC\xCC\xCC\xCC\xCC\xCC\x33\xC9"), "xxxxx????xxx????xxxxx????xxxxxxxxx"); +// 48 83 EC 28 E8 ? ? ? ? 48 8D 0D ? ? ? ? 48 83 C4 28 E9 ? ? ? ? CC CC CC CC CC CC CC 33 C9 +#if !defined (GAMEDLL_S0) || !defined (GAMEDLL_S1) +inline CMemory KeyboardLayout_Init = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x48\x83\xEC\x28\x33\xC9\xFF\x15\x00\x00\x00\x00\x48\x8D\x0D\x00\x00\x00\x00"), "xxxxxxxx????xxx????"); +#endif //48 83 EC 28 33 C9 FF 15 ? ? ? ? 48 8D 0D ? ? ? ? + + //------------------------------------------------------------------------- // .RDATA //------------------------------------------------------------------------- @@ -138,11 +145,17 @@ class HOpcodes : public IDetour std::cout << "| FUN: Host_Disconnect : 0x" << std::hex << std::uppercase << Host_Disconnect.GetPtr() << std::setw(nPad) << " |" << std::endl; std::cout << "+----------------------------------------------------------------+" << std::endl; std::cout << "| FUN: Server_S2C_CONNECT_1 : 0x" << std::hex << std::uppercase << Server_S2C_CONNECT_1.GetPtr() << std::setw(nPad) << " |" << std::endl; + std::cout << "+----------------------------------------------------------------+" << std::endl; std::cout << "| FUN: UpdateCurrentVideoConfig : 0x" << std::hex << std::uppercase << UpdateCurrentVideoConfig.GetPtr() << std::setw(nPad) << " |" << std::endl; std::cout << "| FUN: HandleConfigFile : 0x" << std::hex << std::uppercase << HandleConfigFile.GetPtr() << std::setw(nPad) << " |" << std::endl; std::cout << "| FUN: ResetPreviousGameState : 0x" << std::hex << std::uppercase << ResetPreviousGameState.GetPtr() << std::setw(nPad) << " |" << std::endl; std::cout << "| FUN: LoadPlayerConfig : 0x" << std::hex << std::uppercase << LoadPlayerConfig.GetPtr() << std::setw(nPad) << " |" << std::endl; std::cout << "+----------------------------------------------------------------+" << std::endl; +#if !defined (GAMEDLL_S0) || !defined (GAMEDLL_S1) + std::cout << "| FUN: CWin32Surface::initStaticData : 0x" << std::hex << std::uppercase << CWin32Surface_initStaticData.GetPtr() << std::setw(nPad) << " |" << std::endl; +#endif + std::cout << "| FUN: KeyboardLayout_Init : 0x" << std::hex << std::uppercase << KeyboardLayout_Init.GetPtr() << std::setw(nPad) << " |" << std::endl; + std::cout << "+----------------------------------------------------------------+" << std::endl; std::cout << "| CON: g_pClientVPKDir : 0x" << std::hex << std::uppercase << g_pClientVPKDir.GetPtr() << std::setw(nPad) << " |" << std::endl; std::cout << "| CON: g_pClientBSP : 0x" << std::hex << std::uppercase << g_pClientBSP.GetPtr() << std::setw(nPad) << " |" << std::endl; std::cout << "| CON: g_pClientCommonBSP : 0x" << std::hex << std::uppercase << g_pClientCommonBSP.GetPtr() << std::setw(nPad) << " |" << std::endl; diff --git a/r5dev/core/r5dev.h b/r5dev/core/r5dev.h index 9471cf56..fb9b4eda 100644 --- a/r5dev/core/r5dev.h +++ b/r5dev/core/r5dev.h @@ -11,11 +11,11 @@ __declspec(dllexport) void DummyExport() const std::string R5R_EMBLEM[] = { - R"(+-------------------------------------------------------------------+)", - R"(| ___ ___ ___ _ _ _ ___ __ _ _ |)", - R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | __ _|_ ) / \| | | |)", - R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | \ V // / | () |_ _| |)", - R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| \_//___(_)__(_)|_| |)", - R"(| |)", - R"(+-------------------------------------------------------------------+)" + R"(+-------------------------------------------------------------+)", + R"(| ___ ___ ___ _ _ _ ___ __ |)", + R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | __ _|_ ) / \ |)", + R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | \ V // / | () | |)", + R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| \_//___(_)__/ |)", + R"(| |)", + R"(+-------------------------------------------------------------+)" }; diff --git a/r5dev/engine/sys_utils.cpp b/r5dev/engine/sys_utils.cpp index 4d5e026e..e493b0bc 100644 --- a/r5dev/engine/sys_utils.cpp +++ b/r5dev/engine/sys_utils.cpp @@ -373,7 +373,7 @@ void* HSys_LoadAssetHelper(const CHAR* lpFileName, std::int64_t a2, LARGE_INTEGE void SysUtils_Attach() { - DetourAttach((LPVOID*)&Sys_Error, &HSys_Error); + //DetourAttach((LPVOID*)&Sys_Error, &HSys_Error); DetourAttach((LPVOID*)&Sys_Warning, &HSys_Warning); DetourAttach((LPVOID*)&Sys_LoadAssetHelper, &HSys_LoadAssetHelper); #ifndef DEDICATED @@ -383,7 +383,7 @@ void SysUtils_Attach() void SysUtils_Detach() { - DetourDetach((LPVOID*)&Sys_Error, &HSys_Error); + //DetourDetach((LPVOID*)&Sys_Error, &HSys_Error); DetourDetach((LPVOID*)&Sys_Warning, &HSys_Warning); DetourDetach((LPVOID*)&Sys_LoadAssetHelper, &HSys_LoadAssetHelper); #ifndef DEDICATED