aboutsummaryrefslogtreecommitdiff
path: root/TestDLL/dllmain.cpp
blob: f79220e7c3215ea6a2bed1c5ea4c76b8760222a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#include "stdafx.h"
#include "HuntClasses.h"

#include <vector>
#include <string>
#include <sstream>
#include <array>

#include <GdiRadar.h>
#include <Windows.h>

EXTERN_C BOOL WINAPI _CRT_INIT(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved);


#if 0
struct ResolvedDllEntry {
	const char * const baseDllName;
	const char * const functionName;

	HMODULE moduleBase;
	FARPROC resolvedProc;
};

#define DLL_ENTRY(dll_name, function_name) \
	{ dll_name, function_name, NULL, NULL }
#define MSVCRT_ENTRY(function_name) DLL_ENTRY("msvcrt.dll", function_name)

static struct ResolvedDllEntry resolved_smybols[] = {
	MSVCRT_ENTRY("_errno"),
	MSVCRT_ENTRY("malloc"), MSVCRT_ENTRY("free"), MSVCRT_ENTRY("_callnewh"),
	MSVCRT_ENTRY("_invalid_parameter_noinfo_noreturn"),
	MSVCRT_ENTRY("abort"), MSVCRT_ENTRY("calloc"), MSVCRT_ENTRY("frexp"),
	MSVCRT_ENTRY("islower"), MSVCRT_ENTRY("isspace"), MSVCRT_ENTRY("isupper"),
	MSVCRT_ENTRY("tolower"),
	MSVCRT_ENTRY("ldexp"), MSVCRT_ENTRY("localeconv"), MSVCRT_ENTRY("__pctype_func"),
	MSVCRT_ENTRY("___lc_locale_name_func"), MSVCRT_ENTRY("___lc_codepage_func"),
	MSVCRT_ENTRY("setlocale"),
	MSVCRT_ENTRY("_wcsdup"), MSVCRT_ENTRY("wcslen"), MSVCRT_ENTRY("wcsnlen")
};
static const SIZE_T resolved_symbols_size =
sizeof(resolved_smybols) / sizeof(resolved_smybols[0]);

enum SymbolIndex {
	SYM_ERRNO,
	SYM_MALLOC, SYM_FREE, SYM_CALLNEWH,
	SYM_INVALID_PARAMETER_NOINFO_NORETURN,
	SYM_ABORT, SYM_CALLOC, SYM_FREXP,
	SYM_ISLOWER, SYM_ISSPACE, SYM_ISUPPER,
	SYM_TOLOWER,
	SYM_LDEXP, SYM_LOCALECONV, SYM_PCTYPE,
	SYM_LC_LOCALE_NAME, SYM_LC_CODEPAGE,
	SYM_SETLOCALE,
	SYM_WCSDUP, SYM_WCSLEN, SYM_WCSNLEN,
	NUMBER_OF_SYMBOLS
};

static_assert(NUMBER_OF_SYMBOLS == resolved_symbols_size, "Invalid number of Symbols in the table/enum");

