From 1da841d4ddd489e9c01d4593a6757e336c905091 Mon Sep 17 00:00:00 2001 From: PixieCore <41352111+IcePixelx@users.noreply.github.com> Date: Thu, 23 Jun 2022 21:08:56 +0200 Subject: [PATCH] Remove troll function from HLClient. --- r5dev/client/cdll_engine_int.cpp | 66 -------------------------------- r5dev/client/cdll_engine_int.h | 1 - r5dev/common/netmessages.h | 7 ++-- 3 files changed, 3 insertions(+), 71 deletions(-) diff --git a/r5dev/client/cdll_engine_int.cpp b/r5dev/client/cdll_engine_int.cpp index 4a601989..e6120eea 100644 --- a/r5dev/client/cdll_engine_int.cpp +++ b/r5dev/client/cdll_engine_int.cpp @@ -21,22 +21,6 @@ //----------------------------------------------------------------------------- void CHLClient::FrameStageNotify(CHLClient* pHLClient, ClientFrameStage_t frameStage) { - switch (frameStage) - { - case ClientFrameStage_t::FRAME_START: // FrameStageNotify gets called every frame by CEngine::Frame with the stage being FRAME_START. We can use this to check/set global variables. - { - break; - } - case ClientFrameStage_t::FRAME_NET_UPDATE_POSTDATAUPDATE_END: - { - gHLClient->PatchNetVarConVar(); - break; - } - default: - { - break; - } - } CHLClient_FrameStageNotify(pHLClient, frameStage); } @@ -50,56 +34,6 @@ ClientClass* CHLClient::GetAllClasses() return CHLClient_GetAllClasses(); } -//----------------------------------------------------------------------------- -// Purpose: -//----------------------------------------------------------------------------- -void CHLClient::PatchNetVarConVar(void) const -{ -#ifdef GAMEDLL_S3 - static bool bASLR = true; - static bool bInit = false; - static void* pCVar = 0; - - if (!bASLR && !bInit) - { - CHAR sConVarPtr[] = "\x72\x3a\x73\x76\x72\x75\x73\x7a\x7a\x03\x04"; - PCHAR curr = sConVarPtr; - while (*curr) - { - *curr ^= 'B'; - ++curr; - } - - stringstream ss; - ss << std::hex << string(sConVarPtr); - ss >> pCVar; - bInit = true; - } - else if (!bInit) - { - CMemory mCVar = g_mGameDll.FindPatternSIMD(reinterpret_cast("\xF3\x0F\x11\x83\x8C\x21\x00\x00"), "xxxxxxxx"); - pCVar = mCVar.RCast(); - bInit = true; - } - - if (*reinterpret_cast(pCVar) == 144) - { - uint8_t padding[] = - { - 0x48, 0x8B, 0x45, - 0x58, 0xC7, 0x00, - 0x00, 0x00, 0x00, - 0x00 - }; - - void* pCallback = nullptr; - VirtualAlloc(pCallback, 10, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE); - memcpy(pCallback, reinterpret_cast(padding), 9); - reinterpret_cast(pCallback)(); - } -#endif // GAMEDLL_S3 -} - /////////////////////////////////////////////////////////////////////////////// void CHLClient_Attach() { diff --git a/r5dev/client/cdll_engine_int.h b/r5dev/client/cdll_engine_int.h index d36191b8..aa092937 100644 --- a/r5dev/client/cdll_engine_int.h +++ b/r5dev/client/cdll_engine_int.h @@ -28,7 +28,6 @@ class CHLClient public: static void FrameStageNotify(CHLClient* pHLClient, ClientFrameStage_t curStage); ClientClass* GetAllClasses(); - void PatchNetVarConVar(void) const; void* /* CUserCmd* */ GetUserCmd(int sequenceNumber) // @0x1405BB020 in R5pc_r5launch_N1094_CL456479_2019_10_30_05_20_PM { diff --git a/r5dev/common/netmessages.h b/r5dev/common/netmessages.h index 2d3a0aa3..f7f6edfa 100644 --- a/r5dev/common/netmessages.h +++ b/r5dev/common/netmessages.h @@ -35,7 +35,6 @@ private: class SVC_UserMessage : public CNetMessage, IServerMessageHandler { public: - bool Process(); int m_nMsgType; @@ -77,15 +76,15 @@ class HMM_Heartbeat : public IDetour virtual void GetFun(void) const { MM_Heartbeat__ToString = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x48\x83\xEC\x38\xE8\x00\x00\x00\x00\x3B\x05\x00\x00\x00\x00"), "xxxxx????xx????"); - // 0x1402312A0 // 48 83 EC 38 E8 ? ? ? ? 3B 05 ? ? ? ? + // 48 83 EC 38 E8 ? ? ? ? 3B 05 ? ? ? ? } virtual void GetVar(void) const { // We get the actual address of the vtable here, not the class instance. g_pSVC_Print_VTable = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x74\x1E\x48\x8D\x05\x00\x00\x00\x00\x89\x5F\x08"), "xxxxx????xxx").OffsetSelf(0x2).ResolveRelativeAddressSelf(0x3, 0x7); - // 0x1402D21F6 74 1E 48 8D 05 ? ? ? ? 89 5F 08 + // 74 1E 48 8D 05 ? ? ? ? 89 5F 08 g_pSVC_UserMessage_VTable = g_mGameDll.FindPatternSIMD(reinterpret_cast("\xE8\x00\x00\x00\x00\x48\x85\xFF\x74\x65"), "x????xxxxx").OffsetSelf(0xD).ResolveRelativeAddressSelf(0x3, 0x7); - // 0x1402D295E E8 ? ? ? ? 48 85 FF 74 65 + // E8 ? ? ? ? 48 85 FF 74 65 } virtual void GetCon(void) const { } virtual void Attach(void) const { }