Add 'g_pImmediateContext' to SDK

Grab ptr to game dx device context.
This commit is contained in:
Kawe Mazidjatari 2023-01-30 16:10:46 +01:00
parent 0227f1bca3
commit 0f9c9d5ae4
2 changed files with 10 additions and 4 deletions

View File

@ -528,7 +528,8 @@ void VDXGI::GetAdr(void) const
LogVarAdr("s_pRenderTargetView", reinterpret_cast<uintptr_t>(s_pRenderTargetView));
LogVarAdr("s_pDeviceContext", reinterpret_cast<uintptr_t>(s_pDeviceContext));
LogVarAdr("s_pDevice", reinterpret_cast<uintptr_t>(s_pDevice));
LogVarAdr("g_ppGameDevice", reinterpret_cast<uintptr_t>(g_ppGameDevice));
LogVarAdr("g_pGameDevice", reinterpret_cast<uintptr_t>(g_ppGameDevice));
LogVarAdr("g_pImmediateContext", reinterpret_cast<uintptr_t>(g_ppImmediateContext));
}
//#################################################################################

View File

@ -115,8 +115,8 @@ enum class DXGISwapChainVTbl : short
};
#ifndef BUILDING_LIBIMGUI
inline CMemory p_gGameDevice;
inline ID3D11Device** g_ppGameDevice = nullptr;
inline ID3D11DeviceContext** g_ppImmediateContext = nullptr;
class VDXGI : public IDetour
{
@ -124,8 +124,13 @@ class VDXGI : public IDetour
virtual void GetFun(void) const { }
virtual void GetVar(void) const
{
p_gGameDevice = g_GameDll.FindPatternSIMD("D3 EA 48 8B 0D ?? ?? ?? ??").FindPatternSelf("48 8B").ResolveRelativeAddressSelf(0x3, 0x7);
g_ppGameDevice = p_gGameDevice.RCast<ID3D11Device**>(); /*D3 EA 48 8B 0D ? ? ? ?*/
#if defined (GAMEDLL_S0) || defined (GAMEDLL_S1)
CMemory pBase = g_GameDll.FindPatternSIMD("48 89 4C 24 ?? 53 48 83 EC 50 48 8B 05 ?? ?? ?? ??");
#elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3)
CMemory pBase = g_GameDll.FindPatternSIMD("4C 8B DC 49 89 4B 08 48 83 EC 58");
#endif
g_ppGameDevice = pBase.FindPattern("48 8D 05").ResolveRelativeAddressSelf(0x3, 0x7).RCast<ID3D11Device**>();
g_ppImmediateContext = pBase.FindPattern("48 89 0D", CMemory::Direction::DOWN, 512, 3).ResolveRelativeAddressSelf(0x3, 0x7).RCast<ID3D11DeviceContext**>();
}
virtual void GetCon(void) const { }
virtual void Attach(void) const { }