From 0a319971dde5cfb7ce0320bd6a14829968081903 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 30 Jan 2023 22:08:01 +0100 Subject: [PATCH] Hook ResizeBuffers to obtain rect size during resize Required as the initialization only sets it to the startup rect size. This will always be up-to-date during resizes. --- r5dev/engine/sys_getmodes.cpp | 4 ++-- r5dev/vgui/vgui_debugpanel.cpp | 16 ++++++++-------- r5dev/windows/id3dx.cpp | 15 +++++++++++++++ r5dev/windows/id3dx.h | 3 +-- 4 files changed, 26 insertions(+), 12 deletions(-) diff --git a/r5dev/engine/sys_getmodes.cpp b/r5dev/engine/sys_getmodes.cpp index 5e19e234..37211f3a 100644 --- a/r5dev/engine/sys_getmodes.cpp +++ b/r5dev/engine/sys_getmodes.cpp @@ -12,8 +12,8 @@ //----------------------------------------------------------------------------- bool HCVideoMode_Common__CreateGameWindow(int* pnRect) { - g_nWindowWidth = pnRect[0]; - g_nWindowHeight = pnRect[1]; + g_nWindowRect[0] = pnRect[0]; + g_nWindowRect[1] = pnRect[1]; return CVideoMode_Common__CreateGameWindow(pnRect); } diff --git a/r5dev/vgui/vgui_debugpanel.cpp b/r5dev/vgui/vgui_debugpanel.cpp index 63186deb..4f80e1fb 100644 --- a/r5dev/vgui/vgui_debugpanel.cpp +++ b/r5dev/vgui/vgui_debugpanel.cpp @@ -83,8 +83,8 @@ void CTextOverlay::AddLog(const EGlobalContext_t context, const string& svText) //----------------------------------------------------------------------------- void CTextOverlay::DrawNotify(void) { - int x = con_notify_invert_x->GetBool() ? g_nWindowWidth - con_notify_offset_x->GetInt() : con_notify_offset_x->GetInt(); - int y = con_notify_invert_y->GetBool() ? g_nWindowHeight - con_notify_offset_y->GetInt() : con_notify_offset_y->GetInt(); + int x = con_notify_invert_x->GetBool() ? g_nWindowRect[0] - con_notify_offset_x->GetInt() : con_notify_offset_x->GetInt(); + int y = con_notify_invert_y->GetBool() ? g_nWindowRect[1] - con_notify_offset_y->GetInt() : con_notify_offset_y->GetInt(); std::lock_guard l(m_Mutex); for (size_t i = 0, j = m_vNotifyText.size(); i < j; i++) @@ -182,8 +182,8 @@ void CTextOverlay::ShouldDraw(const float flFrameTime) void CTextOverlay::DrawHostStats(void) const { static const Color c = { 255, 255, 255, 255 }; - const int nWidth = cl_hoststats_invert_x->GetBool() ? g_nWindowWidth - cl_hoststats_offset_x->GetInt() : cl_hoststats_offset_x->GetInt(); - const int nHeight = cl_hoststats_invert_y->GetBool() ? g_nWindowHeight - cl_hoststats_offset_y->GetInt() : cl_hoststats_offset_y->GetInt(); + const int nWidth = cl_hoststats_invert_x->GetBool() ? g_nWindowRect[0] - cl_hoststats_offset_x->GetInt() : cl_hoststats_offset_x->GetInt(); + const int nHeight = cl_hoststats_invert_y->GetBool() ? g_nWindowRect[1] - cl_hoststats_offset_y->GetInt() : cl_hoststats_offset_y->GetInt(); CMatSystemSurface_DrawColoredText(g_pMatSystemSurface, v_Rui_GetFontFace(), m_nFontHeight, nWidth, nHeight, c.r(), c.g(), c.b(), c.a(), m_pszCon_NPrintf_Buf); } @@ -194,8 +194,8 @@ void CTextOverlay::DrawHostStats(void) const void CTextOverlay::DrawSimStats(void) const { static const Color c = { 255, 255, 255, 255 }; - const int nWidth = cl_simstats_invert_x->GetBool() ? g_nWindowWidth - cl_simstats_offset_x->GetInt() : cl_simstats_offset_x->GetInt(); - const int nHeight = cl_simstats_invert_y->GetBool() ? g_nWindowHeight - cl_simstats_offset_y->GetInt() : cl_simstats_offset_y->GetInt(); + const int nWidth = cl_simstats_invert_x->GetBool() ? g_nWindowRect[0] - cl_simstats_offset_x->GetInt() : cl_simstats_offset_x->GetInt(); + const int nHeight = cl_simstats_invert_y->GetBool() ? g_nWindowRect[1] - cl_simstats_offset_y->GetInt() : cl_simstats_offset_y->GetInt(); DrawFormat(nWidth, nHeight, c, "Server Frame: (%d) Client Frame: (%d) Render Frame: (%d)\n", g_pClientState->GetServerTickCount(), g_pClientState->GetClientTickCount(), *g_nRenderTickCount); @@ -207,8 +207,8 @@ void CTextOverlay::DrawSimStats(void) const void CTextOverlay::DrawGPUStats(void) const { static const Color c = { 255, 255, 255, 255 }; - const int nWidth = cl_gpustats_invert_x->GetBool() ? g_nWindowWidth - cl_gpustats_offset_x->GetInt() : cl_gpustats_offset_x->GetInt(); - const int nHeight = cl_gpustats_invert_y->GetBool() ? g_nWindowHeight - cl_gpustats_offset_y->GetInt() : cl_gpustats_offset_y->GetInt(); + const int nWidth = cl_gpustats_invert_x->GetBool() ? g_nWindowRect[0] - cl_gpustats_offset_x->GetInt() : cl_gpustats_offset_x->GetInt(); + const int nHeight = cl_gpustats_invert_y->GetBool() ? g_nWindowRect[1] - cl_gpustats_offset_y->GetInt() : cl_gpustats_offset_y->GetInt(); DrawFormat(nWidth, nHeight, c, "%8d/%8d/%8dkiB unusable/unfree/total GPU Streaming Texture memory\n", *g_nUnusableStreamingTextureMemory / 1024, *g_nUnfreeStreamingTextureMemory / 1024, *g_nTotalStreamingTextureMemory / 1024); diff --git a/r5dev/windows/id3dx.cpp b/r5dev/windows/id3dx.cpp index 2f63aa11..0a193a6a 100644 --- a/r5dev/windows/id3dx.cpp +++ b/r5dev/windows/id3dx.cpp @@ -38,6 +38,7 @@ static IPostMessageA s_oPostMessageA = NULL; static IPostMessageW s_oPostMessageW = NULL; /////////////////////////////////////////////////////////////////////////////////// +static IDXGIResizeBuffers s_fnResizeBuffers = NULL; static IDXGISwapChainPresent s_fnSwapChainPresent = NULL; //################################################################################# @@ -137,6 +138,15 @@ HRESULT __stdcall Present(IDXGISwapChain* pSwapChain, UINT nSyncInterval, UINT n return s_fnSwapChainPresent(pSwapChain, nSyncInterval, nFlags); } +HRESULT __stdcall ResizeBuffers(IDXGISwapChain* pSwapChain, UINT nBufferCount, UINT nWidth, UINT nHeight, DXGI_FORMAT dxFormat, UINT nSwapChainFlags) +{ + g_nWindowRect[0] = nWidth; + g_nWindowRect[1] = nHeight; + + /////////////////////////////////////////////////////////////////////////////// + return s_fnResizeBuffers(pSwapChain, nBufferCount, nWidth, nHeight, dxFormat, nSwapChainFlags); +} + //################################################################################# // INTERNALS //################################################################################# @@ -238,7 +248,11 @@ void DirectX_Init() int pIDX = static_cast(DXGISwapChainVTbl::Present); s_fnSwapChainPresent = reinterpret_cast(pSwapChainVtable[pIDX]); + int rIDX = static_cast(DXGISwapChainVTbl::ResizeBuffers); + s_fnResizeBuffers = reinterpret_cast(pSwapChainVtable[rIDX]); + DetourAttach(&(LPVOID&)s_fnSwapChainPresent, (PBYTE)Present); + DetourAttach(&(LPVOID&)s_fnResizeBuffers, (PBYTE)ResizeBuffers); // Commit the transaction HRESULT hr = DetourTransactionCommit(); @@ -261,6 +275,7 @@ void DirectX_Shutdown() // Unhook SwapChain DetourDetach(&(LPVOID&)s_fnSwapChainPresent, (PBYTE)Present); + DetourDetach(&(LPVOID&)s_fnResizeBuffers, (PBYTE)ResizeBuffers); // Commit the transaction DetourTransactionCommit(); diff --git a/r5dev/windows/id3dx.h b/r5dev/windows/id3dx.h index d6331da4..82ab2c65 100644 --- a/r5dev/windows/id3dx.h +++ b/r5dev/windows/id3dx.h @@ -23,8 +23,7 @@ typedef HRESULT(__stdcall* IDXGIResizeBuffers) (IDXGISwapChain* pSwapChain, UI ///////////////////////////////////////////////////////////////////////////// // Globals -inline UINT g_nWindowWidth; -inline UINT g_nWindowHeight; +inline UINT g_nWindowRect[2]; ///////////////////////////////////////////////////////////////////////////// // Enums