#define WRAPPER_FUNCTION(symbol_index, linker_function_name, return_type, ...) \
	typedef return_type (* symbol_index ## _FN)(__VA_ARGS__); \
	extern "C" \
	return_type linker_function_name(__VA_ARGS__)
#define RUN_REAL_FN(symbol_index, ...) \
	(((symbol_index ## _FN)resolved_smybols[symbol_index].resolvedProc)(__VA_ARGS__))

int* __cdecl _errno(void) {
	typedef int*(*SYM_ERRNO_FN)();
	return (((SYM_ERRNO_FN)resolved_smybols[SYM_ERRNO].resolvedProc)());
}
WRAPPER_FUNCTION(SYM_MALLOC, malloc, void *, size_t n) {
	return RUN_REAL_FN(SYM_MALLOC, n);
}
WRAPPER_FUNCTION(SYM_FREE, free, void, void *p) {
	RUN_REAL_FN(SYM_FREE, p);
}
WRAPPER_FUNCTION(SYM_CALLNEWH, _callnewh, int, size_t n) {
	return RUN_REAL_FN(SYM_CALLNEWH, n);
}
WRAPPER_FUNCTION(SYM_INVALID_PARAMETER_NOINFO_NORETURN,
	_invalid_parameter_noinfo_noreturn, void, void) {
	ExitProcess(1);
}
WRAPPER_FUNCTION(SYM_ABORT, abort, void, void) {
	RUN_REAL_FN(SYM_ABORT);
}
WRAPPER_FUNCTION(SYM_CALLOC, calloc, void *, size_t n, size_t s) {
	return RUN_REAL_FN(SYM_CALLOC, n, s);
}
WRAPPER_FUNCTION(SYM_FREXP, frexp, double, double x, int *expptr) {
	return RUN_REAL_FN(SYM_FREXP, x, expptr);
}
WRAPPER_FUNCTION(SYM_ISLOWER, islower, int, int c) {
	return RUN_REAL_FN(SYM_ISLOWER, c);
}
WRAPPER_FUNCTION(SYM_ISSPACE, isspace, int, int c) {
	return RUN_REAL_FN(SYM_ISSPACE, c);
}
WRAPPER_FUNCTION(SYM_ISUPPER, isupper, int, int c) {
	return RUN_REAL_FN(SYM_ISUPPER, c);
}
WRAPPER_FUNCTION(SYM_TOLOWER, tolower, int, int c) {
	return RUN_REAL_FN(SYM_TOLOWER, c);
}
WRAPPER_FUNCTION(SYM_LDEXP, ldexp, double, double x, int exp) {
	return RUN_REAL_FN(SYM_LDEXP, x, exp);
}
WRAPPER_FUNCTION(SYM_LOCALECONV, localeconv, struct lconv *, void) {
	return RUN_REAL_FN(SYM_LOCALECONV);
}
WRAPPER_FUNCTION(SYM_PCTYPE, __pctype_func, const unsigned short *, void) {
	return RUN_REAL_FN(SYM_PCTYPE);
}
WRAPPER_FUNCTION(SYM_LC_LOCALE_NAME, ___lc_locale_name_func, wchar_t **, void) {
	return RUN_REAL_FN(SYM_LC_LOCALE_NAME);
}
WRAPPER_FUNCTION(SYM_LC_CODEPAGE, ___lc_codepage_func, UINT, void) {
	return RUN_REAL_FN(SYM_LC_CODEPAGE);
}
WRAPPER_FUNCTION(SYM_SETLOCALE, setlocale, char *, int category, const char *locale) {
	return RUN_REAL_FN(SYM_SETLOCALE, category, locale);
}
WRAPPER_FUNCTION(SYM_WCSDUP, _wcsdup, wchar_t *, const wchar_t *src) {
	return RUN_REAL_FN(SYM_WCSDUP, src);
}
WRAPPER_FUNCTION(SYM_WCSLEN, _wcslen, size_t, const wchar_t *str) {
	return RUN_REAL_FN(SYM_WCSLEN, str);
}
WRAPPER_FUNCTION(SYM_WCSNLEN, wcsnlen, size_t, const wchar_t *str, size_t n) {
	return RUN_REAL_FN(SYM_WCSNLEN, str, n);
}

extern "C"
void __vcrt_initialize() {}
extern "C"
void __vcrt_uninitialize() {}
extern "C"
void __vcrt_uninitialize_critical() {}
extern "C"
void __vcrt_thread_attach() {}
extern "C"
void __vcrt_thread_detach() {}
extern "C"
void __acrt_initialize() {}
extern "C"
void __acrt_uninitialize() {}
extern "C"
void __acrt_uninitialize_critical() {}
extern "C"
void __acrt_thread_attach() {}
extern "C"
void __acrt_thread_detach() {}

extern "C"
static bool resolve_all_symbols(void) {
	bool result = true;

	for (SIZE_T i = 0; i < 3; ++i) {
		if (resolved_smybols[i].moduleBase) {
			result = false;
		}
		resolved_smybols[i].moduleBase = LoadLibraryA(resolved_smybols[i].baseDllName);
		if (!resolved_smybols[i].moduleBase) {
			result = false;
			continue;
		}
		if (resolved_smybols[i].resolvedProc) {
			result = false;
		}
		resolved_smybols[i].resolvedProc = GetProcAddress(resolved_smybols[i].moduleBase,
			resolved_smybols[i].functionName);
		if (!resolved_smybols[i].resolvedProc) {
			result = false;
		}
	}

	return result;
}
#endif

static gdi_radar_context * ctx = NULL;
static UINT64 pEntSys = 0x0;
static IEntitySystem * iEnt = NULL;


#define SHOW_WARNING(format, ...) \
    do { char errbuf[128]; \
        snprintf(errbuf, sizeof errbuf, "WARNING: " # format, __VA_ARGS__); \
        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];

	pEntSys = *(UINT64*)user_ptr;
	iEnt = *(IEntitySystem **)user_ptr;

	ZeroMemory(&reserved_stack_space[0], sizeof reserved_stack_space);
	if (iEnt->GetNumEntities() > 65535) {
		char errbuf[128];
		snprintf(errbuf, sizeof errbuf,
			"WARNING: Invalid number of Entities: VALUE[%d] > 65535\n",
			iEnt->GetNumEntities());
		MessageBoxA(NULL,
			errbuf,
			"Hunted WARNING",
			MB_OK | MB_ICONINFORMATION);
		return false;
	}
#define PENTITYSYSTEM_ISYSTEM_OFFSET 104
	if ((PVOID)(*(UINT64*)(pEntSys + PENTITYSYSTEM_ISYSTEM_OFFSET)) != iEnt->GetSystem()) {
		char errbuf[128];
		snprintf(errbuf, sizeof errbuf,
			"WARNING: ISystem interface instance not equal: MEMBER[%p] != GETSYSTEM[%p]\n",
			(PVOID)(*(UINT64*)(pEntSys + PENTITYSYSTEM_ISYSTEM_OFFSET)), iEnt->GetSystem());
		MessageBoxA(NULL,
			errbuf,
			"Hunted WARNING",
			MB_OK | MB_ICONINFORMATION);
		return false;
	}
	if (iEnt->GetSystem()->GetLogicalCPUCount() < 1 ||
		iEnt->GetSystem()->GetLogicalCPUCount() > 32)
	{
		SHOW_WARNING("GetLogicalCPUCount returned an invalid value: %u",
			iEnt->GetSystem()->GetLogicalCPUCount());
		return false;
	}
	if (iEnt->GetSystem()->IsQuitting() ||
		iEnt->GetSystem()->IsRelaunch())
	{
		SHOW_WARNING("IsQuitting/IsRelaunch returned invalid values: %u/%u",
			iEnt->GetSystem()->IsQuitting(), iEnt->GetSystem()->IsRelaunch());
		return false;
	}
	if (iEnt->GetSystem()->GetHWND() > (PVOID)((ULONG_PTR)0xFFFFFFFF))
	{
		SHOW_WARNING("GetHWND returned an invalid window handle: %p",
			iEnt->GetSystem()->GetHWND());
		return false;
	}
	if ((PVOID)pEntSys != iEnt->GetSystem()->GetIEntitySystem()) {
		char errbuf[128];
		snprintf(errbuf, sizeof errbuf,
			"WARNING: IEntitySystem interface instance not equal: GLOBAL[%p] != GETENTITYSYSTEM[%p]\n",
			(PVOID)pEntSys, iEnt->GetSystem()->GetIEntitySystem());
		MessageBoxA(NULL,
			errbuf,
			"Hunted WARNING",
			MB_OK | MB_ICONINFORMATION);
		return false;
	}
	if ((PVOID)pEntSys != iEnt->GetSystem()->GetGlobalEnvironment()->pEntitySystem) {
		char errbuf[128];
		snprintf(errbuf, sizeof errbuf,
			"WARNING: IEntitySystem interface instance not equal: GLOBAL[%p] != pEntitySystem[%p]\n",
			(PVOID)pEntSys, iEnt->GetSystem()->GetGlobalEnvironment()->pEntitySystem);
		MessageBoxA(NULL,
			errbuf,
			"Hunted WARNING",
			MB_OK | MB_ICONINFORMATION);
		return false;
	}
	if (iEnt->GetSystem() != iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->GetISystem()) {
		char errbuf[128];
		snprintf(errbuf, sizeof errbuf,
			"WARNING: ISystem interface instance not equal: IEntitySystem[%p] != pGameFramework[%p]\n",
			iEnt->GetSystem(), iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->GetISystem());
		MessageBoxA(NULL,
			errbuf,
			"Hunted WARNING",
			MB_OK | MB_ICONINFORMATION);
		return false;
	}
	if (iEnt->GetSystem() != iEnt->GetSystem()->GetGlobalEnvironment()->pSystem) {
		char errbuf[128];
		snprintf(errbuf, sizeof errbuf,
			"WARNING: ISystem interface instance not equal: IEntitySystem[%p] != pSystem[%p]\n",
			iEnt->GetSystem(), iEnt->GetSystem()->GetGlobalEnvironment()->pSystem);
		MessageBoxA(NULL,
			errbuf,
			"Hunted WARNING",
			MB_OK | MB_ICONINFORMATION);
		return false;
	}
	if (iEnt->GetSystem()->GetGlobalEnvironment()->pRenderer != iEnt->GetSystem()->GetIRenderer()) {
		char errbuf[128];
		snprintf(errbuf, sizeof errbuf,
			"WARNING: ISystem interface instance not equal: IEntitySystem[%p] != pSystem[%p]\n",
			iEnt->GetSystem(), iEnt->GetSystem()->GetGlobalEnvironment()->pSystem);
		MessageBoxA(NULL,
			errbuf,
			"Hunted WARNING",
			MB_OK | MB_ICONINFORMATION);
		return false;
	}

	return true;
}

void APIENTRY LibEntry(PVOID user_ptr)
{
	static bool firstEntry = true;

	if (firstEntry) {
		firstEntry = false;
#if 0
		if (!resolve_all_symbols()) {
			MessageBoxA(NULL,
				"COULD NOT RESOLVE ALL DYNAMIC DLL SYMBOLS !!!",
				"TestDLL Notification",
				MB_OK | MB_ICONINFORMATION);
			return;
		}
		void *bla = malloc(10);
		free(bla);
#endif

		HINSTANCE addr = GetModuleHandle(NULL);
		_CRT_INIT(addr, DLL_PROCESS_ATTACH, NULL);

		if (!InitAndCheckPtr(user_ptr))
		{
			return;
		}

		AllocConsole();
		FILE * conout = NULL;
		freopen_s(&conout, "CONOUT$", "w", stdout);

		printf("Welcome.\n");
		printf("[used memory: %u][cpu flags: %u][user name: %s][cpu count: %d]\n",
			iEnt->GetSystem()->GetUsedMemory(),
			iEnt->GetSystem()->GetCPUFlags(),
			iEnt->GetSystem()->GetUserName(),
			iEnt->GetSystem()->GetLogicalCPUCount());

		if (!ConfigureAndInitGDI()) {
			return;
		}
	}

	if (!iEnt || iEnt->GetSystem()->GetGlobalEnvironment()->pGameFramework->IsInLevelLoad()) {
		return;
	}

	gdi_radar_clear_entities(ctx);

	SIZE_T i = 1;
	IEntityItPtr pEntIt = iEnt->GetEntityIterator();
	while (IEntity* pEnt = pEntIt->Next()) {
		if (!pEnt->IsInitialized() || pEnt->IsGarbage()) {
			continue;
		}
#if 0
		if (pEnt->GetFlags() != (ENTITY_FLAG_CASTSHADOW | ENTITY_FLAG_SEND_RENDER_EVENT)) {
			continue;
		}
#endif
		const char *name = pEnt->GetName();
		if (strlen(name) < 4) {
			continue;
		}
		if (name[0] != 'H' || name[1] != 'u' || name[2] != 'n' || name[3] != 't') {
			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, entCol, "test" };
		gdi_radar_add_entity(ctx, &radar_entity);

		i++;
	}

	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;
	}

	gdi_radar_process_window_events_nonblocking(ctx);
}