-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
52 lines (44 loc) · 1.15 KB
/
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
49
50
51
52
#include "Menu.h"
#include "DeviceHandler.h"
#include "Timer.h"
#include "DIInputHandler.h"
#include <iostream>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
int wndWidth = 1280;
int wndHeight = 720;
DeviceHandler* deviceHandler = new DeviceHandler( hInstance, wndWidth, wndHeight);
Timer* timer = new Timer();
DIInputHandler* inputHandler = new DIInputHandler( &hInstance, deviceHandler->getHWnd());
//inputHandler->i
MenuShit* menu = new MenuShit();
menu->init(inputHandler, timer, wndWidth, wndHeight,
deviceHandler->getDevice(), deviceHandler->getEffect(), 0, 0 );
menu->setDocument("../menu/assets/demo.rml");
//exit(0); //HACK: DEBUG: profiling
MSG msg = {0};
timer->reset();
while(msg.message != WM_QUIT)
{
if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
else
{
timer->tick();
inputHandler->update();
menu->update(timer->getDt());
deviceHandler->beginDrawing();
menu->draw();
deviceHandler->presentFrame();
}
}
//return msg.wParam;
delete menu;
delete inputHandler;
delete timer;
delete deviceHandler;
}