From 723976d9cb0ce1f66aa1c55eb57b1f29ee92997f Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 12 Jun 2022 17:50:12 +0200 Subject: [PATCH] CLogSystem improvements Draw the RUI console overlay and logging etc in CEngineVGui::Paint. cl_showfps is no longer required to render the log system. --- r5dev/core/init.cpp | 4 ++-- r5dev/vgui/vgui_baseui_interface.cpp | 19 +++++++---------- r5dev/vgui/vgui_baseui_interface.h | 28 ++++++++++++++++--------- r5dev/vguimatsurface/MatSystemSurface.h | 15 ++++++++++--- 4 files changed, 39 insertions(+), 27 deletions(-) diff --git a/r5dev/core/init.cpp b/r5dev/core/init.cpp index 5a1020f9..9fedfde5 100644 --- a/r5dev/core/init.cpp +++ b/r5dev/core/init.cpp @@ -160,7 +160,7 @@ void Systems_Init() #ifndef DEDICATED CEngineVGui_Attach(); - CFPSPanel_Attach(); + //CFPSPanel_Attach(); CHLClient_Attach(); #endif // !DEDICATED @@ -278,7 +278,7 @@ void Systems_Shutdown() #ifndef DEDICATED CEngineVGui_Detach(); - CFPSPanel_Detach(); + //CFPSPanel_Detach(); CHLClient_Detach(); #endif // !DEDICATED diff --git a/r5dev/vgui/vgui_baseui_interface.cpp b/r5dev/vgui/vgui_baseui_interface.cpp index 0366e301..adbfb12c 100644 --- a/r5dev/vgui/vgui_baseui_interface.cpp +++ b/r5dev/vgui/vgui_baseui_interface.cpp @@ -10,25 +10,20 @@ #include #include #include +#include //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- -int HCEngineVGui_Paint(void* thisptr, PaintMode_t mode) +int CEngineVGui::Paint(CEngineVGui* thisptr, PaintMode_t mode) { int result = CEngineVGui_Paint(thisptr, mode); - static void* pCMatSystemSurface = CMemory(0x14D40B3B0).RCast(); - static auto fnRenderStart = CMemory(0x14053EFC0).RCast(); - static auto fnRenderEnd = CMemory(0x14053F1B0).RCast(); - - if (mode == PaintMode_t::PAINT_UIPANELS || mode == PaintMode_t::PAINT_INGAMEPANELS) // Render in-main menu and in-game. + if (/*mode == PaintMode_t::PAINT_UIPANELS ||*/ mode == PaintMode_t::PAINT_INGAMEPANELS) // Render in-main menu and in-game. { - fnRenderStart(pCMatSystemSurface); - + CEngineVGui_RenderStart(g_pMatSystemSurfaceReference); g_pLogSystem.Update(); - - fnRenderEnd(); + CEngineVGui_RenderEnd(); } return result; @@ -37,12 +32,12 @@ int HCEngineVGui_Paint(void* thisptr, PaintMode_t mode) /////////////////////////////////////////////////////////////////////////////// void CEngineVGui_Attach() { - //DetourAttach((LPVOID*)&CEngineVGui_Paint, &HCEngineVGui_Paint); + DetourAttach((LPVOID*)&CEngineVGui_Paint, &CEngineVGui::Paint); } void CEngineVGui_Detach() { - //DetourDetach((LPVOID*)&CEngineVGui_Paint, &HCEngineVGui_Paint); + DetourDetach((LPVOID*)&CEngineVGui_Paint, &CEngineVGui::Paint); } /////////////////////////////////////////////////////////////////////////////// \ No newline at end of file diff --git a/r5dev/vgui/vgui_baseui_interface.h b/r5dev/vgui/vgui_baseui_interface.h index 08aed4c5..de6e43c0 100644 --- a/r5dev/vgui/vgui_baseui_interface.h +++ b/r5dev/vgui/vgui_baseui_interface.h @@ -1,5 +1,6 @@ #pragma once #include +#include enum class PaintMode_t { @@ -11,6 +12,7 @@ enum class PaintMode_t class CEngineVGui { public: + static int Paint(CEngineVGui* thisptr, PaintMode_t mode); void EnabledProgressBarForNextLoad(void) { int index = 31; @@ -30,10 +32,13 @@ public: /* ==== CENGINEVGUI ===================================================================================================================================================== */ inline CMemory p_CEngineVGui_Paint; -inline auto CEngineVGui_Paint = p_CEngineVGui_Paint.RCast(); +inline auto CEngineVGui_Paint = p_CEngineVGui_Paint.RCast(); -inline CMemory p_CEngineVGui_Unknown; -inline auto CEngineVGui_Unknown = p_CEngineVGui_Unknown.RCast(); +inline CMemory p_CEngineVGui_RenderStart; +inline auto CEngineVGui_RenderStart = p_CEngineVGui_RenderStart.RCast(); + +inline CMemory p_CEngineVGui_RenderEnd; +inline auto CEngineVGui_RenderEnd = p_CEngineVGui_RenderEnd.RCast(); inline CEngineVGui* g_pEngineVGui = nullptr; @@ -43,7 +48,8 @@ class VEngineVGui : public IDetour virtual void GetAdr(void) const { spdlog::debug("| FUN: CEngineVGui::Paint : {:#18x} |\n", p_CEngineVGui_Paint.GetPtr()); - spdlog::debug("| FUN: CEngineVGui::Unknown : {:#18x} |\n", p_CEngineVGui_Unknown.GetPtr()); + spdlog::debug("| FUN: CEngineVGui::RenderStart : {:#18x} |\n", p_CEngineVGui_RenderStart.GetPtr()); + spdlog::debug("| FUN: CEngineVGui::RenderEnd : {:#18x} |\n", p_CEngineVGui_RenderEnd.GetPtr()); spdlog::debug("| VAR: g_pEngineVGui : {:#18x} |\n", reinterpret_cast(g_pEngineVGui)); spdlog::debug("+----------------------------------------------------------------+\n"); } @@ -51,17 +57,19 @@ class VEngineVGui : public IDetour { #if defined (GAMEDLL_S0) || defined (GAMEDLL_S1) p_CEngineVGui_Paint = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x89\x54\x24\x10\x55\x56\x41\x55\x48\x81\xEC\x00\x00\x00\x00"), "xxxxxxxxxxx????"); - CEngineVGui_Paint = p_CEngineVGui_Paint.RCast(); /*41 55 41 56 48 83 EC 78 44 8B EA*/ + CEngineVGui_Paint = p_CEngineVGui_Paint.RCast(); /*41 55 41 56 48 83 EC 78 44 8B EA*/ - p_CEngineVGui_Unknown = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x4C\x8B\x81\x00\x00\x00\x00\x48\x8D\x05\x00\x00\x00\x00\x4C\x3B\xC0\x74\x1F"), "xxx????xxx????xxxxx"); - CEngineVGui_Unknown = p_CEngineVGui_Unknown.RCast(); /*4C 8B 81 ?? ?? ?? ?? 48 8D 05 ?? ?? ?? ?? 4C 3B C0 74 1F*/ + p_CEngineVGui_RenderStart = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x48\x8B\xC4\x53\x56\x57\x48\x81\xEC\x00\x00\x00\x00\x0F\x29\x70\xD8"), "xxxxxxxxx????xxxx"); + CEngineVGui_RenderStart = p_CEngineVGui_RenderStart.RCast(); /*48 8B C4 53 56 57 48 81 EC ?? ?? ?? ?? 0F 29 70 D8*/ #elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3) p_CEngineVGui_Paint = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x41\x55\x41\x56\x48\x83\xEC\x78\x44\x8B\xEA"), "xxxxxxxxxxx"); - CEngineVGui_Paint = p_CEngineVGui_Paint.RCast(); /*41 55 41 56 48 83 EC 78 44 8B EA*/ + CEngineVGui_Paint = p_CEngineVGui_Paint.RCast(); /*41 55 41 56 48 83 EC 78 44 8B EA*/ - p_CEngineVGui_Unknown = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x40\x53\x48\x83\xEC\x20\x48\x8D\x05\x00\x00\x00\x00\x48\x8B\xD9\x48\x39\x81\x00\x00\x00\x00\x74\x29"), "xxxxxxxxx????xxxxxx????xx"); - CEngineVGui_Unknown = p_CEngineVGui_Unknown.RCast(); /*40 53 48 83 EC 20 48 8D 05 ?? ?? ?? ?? 48 8B D9 48 39 81 ?? ?? ?? ?? 74 29*/ + p_CEngineVGui_RenderStart = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x40\x53\x57\x48\x81\xEC\x00\x00\x00\x00\x48\x8B\xF9"), "xxxxxx????xxx"); + CEngineVGui_RenderStart = p_CEngineVGui_RenderStart.RCast(); /*40 53 57 48 81 EC ?? ?? ?? ?? 48 8B F9*/ #endif + p_CEngineVGui_RenderEnd = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x40\x53\x48\x83\xEC\x20\x48\x8B\x0D\x00\x00\x00\x00\xC6\x05\x00\x00\x00\x00\x00\x48\x8B\x01"), "xxxxxxxxx????xx?????xxx"); + CEngineVGui_RenderEnd = p_CEngineVGui_RenderEnd.RCast(); /*40 53 48 83 EC 20 48 8B 0D ?? ?? ?? ?? C6 05 ?? ?? ?? ?? ?? 48 8B 01*/ } virtual void GetVar(void) const { diff --git a/r5dev/vguimatsurface/MatSystemSurface.h b/r5dev/vguimatsurface/MatSystemSurface.h index 48907fb3..fdf40aa0 100644 --- a/r5dev/vguimatsurface/MatSystemSurface.h +++ b/r5dev/vguimatsurface/MatSystemSurface.h @@ -5,7 +5,12 @@ inline CMemory p_CMatSystemSurface_DrawColoredText; inline auto CMatSystemSurface_DrawColoredText = p_CMatSystemSurface_DrawColoredText.RCast(); -inline CMemory g_pMatSystemSurface; +class CMatSystemSurface +{ +}; + +inline CMatSystemSurface* g_pMatSystemSurface; +inline CMatSystemSurface* g_pMatSystemSurfaceReference; /////////////////////////////////////////////////////////////////////////////// class VMatSystemSurface : public IDetour @@ -13,7 +18,8 @@ class VMatSystemSurface : public IDetour virtual void GetAdr(void) const { spdlog::debug("| FUN: CMatSystemSurface::DrawColoredText : {:#18x} |\n", p_CMatSystemSurface_DrawColoredText.GetPtr()); - spdlog::debug("| VAR: g_pMatSystemSurface : {:#18x} |\n", g_pMatSystemSurface.GetPtr()); + spdlog::debug("| VAR: g_pMatSystemSurface : {:#18x} |\n", reinterpret_cast(g_pMatSystemSurface)); + spdlog::debug("| VAR: g_pMatSystemSurfaceReference : {:#18x} |\n", reinterpret_cast(g_pMatSystemSurfaceReference)); spdlog::debug("+----------------------------------------------------------------+\n"); } virtual void GetFun(void) const @@ -30,8 +36,11 @@ class VMatSystemSurface : public IDetour #elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3) g_pMatSystemSurface = g_mGameDll.FindPatternSIMD(reinterpret_cast( "\x48\x83\xEC\x28\x48\x83\x3D\x00\x00\x00\x00\x00\x48\x8D\x05\x00\x00\x00\x00"), "xxxxxxx?????xxx????") - .Offset(0x0).FindPatternSelf("48 83 3D", CMemory::Direction::DOWN, 40).ResolveRelativeAddressSelf(0x3, 0x8).GetPtr(); + .FindPatternSelf("48 83 3D", CMemory::Direction::DOWN, 40).ResolveRelativeAddressSelf(0x3, 0x8).RCast(); #endif + g_pMatSystemSurfaceReference = g_mGameDll.FindPatternSIMD(reinterpret_cast( + "\x48\x8B\x05\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\x48\x8B\x05\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\x8B\x81\x00\x00\x00\x00"), "xxx????xxxxxxxxxxxx????xxxxxxxxxxx????") + .ResolveRelativeAddressSelf(0x3, 0x7).RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const { }