diff options
Diffstat (limited to 'TestDLL')
-rw-r--r-- | TestDLL/HuntClasses.h | 2 | ||||
-rw-r--r-- | TestDLL/dllmain.cpp | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/TestDLL/HuntClasses.h b/TestDLL/HuntClasses.h index 2692a3e..d5fc90e 100644 --- a/TestDLL/HuntClasses.h +++ b/TestDLL/HuntClasses.h @@ -963,5 +963,5 @@ static inline bool WorldToScreen(SSystemGlobalEnvironment* globalEnv, Vec3 vEntP struct HuntCtx { IEntitySystem ** ppEntSys; SSystemGlobalEnvironment ** ppGlobalEnv; - IActorSystem ** ppCCryAction; + IGameFramework ** ppCCryAction; };
\ No newline at end of file diff --git a/TestDLL/dllmain.cpp b/TestDLL/dllmain.cpp index 20b1ae6..a95a988 100644 --- a/TestDLL/dllmain.cpp +++ b/TestDLL/dllmain.cpp @@ -272,6 +272,11 @@ static bool InitAndCheckPtr(struct HuntCtx * HuntCtx) (PVOID)pEntSys, iEnt->GetSystem()->GetGlobalEnvironment()->pEntitySystem); return false; } + if ((*HuntCtx->ppCCryAction)->GetIActorSystem() != iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->GetIActorSystem()) { + SHOW_WARNING("CCryAction->GetIActorSystem() signature not equals GameFramework->GetIActorSystem() instance: ppCCryAction[%p] != pGameFramework[%p]\n", + (*HuntCtx->ppCCryAction)->GetIActorSystem(), iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->GetIActorSystem()); + return false; + } if (iEnt->GetSystem() != iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->GetISystem()) { SHOW_WARNING("ISystem interface instance not equal: IEntitySystem[%p] != pGameFramework[%p]\n", iEnt->GetSystem(), iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->GetISystem()); @@ -354,7 +359,7 @@ void APIENTRY LibEntry(struct HuntCtx * HuntCtx) #if 0 if (pEnt->GetFlags() != (ENTITY_FLAG_CASTSHADOW | ENTITY_FLAG_SEND_RENDER_EVENT)) { continue; -} + } #endif const char *name = pEnt->GetName(); if (strlen(name) < 4) { @@ -383,7 +388,7 @@ void APIENTRY LibEntry(struct HuntCtx * HuntCtx) gdi_radar_add_entity(ctx, &radar_entity); i++; - } +} static UINT64 redraw_retry = 0; if (!gdi_radar_redraw_if_necessary(ctx) && |