aboutsummaryrefslogtreecommitdiff
path: root/GdiRadarLib/GdiRadar.cpp
blob: 6da3b0db5dfb12983427d04ab103f0e252be4448 (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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
#include "stdafx.h"
#include "GdiRadar.h"

#include <iostream>
#include <vector>

#pragma comment(lib, "Gdi32.lib")

#ifdef _VERBOSE
#define DBG(fmt, ...) printf(fmt, __VA_ARGS__)
#else
#define DBG(fmt, ...)
#endif

#define INVALID_MAP_VALUE ((UINT64)0)


struct gdi_radar_drawing
{
	HBRUSH BlueBrush, BlackBrush, RedBrush;
	HPEN DefaultPen;
	COLORREF TextCOLOR;
	RECT DC_Dimensions;
	HDC hdc;
	UINT64 GameMapWindowWidth;
	UINT64 GameMapWindowHeight;
	bool StickToBottom;
};

struct gdi_radar_context
{
	PWSTR className;
	ATOM classAtom;
	PWSTR windowName;
	HWND myDrawWnd;
	WNDCLASSW wc;

	double minimumUpdateTime;
	UINT64 maximumRedrawFails;
	clock_t lastTimeUpdated;
	UINT64 GameMapWidth;
	UINT64 GameMapHeight;
	size_t reservedEntities;
	bool drawAngles;

	struct gdi_radar_drawing drawing;
	std::vector<struct entity> entities;
};


static inline void getEndPoint(float angle, int len, int start_x,
	int start_y, int *end_x, int *end_y) {
	*end_x = (int)(start_x + len * cos(angle));
	*end_y = (int)(start_y + len * sin(angle));
}

static void draw_entity(struct gdi_radar_context * const ctx, struct entity * const ent)
{
#if 0
	RECT healthRect = { posx - 10, posy - 10, posx + 10, posy - 5 };
	FillRect(hdc, &rect, color);

	RECT textRect = { posx, posy, posx + 10, posy - 5 };
	DrawText(hdc, TEXT("Michael Morrison"), -1, &rect,
		DT_SINGLELINE | DT_CENTER | DT_VCENTER);
#endif

	float frealx = ent->pos[0] * ((float)ctx->drawing.GameMapWindowWidth / ctx->GameMapWidth);
	float frealy = ent->pos[1] * ((float)ctx->drawing.GameMapWindowHeight / ctx->GameMapHeight);
	int realx = (int)frealx;
	int realy = (int)frealy;

	if (ctx->drawAngles) {
		int endx = 0, endy = 0;
		getEndPoint(ent->angle, 
			(ent->angle_line_length ? ent->angle_line_length : 15),
			realx, realy, &endx, &endy);
		SelectObject(ctx->drawing.hdc, ctx->drawing.DefaultPen);
		POINT lines[] = { { realx, realy }, { endx, endy } };
		Polyline(ctx->drawing.hdc, lines, 2);
	}

	switch (ent->color) {
	case EC_BLUE:
		SelectObject(ctx->drawing.hdc, ctx->drawing.BlueBrush);
		break;
	case EC_BLACK:
		SelectObject(ctx->drawing.hdc, ctx->drawing.BlackBrush);
		break;
	case EC_RED:
		SelectObject(ctx->drawing.hdc, ctx->drawing.RedBrush);
		break;
	}

	Ellipse(ctx->drawing.hdc, realx - 5, realy - 5, realx + 5, realy + 5);
}

static void CalcGameToWindowDimensions(struct gdi_radar_context * const ctx)
{
	float aspectRatio = (float)ctx->GameMapWidth / ctx->GameMapHeight;
	if (ctx->drawing.StickToBottom) {
		float newWidth = (float)ctx->drawing.DC_Dimensions.bottom / aspectRatio;
		ctx->drawing.GameMapWindowHeight = ctx->drawing.DC_Dimensions.bottom - 1;
		ctx->drawing.GameMapWindowWidth = (UINT64)newWidth;
	}
	else {
		float newHeight = (float)ctx->drawing.DC_Dimensions.right / aspectRatio;
		ctx->drawing.GameMapWindowHeight = (UINT64)newHeight;
		ctx->drawing.GameMapWindowWidth = ctx->drawing.DC_Dimensions.right - 1;
	}
}

static void CleanupWindowMemory(struct gdi_radar_context * const ctx)
{
	struct gdi_radar_drawing * const drawing = &ctx->drawing;

	DeleteObject(drawing->BlueBrush);
	DeleteObject(drawing->BlackBrush);
	DeleteObject(drawing->RedBrush);
	DeleteObject(drawing->DefaultPen);
	DeleteDC(drawing->hdc);
}

static LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
{
	struct gdi_radar_context * wnd_ctx = NULL;

	if (message == WM_CREATE) {
		LONG_PTR pParent = (LONG_PTR)((LPCREATESTRUCTW)lparam)->lpCreateParams;
		SetWindowLongPtrW(hwnd, -21, pParent);
		wnd_ctx = (struct gdi_radar_context *)pParent;
	}
	else {
		wnd_ctx = (struct gdi_radar_context *)GetWindowLongPtrW(hwnd, -21);
	}

	if (!wnd_ctx)
	{
		DBG("%s\n", "WndProc: ctx NULL!");
		return DefWindowProc(hwnd, message, wparam, lparam);
	}

	struct gdi_radar_drawing * const drawing = &wnd_ctx->drawing;
	if (!drawing)
	{
		DBG("%s\n", "WndProc: drawing NULL!");
		return DefWindowProc(hwnd, message, wparam, lparam);
	}

	switch (message)
	{
	case WM_CREATE:
		DBG("%s\n", "WM_CREATE");
		drawing->hdc = GetDC(hwnd);
		drawing->BlueBrush = CreateSolidBrush(RGB(0, 0, 255));
		drawing->BlackBrush = CreateSolidBrush(RGB(0, 0, 0));
		drawing->RedBrush = CreateSolidBrush(RGB(255, 0, 0));
		drawing->DefaultPen = CreatePen(PS_SOLID, 1, RGB(255, 255, 0));
		drawing->TextCOLOR = RGB(0, 255, 0);
		SetBkMode(drawing->hdc, TRANSPARENT);
		return 0;
	case WM_DESTROY:
		DBG("%s\n", "WM_DESTROY");
		CleanupWindowMemory(wnd_ctx);
		PostQuitMessage(0);
		return 0;

	case WM_PAINT:
	{
#ifdef _DEBUG
		DBG("%s\n", "WM_PAINT");
#endif
		PAINTSTRUCT ps;

		BeginPaint(hwnd, &ps);

		SelectObject(drawing->hdc, drawing->DefaultPen);
		POINT lines[] = { { 0,0 }, { (LONG)drawing->GameMapWindowWidth, 0 },
			{ (LONG)drawing->GameMapWindowWidth,  (LONG)drawing->GameMapWindowHeight },
			{ 0, (LONG)drawing->GameMapWindowHeight }, { 0,0 } };
		Polyline(drawing->hdc, lines, 5);

		for (size_t i = 0; i < wnd_ctx->entities.size(); ++i) {
			draw_entity(wnd_ctx, &wnd_ctx->entities.at(i));
		}

		EndPaint(hwnd, &ps);

		wnd_ctx->lastTimeUpdated = clock();
		break;
	}

	case WM_LBUTTONDOWN:
		DBG("%s\n", "WM_LBUTTONDOWN");
		break;
	case WM_NCLBUTTONDOWN:
		DBG("%s\n", "WM_NCLBUTTONDOWN");
		break;
	case WM_CHAR:
		DBG("%s\n", "WM_CHAR");
		break;
	case WM_MOVE:
#ifdef _DEBUG
		DBG("%s\n", "WM_MOVE");
#endif
		break;
	case WM_SIZE:
#ifdef _DEBUG
		DBG("%s\n", "WM_SIZE");
#endif
		GetClientRect(hwnd, &drawing->DC_Dimensions);
		CalcGameToWindowDimensions(wnd_ctx);
		break;
	}

	return DefWindowProcW(hwnd, message, wparam, lparam);
}

HWND gdi_radar_get_hwnd(struct gdi_radar_context * const ctx)
{
	return ctx->myDrawWnd;
}

struct gdi_radar_context * const
	gdi_radar_configure(struct gdi_radar_config const * const cfg,
		HINSTANCE hInst)
{
	struct gdi_radar_context * result = new gdi_radar_context;
	if (!result)
	{
		return NULL;
	}
	ZeroMemory(result, sizeof(*result));

	/* config params */
	result->className = _wcsdup(cfg->className);
	result->windowName = _wcsdup(cfg->windowName);
	result->minimumUpdateTime = cfg->minimumUpdateTime;
	result->maximumRedrawFails = cfg->maximumRedrawFails;
	result->reservedEntities = cfg->reservedEntities;
	result->entities.reserve(result->reservedEntities);
	result->drawAngles = cfg->drawAngles;

	/* other */
	result->wc.hbrBackground = CreateSolidBrush(RGB(0, 0, 0));
	result->wc.hCursor = LoadCursor(hInst, IDC_ARROW);
	result->wc.hIcon = LoadIcon(hInst, IDI_APPLICATION);
	result->wc.hInstance = hInst;
	result->wc.lpfnWndProc = WndProc;
	result->wc.lpszClassName = result->className;
	result->wc.style = CS_HREDRAW | CS_VREDRAW;
	result->GameMapWidth = INVALID_MAP_VALUE;
	result->GameMapHeight = INVALID_MAP_VALUE;

	return result;
}

bool gdi_radar_init(struct gdi_radar_context * const ctx)
{
	if (!ctx)
	{
		return false;
	}

	if (ctx->GameMapWidth == INVALID_MAP_VALUE ||
		ctx->GameMapHeight == INVALID_MAP_VALUE)
	{
		DBG("%s\n", "Invalid game map dimensions!");
		return false;
	}

	UnregisterClassW(ctx->className, ctx->wc.hInstance);
	ctx->classAtom = RegisterClassW(&ctx->wc);
	if (!ctx->classAtom)
	{
		DBG("Register window class failed with 0x%X!\n", GetLastError());
		return false;
	}

	ctx->myDrawWnd = CreateWindowW(ctx->className, ctx->windowName,
		WS_OVERLAPPEDWINDOW | WS_THICKFRAME | WS_EX_LAYERED | WS_VISIBLE |
		WS_EX_TOPMOST | WS_EX_TOOLWINDOW | WS_MAXIMIZEBOX | WS_SIZEBOX,
		50, 50, 640, 480,
		NULL, NULL, ctx->wc.hInstance, ctx);
	if (!ctx->myDrawWnd)
	{
		DBG("%s\n", "Create window failed!");
		return false;
	}
	if (!ShowWindow(ctx->myDrawWnd, SW_SHOWNORMAL))
	{
		DBG("%s\n", "Show window failed!");
	}
	if (!UpdateWindow(ctx->myDrawWnd))
	{
		DBG("%s\n", "Update window failed!");
		return false;
	}

	ctx->lastTimeUpdated = clock();
	return true;
}

static void gdi_radar_check_entity_bounds(struct gdi_radar_context * const ctx,
	struct entity * const ent)
{
	if (ent->pos[0] < 0)
	{
		ent->pos[0] = 0;
	}
	if (ent->pos[0] > ctx->GameMapWidth)
	{
		ent->pos[0] = (int)ctx->GameMapWidth;
	}
	if (ent->pos[1] < 0)
	{
		ent->pos[1] = 0;
	}
	if (ent->pos[1] > ctx->GameMapHeight)
	{
		ent->pos[1] = (int)ctx->GameMapHeight;
	}
}

void gdi_radar_add_entity(struct gdi_radar_context * const ctx,
	struct entity * const ent)
{
	if (!ctx)
	{
		return;
	}

	gdi_radar_check_entity_bounds(ctx, ent);
	ctx->entities.push_back(*ent);
}

void gdi_radar_set_entity(struct gdi_radar_context * const ctx, size_t i,
	struct entity * const ent)
{
	if (!ctx)
	{
		return;
	}

	struct entity& found_ent = ctx->entities.at(i);
	gdi_radar_check_entity_bounds(ctx, ent);
	found_ent = *ent;
}

void gdi_radar_clear_entities(struct gdi_radar_context * const ctx)
{
	if (!ctx)
	{
		return;
	}

	ctx->entities.clear();
}

static bool gdi_radar_is_redraw_necessary(struct gdi_radar_context * const ctx,
	double * cpu_time_used)
{
	clock_t end = clock();

	*cpu_time_used = ((double)(end - ctx->lastTimeUpdated)) / CLOCKS_PER_SEC;

	return *cpu_time_used > ctx->minimumUpdateTime;
}

bool gdi_radar_check_if_redraw_necessary(struct gdi_radar_context * const ctx)
{
	double cpu_time_used;

	if (!ctx)
	{
		return false;
	}

	return gdi_radar_is_redraw_necessary(ctx, &cpu_time_used);
}

bool gdi_radar_redraw_if_necessary(struct gdi_radar_context * const ctx)
{
	double cpu_time_used;

	if (!ctx)
	{
		return false;
	}

	if (gdi_radar_is_redraw_necessary(ctx, &cpu_time_used)) {
		if (cpu_time_used > ctx->minimumUpdateTime * ctx->maximumRedrawFails) {
			DBG("ERROR: Redraw failed for the at least %llu times!\n",
				ctx->maximumRedrawFails);
			return false;
		}
		RedrawWindow(ctx->myDrawWnd, NULL, NULL, RDW_ERASE | RDW_INVALIDATE | RDW_ALLCHILDREN);
	}

#ifdef _DEBUG
	DBG("Time past after last update: %lf\n", cpu_time_used);
#endif

	return true;
}

void gdi_radar_set_game_dimensions(struct gdi_radar_context * const ctx,
	UINT64 GameMapWidth, UINT64 GameMapHeight, bool StickToBottom)
{
	if (!ctx)
	{
		return;
	}

	ctx->GameMapWidth = GameMapWidth;
	ctx->GameMapHeight = GameMapHeight;
	ctx->drawing.StickToBottom = StickToBottom;
}

static inline LRESULT
gdi_process_events(struct gdi_radar_context * const ctx, MSG * const msg)
{
	TranslateMessage(msg);
	return DispatchMessageW(msg);
}

LRESULT gdi_radar_process_window_events_blocking(struct gdi_radar_context * const ctx)
{
	MSG msg;

	if (!ctx)
	{
		return 0;
	}

	while (GetMessageW(&msg, ctx->myDrawWnd, 0, 0))
	{
		gdi_process_events(ctx, &msg);
	}
	return 1;
}

LRESULT gdi_radar_process_window_events_nonblocking(struct gdi_radar_context * const ctx)
{
	MSG msg;

	if (!ctx)
	{
		return 0;
	}

	while (PeekMessageW(&msg, ctx->myDrawWnd, 0, 0, PM_REMOVE))
	{
		gdi_process_events(ctx, &msg);
	}
	return 1;
}

void gdi_radar_close_and_cleanup(struct gdi_radar_context ** const ctx)
{
	if (!ctx || !*ctx)
	{
		return;
	}

	CloseWindow((*ctx)->myDrawWnd);
	DestroyWindow((*ctx)->myDrawWnd);
	CleanupWindowMemory(*ctx);

	*ctx = NULL;
}