-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cpp
48 lines (39 loc) · 913 Bytes
/
Main.cpp
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
#include "Application.h"
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
Application * theApp = new Application();
if (FAILED(theApp->Initialise(hInstance, nCmdShow)))
{
return -1;
}
// Main message loop
MSG msg = {0};
while (WM_QUIT != msg.message)
{
if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
{
bool handled = false;
if (msg.message >= WM_KEYFIRST && msg.message <= WM_KEYLAST)
{
handled = theApp->HandleKeyboard(msg);
}
else if (WM_QUIT == msg.message)
break;
if (!handled)
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
else
{
theApp->Tick();
theApp->Draw();
}
}
delete theApp;
theApp = nullptr;
return (int) msg.wParam;
}