-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglutwrapper.cpp
More file actions
211 lines (173 loc) · 4.2 KB
/
glutwrapper.cpp
File metadata and controls
211 lines (173 loc) · 4.2 KB
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
#include <iostream>
#include <glutwrapper.h>
#include <handlerbase.h>
using namespace std;
namespace EZGraphics {
/* -------------------------------------- */
EventHandlerBase *GLUTwrapper::handler = NULL;
int GLUTwrapper::windowID = -1;
int GLUTwrapper::buttonDown = -1;
/* -------------------------------------- */
void GLUTwrapper::activeMotion ( int mx, int my )
{
switch(buttonDown)
{
case GLUT_RIGHT_BUTTON:
handler->motionWithRightButtonDown(mx,my);
break;
case GLUT_LEFT_BUTTON:
handler->motionWithLeftButtonDown(mx,my);
break;
case GLUT_MIDDLE_BUTTON:
handler->motionWithMiddleButtonDown(mx,my);
break;
}
}
/* -------------------------------------- */
void GLUTwrapper::draw()
{
glutSetWindow(windowID);
handler->draw();
glutSwapBuffers();
}
/* -------------------------------------- */
void GLUTwrapper::mouseButton ( int btn, int state, int mx, int my )
{
switch(btn)
{
case GLUT_LEFT_BUTTON:
if(state==GLUT_DOWN)
{
handler->leftMouseButtonDown(mx,my);
buttonDown = GLUT_LEFT_BUTTON;
}
if (state==GLUT_UP)
{
if (buttonDown==GLUT_LEFT_BUTTON)
handler->leftMouseButtonUp(mx,my);
buttonDown = -1;
}
break;
case GLUT_MIDDLE_BUTTON:
if(state==GLUT_DOWN)
{
handler->middleMouseButtonDown(mx,my);
buttonDown = GLUT_MIDDLE_BUTTON;
}
if (state==GLUT_UP)
{
if (buttonDown==GLUT_MIDDLE_BUTTON)
handler->middleMouseButtonUp(mx,my);
buttonDown = -1;
}
break;
case GLUT_RIGHT_BUTTON:
if(state==GLUT_DOWN)
{
handler->rightMouseButtonDown(mx,my);
buttonDown = GLUT_RIGHT_BUTTON;
}
if (state==GLUT_UP)
{
if (buttonDown==GLUT_RIGHT_BUTTON)
handler->rightMouseButtonUp(mx,my);
buttonDown = -1;
}
break;
}
}
/* -------------------------------------- */
void GLUTwrapper::keyPressed ( unsigned char key, int x, int y )
{
handler->keyPressed(key,x,y);
}
/* -------------------------------------- */
void GLUTwrapper::resize ( int sizex, int sizey )
{
handler->resize(sizex,sizey);
}
/* -------------------------------------- */
void GLUTwrapper::idleFunction()
{
handler->idleFunction();
}
/* -------------------------------------- */
void GLUTwrapper::passiveMotion ( int mx, int my )
{
handler->passiveMotion(mx,my);
}
/* -------------------------------------- */
void GLUTwrapper::visibilityFunction ( int state )
{
switch(state)
{
case GLUT_VISIBLE:
handler->windowVisible();
break;
case GLUT_NOT_VISIBLE:
handler->windowInvisible();
break;
}
}
/* -------------------------------------- */
void GLUTwrapper::specialFunction ( int key, int x, int y )
{
handler->specialKeyFunction(key,x,y);
}
/* -------------------------------------- */
void GLUTwrapper::entryFunction ( int state )
{
switch(state)
{
case GLUT_ENTERED:
handler->mouseCursorEnters();
break;
case GLUT_LEFT:
handler->mouseCursorLeaves();
break;
}
}
/* -------------------------------------- */
GLUTwrapper::GLUTwrapper ( EventHandlerBase *h )
{
if (handler)
{
std::cerr << "Only one instance of the GLUTwrapper class allowed!" << std::endl;
std::exit(1);
}
int a = h->getArgc();
glutInit(&a,h->getArgv());
glutInitContextVersion (3, 3);
glutInitContextFlags (GLUT_CORE_PROFILE | GLUT_DEBUG);
glutInitWindowSize(h->getWindowWidth(),h->getWindowHeight());
glutInitWindowPosition(10,10);
glutInitDisplayMode(h->getWindowMode());
windowID = glutCreateWindow("A window");
glewExperimental=GL_TRUE;
GLenum err=glewInit();
if(err!=GLEW_OK)
{
//Problem: glewInit failed, something is seriously wrong.
cout<<"glewInit failed, aborting."<<endl;
exit(1);
}
handler = h;
glutMouseFunc(mouseButton);
glutMotionFunc(activeMotion);
glutPassiveMotionFunc(passiveMotion);
glutIdleFunc(idleFunction);
glutDisplayFunc(draw);
glutVisibilityFunc(visibilityFunction);
glutSpecialFunc(specialFunction);
glutEntryFunc(entryFunction);
glutKeyboardFunc(keyPressed);
glutReshapeFunc(resize);
h->initializeGL();
}
/* -------------------------------------- */
void GLUTwrapper::run()
{
glutMainLoop();
}
/* -------------------------------------- */
};