diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-10-19 04:06:45 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-10-19 04:06:45 +0200 |
commit | c82d3a0043fdf271cb8f5739346280deeb2c2ea2 (patch) | |
tree | f18d667df73ce9ef31b6b35b703e763819ceb724 /TestDLL | |
parent | fcd98f2ec7eee13619a0b5540e89b270659367e1 (diff) |
re-init GDI if HWND changes (probably caused by directx) and draw localplayer color
Diffstat (limited to 'TestDLL')
-rw-r--r-- | TestDLL/dllmain.cpp | 71 |
1 files changed, 46 insertions, 25 deletions
diff --git a/TestDLL/dllmain.cpp b/TestDLL/dllmain.cpp index be50c97..f79220e 100644 --- a/TestDLL/dllmain.cpp +++ b/TestDLL/dllmain.cpp @@ -188,6 +188,36 @@ static IEntitySystem * iEnt = NULL; MessageBoxA(NULL, errbuf, "Hunted WARNING", MB_OK | MB_ICONINFORMATION); \ } while (0); +static bool ConfigureAndInitGDI(void) +{ + SetWindowTextA(GetConsoleWindow(), "Hunted"); + + gdi_radar_config cfg = {}; + cfg.className = L"HR"; + cfg.windowName = L"HRWND"; + cfg.minimumUpdateTime = 0.25f; + cfg.maximumRedrawFails = 5; + cfg.reservedEntities = 16; + + printf("Configure.\n"); + ctx = gdi_radar_configure(&cfg, gdi_radar_get_fake_hinstance()); + if (!ctx) + { + printf("Configure failed.\n"); + return false; + } + + gdi_radar_set_game_dimensions(ctx, 1020.0f, 1020.0f); + + if (!gdi_radar_init(ctx)) + { + printf("Init failed.\n"); + return false; + } + + return true; +} + static bool InitAndCheckPtr(PVOID user_ptr) { char reserved_stack_space[256]; @@ -311,7 +341,7 @@ void APIENTRY LibEntry(PVOID user_ptr) "TestDLL Notification", MB_OK | MB_ICONINFORMATION); return; -} + } void *bla = malloc(10); free(bla); #endif @@ -328,7 +358,6 @@ void APIENTRY LibEntry(PVOID user_ptr) FILE * conout = NULL; freopen_s(&conout, "CONOUT$", "w", stdout); - SetWindowTextA(GetConsoleWindow(), "Hunted"); printf("Welcome.\n"); printf("[used memory: %u][cpu flags: %u][user name: %s][cpu count: %d]\n", iEnt->GetSystem()->GetUsedMemory(), @@ -336,26 +365,7 @@ void APIENTRY LibEntry(PVOID user_ptr) iEnt->GetSystem()->GetUserName(), iEnt->GetSystem()->GetLogicalCPUCount()); - gdi_radar_config cfg = {}; - cfg.className = L"HR"; - cfg.windowName = L"HRWND"; - cfg.minimumUpdateTime = 0.25f; - cfg.maximumRedrawFails = 5; - cfg.reservedEntities = 16; - - printf("Configure.\n"); - ctx = gdi_radar_configure(&cfg, gdi_radar_get_fake_hinstance()); - if (!ctx) - { - printf("Configure failed.\n"); - return; - } - - gdi_radar_set_game_dimensions(ctx, 1020.0f, 1020.0f); - - if (!gdi_radar_init(ctx)) - { - printf("Init failed.\n"); + if (!ConfigureAndInitGDI()) { return; } } @@ -385,20 +395,31 @@ void APIENTRY LibEntry(PVOID user_ptr) continue; } + enum entity_color entCol = entity_color::EC_RED; + if (pEnt->GetFlags() & ENTITY_FLAG_LOCAL_PLAYER) { + entCol = entity_color::EC_BLUE; + } + else if ((pEnt->GetFlags() & ENTITY_ENEMY_CHECK) == 0) { + entCol = entity_color::EC_BLACK; + } + Vec3 entPos = pEnt->GetPos(); entPos.x -= 500.0f; entPos.y -= 500.0f; entPos.y = 1020.0f - entPos.y; - entity radar_entity{ (int)entPos.x, (int)entPos.y, 100.0f, entity_color::EC_RED, "test" }; + entity radar_entity{ (int)entPos.x, (int)entPos.y, 100.0f, entCol, "test" }; gdi_radar_add_entity(ctx, &radar_entity); i++; } - //printf("__%d__\n", iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->GetIActorSystem()->GetActorCount()); - if (!gdi_radar_redraw_if_necessary(ctx)) { + static UINT64 redraw_retry = 0; + if (!gdi_radar_redraw_if_necessary(ctx) && + ((++redraw_retry) % 250 == 0)) + { printf("Reint (redraw failed).\n"); gdi_radar_close_and_cleanup(&ctx); + ConfigureAndInitGDI(); return; } |