From d76ed1098aaed1a9732f85d524310606102709a0 Mon Sep 17 00:00:00 2001 From: Amos Date: Wed, 25 Jan 2023 11:19:53 +0100 Subject: [PATCH] Improve VFTable address logging More standardized VFTable address logging. --- r5dev/client/vengineclient_impl.h | 2 +- r5dev/common/netmessages.h | 4 ++-- r5dev/game/client/viewrender.h | 4 ++-- r5dev/game/shared/util_shared.h | 2 +- r5dev/materialsystem/cmaterialglue.h | 2 +- r5dev/materialsystem/cmaterialsystem.h | 2 +- r5dev/materialsystem/cshaderglue.h | 2 +- r5dev/server/vengineserver_impl.h | 2 +- r5dev/tier1/IConVar.h | 4 ++-- r5dev/tier1/cmd.h | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/r5dev/client/vengineclient_impl.h b/r5dev/client/vengineclient_impl.h index 8ee40f24..4872861e 100644 --- a/r5dev/client/vengineclient_impl.h +++ b/r5dev/client/vengineclient_impl.h @@ -20,7 +20,7 @@ class HVEngineClient : public IDetour { virtual void GetAdr(void) const { - LogConAdr("g_pEngineClientVFTable", g_pEngineClientVFTable.GetPtr()); + LogConAdr("CEngineClient::`vftable'", g_pEngineClientVFTable.GetPtr()); } virtual void GetFun(void) const { } virtual void GetVar(void) const { } diff --git a/r5dev/common/netmessages.h b/r5dev/common/netmessages.h index 7a459b37..f5e1e44d 100644 --- a/r5dev/common/netmessages.h +++ b/r5dev/common/netmessages.h @@ -116,9 +116,9 @@ class V_NetMessages : public IDetour { virtual void GetAdr(void) const { + LogConAdr("SVC_Print::`vftable'", reinterpret_cast(g_pSVC_Print_VFTable)); + LogConAdr("SVC_UserMessage::`vftable'", reinterpret_cast(g_pSVC_UserMessage_VFTable)); LogFunAdr("MM_Heartbeat::ToString", MM_Heartbeat__ToString.GetPtr()); - LogConAdr("SVC_Print (VFTable)", reinterpret_cast(g_pSVC_Print_VFTable)); - LogConAdr("SVC_UserMessage (VFTable)", reinterpret_cast(g_pSVC_UserMessage_VFTable)); } virtual void GetFun(void) const { diff --git a/r5dev/game/client/viewrender.h b/r5dev/game/client/viewrender.h index 9e6cd4fe..93da79e7 100644 --- a/r5dev/game/client/viewrender.h +++ b/r5dev/game/client/viewrender.h @@ -29,11 +29,11 @@ class V_ViewRender : public IDetour { virtual void GetAdr(void) const { + LogConAdr("CViewRender::`vftable'", g_pViewRender_VFTable.GetPtr()); LogFunAdr("CViewRender::GetWorldMatrixForView", p_CViewRender_GetWorldMatrixForView.GetPtr()); + LogVarAdr("g_pViewRender", reinterpret_cast(g_pViewRender)); LogVarAdr("g_vecRenderOrigin", reinterpret_cast(g_vecRenderOrigin)); LogVarAdr("g_vecRenderAngles", reinterpret_cast(g_vecRenderAngles)); - LogVarAdr("g_pViewRender", reinterpret_cast(g_pViewRender)); - LogConAdr("CViewRender (VFTable)", g_pViewRender_VFTable.GetPtr()); } virtual void GetFun(void) const { diff --git a/r5dev/game/shared/util_shared.h b/r5dev/game/shared/util_shared.h index e85e3bcb..9583a74f 100644 --- a/r5dev/game/shared/util_shared.h +++ b/r5dev/game/shared/util_shared.h @@ -48,7 +48,7 @@ class VUtil_Shared : public IDetour { virtual void GetAdr(void) const { - LogVarAdr("g_pTraceFilterSimpleVFTable", reinterpret_cast(g_pTraceFilterSimpleVFTable)); + LogConAdr("CTraceFilterSimple::`vftable'", reinterpret_cast(g_pTraceFilterSimpleVFTable)); } virtual void GetFun(void) const { } virtual void GetVar(void) const { } diff --git a/r5dev/materialsystem/cmaterialglue.h b/r5dev/materialsystem/cmaterialglue.h index 657783bc..7cd94488 100644 --- a/r5dev/materialsystem/cmaterialglue.h +++ b/r5dev/materialsystem/cmaterialglue.h @@ -79,10 +79,10 @@ class VMaterialGlue : public IDetour { virtual void GetAdr(void) const { + LogConAdr("CMaterialGlue::`vftable'", reinterpret_cast(g_pMaterialGlueVFTable)); #ifndef DEDICATED LogFunAdr("CMaterialGlue::GetMaterialAtCrossHair", p_GetMaterialAtCrossHair.GetPtr()); #endif // !DEDICATED - LogConAdr("g_pMaterialGlueVFTable", reinterpret_cast(g_pMaterialGlueVFTable)); } virtual void GetFun(void) const { diff --git a/r5dev/materialsystem/cmaterialsystem.h b/r5dev/materialsystem/cmaterialsystem.h index 3268a613..757feba7 100644 --- a/r5dev/materialsystem/cmaterialsystem.h +++ b/r5dev/materialsystem/cmaterialsystem.h @@ -50,6 +50,7 @@ class VMaterialSystem : public IDetour { virtual void GetAdr(void) const { + LogConAdr("CMaterial::`vftable'", reinterpret_cast(g_pMaterialVFTable)); LogFunAdr("CMaterialSystem::Init", p_CMaterialSystem__Init.GetPtr()); #ifndef DEDICATED LogFunAdr("CMaterialSystem::DispatchDrawCall", p_DispatchDrawCall.GetPtr()); @@ -60,7 +61,6 @@ class VMaterialSystem : public IDetour LogVarAdr("s_pRenderContext", s_pRenderContext.GetPtr()); #endif // !DEDICATED LogVarAdr("g_pMaterialSystem", reinterpret_cast(g_pMaterialSystem)); - LogConAdr("g_pMaterialVFTable", reinterpret_cast(g_pMaterialVFTable)); } virtual void GetFun(void) const { diff --git a/r5dev/materialsystem/cshaderglue.h b/r5dev/materialsystem/cshaderglue.h index 864196a4..acfa24b5 100644 --- a/r5dev/materialsystem/cshaderglue.h +++ b/r5dev/materialsystem/cshaderglue.h @@ -43,8 +43,8 @@ class VShaderGlue : public IDetour { virtual void GetAdr(void) const { + LogConAdr("CShaderGlue::`vftable'", reinterpret_cast(g_pShaderGlueVFTable)); LogFunAdr("CShaderGlue::SetupShader", reinterpret_cast(CShaderGlue_SetupShader)); - LogConAdr("g_pShaderGlueVFTable", reinterpret_cast(g_pShaderGlueVFTable)); } virtual void GetFun(void) const { diff --git a/r5dev/server/vengineserver_impl.h b/r5dev/server/vengineserver_impl.h index 98d5302c..91504a18 100644 --- a/r5dev/server/vengineserver_impl.h +++ b/r5dev/server/vengineserver_impl.h @@ -51,9 +51,9 @@ class HVEngineServer : public IDetour { virtual void GetAdr(void) const { + LogVarAdr("CVEngineServer::`vftable'", reinterpret_cast(g_pEngineServerVFTable)); LogFunAdr("CVEngineServer::PersistenceAvailable", p_IVEngineServer__PersistenceAvailable.GetPtr()); LogVarAdr("g_bDedicated", reinterpret_cast(g_bDedicated)); - LogVarAdr("g_pEngineServerVFTable", reinterpret_cast(g_pEngineServerVFTable)); } virtual void GetFun(void) const { diff --git a/r5dev/tier1/IConVar.h b/r5dev/tier1/IConVar.h index b672596a..6cbafbe7 100644 --- a/r5dev/tier1/IConVar.h +++ b/r5dev/tier1/IConVar.h @@ -116,11 +116,11 @@ class VConVar : public IDetour { virtual void GetAdr(void) const { + LogConAdr("IConVar::`vftable'", g_pIConVarVFTable.GetPtr()); + LogConAdr("ConVar::`vftable'", g_pConVarVFTable.GetPtr()); LogFunAdr("ConVar::IsFlagSet", p_ConVar_IsFlagSet.GetPtr()); LogFunAdr("ConVar::Register", p_ConVar_Register.GetPtr()); LogFunAdr("ConVar_PrintDescription", p_ConVar_PrintDescription.GetPtr()); - LogConAdr("g_pConVarVFTable", g_pConVarVFTable.GetPtr()); - LogConAdr("g_pIConVarVFTable", g_pIConVarVFTable.GetPtr()); } virtual void GetFun(void) const { diff --git a/r5dev/tier1/cmd.h b/r5dev/tier1/cmd.h index 1c3e4bd3..cb9339fa 100644 --- a/r5dev/tier1/cmd.h +++ b/r5dev/tier1/cmd.h @@ -187,13 +187,13 @@ class VConCommand : public IDetour { virtual void GetAdr(void) const { + LogConAdr("ConCommand::`vftable'", g_pConCommandVFTable.GetPtr()); LogFunAdr("ConCommandBase::IsFlagSet", p_ConCommandBase_IsFlagSet.GetPtr()); LogFunAdr("Cbuf_AddText", p_Cbuf_AddText.GetPtr()); LogFunAdr("Cbuf_Execute", p_Cbuf_Execute.GetPtr()); LogFunAdr("Cmd_ForwardToServer", p_Cmd_ForwardToServer.GetPtr()); LogFunAdr("CallbackStub", p_CallbackStub.GetPtr()); LogFunAdr("NullSub", p_NullSub.GetPtr()); - LogConAdr("g_pConCommandVFTable", g_pConCommandVFTable.GetPtr()); } virtual void GetFun(void) const {