-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGLUTMain.cpp
92 lines (78 loc) · 2.14 KB
/
GLUTMain.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
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
// Copyright 2015 Kelvin Chandra, Software Laboratory Center, Binus University. All Rights Reserved.
#include "Globals.h"
#include "cGame.h"
//Delete console
//#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")
cGame *Game = &(cGame::getInstance());
void AppReshape(int w, int h)
{
Game->Reshape(w, h); //delegate method
}
void AppRender()
{
Game->Render();
}
void AppKeyboard(unsigned char key, int x, int y)
{
Game->ReadKeyboard(key, x, y, true);
}
void AppKeyboardUp(unsigned char key, int x, int y)
{
Game->ReadKeyboard(key, x, y, false);
}
void AppSpecialKeys(int key, int x, int y)
{
Game->ReadSpecialKeyboard(key, x, y, true);
}
void AppSpecialKeysUp(int key, int x, int y)
{
Game->ReadSpecialKeyboard(key, x, y, false);
}
void AppMouse(int button, int state, int x, int y)
{
Game->ReadMouse(button, state, x, y);
}
void AppIdle()
{
if (!Game->Loop()) exit(0);
}
void main(int argc, char** argv)
{
int res_x, res_y, pos_x, pos_y;
//GLUT initialization
glutInit(&argc, argv);
//RGBA with double buffer
glutInitDisplayMode(GLUT_RGBA | GLUT_ALPHA | GLUT_DOUBLE | GLUT_DEPTH);
//Create centered window
res_x = glutGet(GLUT_SCREEN_WIDTH);
res_y = glutGet(GLUT_SCREEN_HEIGHT);
pos_x = (res_x / 2) - (GAME_WIDTH /2);
pos_y = (res_y / 2) - (GAME_HEIGHT /2);
glutInitWindowPosition(pos_x, pos_y);
glutInitWindowSize(GAME_WIDTH, GAME_HEIGHT);
glutCreateWindow("DDemonstar");
/*glutGameModeString("800x600:32");
glutEnterGameMode();*/
//Make the default cursor disappear
//glutSetCursor(GLUT_CURSOR_NONE);
//Register callback functions
glutReshapeFunc(AppReshape);
glutDisplayFunc(AppRender);
glutKeyboardFunc(AppKeyboard);
glutKeyboardUpFunc(AppKeyboardUp);
glutSpecialFunc(AppSpecialKeys);
glutSpecialUpFunc(AppSpecialKeysUp);
glutMouseFunc(AppMouse);
glutIdleFunc(AppIdle);
//GLEW initialization
GLint GlewInitResult = glewInit();
if (GLEW_OK != GlewInitResult)
{
printf("ERROR: %s\n", glewGetErrorString(GlewInitResult));
exit(EXIT_FAILURE);
}
//Game initializations
Game->Init();
//Application loop
glutMainLoop();
}