Improve VFTable address logging

More standardized VFTable address logging.
This commit is contained in:
Amos 2023-01-25 11:19:53 +01:00
parent 93efd3792b
commit d76ed1098a
10 changed files with 13 additions and 13 deletions

View File

@ -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 { }

View File

@ -116,9 +116,9 @@ class V_NetMessages : public IDetour
{
virtual void GetAdr(void) const
{
LogConAdr("SVC_Print::`vftable'", reinterpret_cast<uintptr_t>(g_pSVC_Print_VFTable));
LogConAdr("SVC_UserMessage::`vftable'", reinterpret_cast<uintptr_t>(g_pSVC_UserMessage_VFTable));
LogFunAdr("MM_Heartbeat::ToString", MM_Heartbeat__ToString.GetPtr());
LogConAdr("SVC_Print (VFTable)", reinterpret_cast<uintptr_t>(g_pSVC_Print_VFTable));
LogConAdr("SVC_UserMessage (VFTable)", reinterpret_cast<uintptr_t>(g_pSVC_UserMessage_VFTable));
}
virtual void GetFun(void) const
{

View File

@ -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<uintptr_t>(g_pViewRender));
LogVarAdr("g_vecRenderOrigin", reinterpret_cast<uintptr_t>(g_vecRenderOrigin));
LogVarAdr("g_vecRenderAngles", reinterpret_cast<uintptr_t>(g_vecRenderAngles));
LogVarAdr("g_pViewRender", reinterpret_cast<uintptr_t>(g_pViewRender));
LogConAdr("CViewRender (VFTable)", g_pViewRender_VFTable.GetPtr());
}
virtual void GetFun(void) const
{

View File

@ -48,7 +48,7 @@ class VUtil_Shared : public IDetour
{
virtual void GetAdr(void) const
{
LogVarAdr("g_pTraceFilterSimpleVFTable", reinterpret_cast<uintptr_t>(g_pTraceFilterSimpleVFTable));
LogConAdr("CTraceFilterSimple::`vftable'", reinterpret_cast<uintptr_t>(g_pTraceFilterSimpleVFTable));
}
virtual void GetFun(void) const { }
virtual void GetVar(void) const { }

View File

@ -79,10 +79,10 @@ class VMaterialGlue : public IDetour
{
virtual void GetAdr(void) const
{
LogConAdr("CMaterialGlue::`vftable'", reinterpret_cast<uintptr_t>(g_pMaterialGlueVFTable));
#ifndef DEDICATED
LogFunAdr("CMaterialGlue::GetMaterialAtCrossHair", p_GetMaterialAtCrossHair.GetPtr());
#endif // !DEDICATED
LogConAdr("g_pMaterialGlueVFTable", reinterpret_cast<uintptr_t>(g_pMaterialGlueVFTable));
}
virtual void GetFun(void) const
{

View File

@ -50,6 +50,7 @@ class VMaterialSystem : public IDetour
{
virtual void GetAdr(void) const
{
LogConAdr("CMaterial::`vftable'", reinterpret_cast<uintptr_t>(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<uintptr_t>(g_pMaterialSystem));
LogConAdr("g_pMaterialVFTable", reinterpret_cast<uintptr_t>(g_pMaterialVFTable));
}
virtual void GetFun(void) const
{

View File

@ -43,8 +43,8 @@ class VShaderGlue : public IDetour
{
virtual void GetAdr(void) const
{
LogConAdr("CShaderGlue::`vftable'", reinterpret_cast<uintptr_t>(g_pShaderGlueVFTable));
LogFunAdr("CShaderGlue::SetupShader", reinterpret_cast<uintptr_t>(CShaderGlue_SetupShader));
LogConAdr("g_pShaderGlueVFTable", reinterpret_cast<uintptr_t>(g_pShaderGlueVFTable));
}
virtual void GetFun(void) const
{

View File

@ -51,9 +51,9 @@ class HVEngineServer : public IDetour
{
virtual void GetAdr(void) const
{
LogVarAdr("CVEngineServer::`vftable'", reinterpret_cast<uintptr_t>(g_pEngineServerVFTable));
LogFunAdr("CVEngineServer::PersistenceAvailable", p_IVEngineServer__PersistenceAvailable.GetPtr());
LogVarAdr("g_bDedicated", reinterpret_cast<uintptr_t>(g_bDedicated));
LogVarAdr("g_pEngineServerVFTable", reinterpret_cast<uintptr_t>(g_pEngineServerVFTable));
}
virtual void GetFun(void) const
{

View File

@ -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
{

View File

@ -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
{