]>
Commit | Line | Data |
---|---|---|
43c742d0 | 1 | /////////////////////////////////////////////////////////////////////////////// |
8b089c5e JS |
2 | // Name: cube.cpp |
3 | // Purpose: wxGLCanvas demo program | |
4 | // Author: Julian Smart | |
43c742d0 | 5 | // Modified by: Vadim Zeitlin to use new wxGLCanvas API (2007-04-09) |
8b089c5e JS |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
f4a7108f | 9 | // Licence: wxWindows licence |
43c742d0 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
8b089c5e | 19 | |
8b089c5e JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/wx.h" | |
29 | #endif | |
30 | ||
806e2f15 VZ |
31 | #if !wxUSE_GLCANVAS |
32 | #error "OpenGL required: set wxUSE_GLCANVAS to 1 and rebuild the library" | |
33 | #endif | |
34 | ||
8b089c5e | 35 | #include "cube.h" |
5cf036d0 | 36 | |
43c742d0 VZ |
37 | #if !defined(__WXMSW__) && !defined(__WXPM__) |
38 | #include "../../sample.xpm" | |
39 | #endif | |
8b089c5e | 40 | |
e4545e01 VZ |
41 | // ---------------------------------------------------------------------------- |
42 | // constants | |
43 | // ---------------------------------------------------------------------------- | |
44 | ||
45 | // control ids | |
46 | enum | |
47 | { | |
48 | SpinTimer = wxID_HIGHEST + 1 | |
49 | }; | |
50 | ||
378a3872 VZ |
51 | // ---------------------------------------------------------------------------- |
52 | // helper functions | |
53 | // ---------------------------------------------------------------------------- | |
54 | ||
55 | static void CheckGLError() | |
56 | { | |
57 | GLenum errLast = GL_NO_ERROR; | |
58 | ||
59 | for ( ;; ) | |
60 | { | |
61 | GLenum err = glGetError(); | |
62 | if ( err == GL_NO_ERROR ) | |
63 | return; | |
64 | ||
65 | // normally the error is reset by the call to glGetError() but if | |
66 | // glGetError() itself returns an error, we risk looping forever here | |
67 | // so check that we get a different error than the last time | |
68 | if ( err == errLast ) | |
69 | { | |
9a83f860 | 70 | wxLogError(wxT("OpenGL error state couldn't be reset.")); |
378a3872 VZ |
71 | return; |
72 | } | |
73 | ||
74 | errLast = err; | |
75 | ||
9a83f860 | 76 | wxLogError(wxT("OpenGL error %d"), err); |
378a3872 VZ |
77 | } |
78 | } | |
79 | ||
80 | // function to draw the texture for cube faces | |
81 | static wxImage DrawDice(int size, unsigned num) | |
82 | { | |
9a83f860 | 83 | wxASSERT_MSG( num >= 1 && num <= 6, wxT("invalid dice index") ); |
378a3872 VZ |
84 | |
85 | const int dot = size/16; // radius of a single dot | |
86 | const int gap = 5*size/32; // gap between dots | |
87 | ||
88 | wxBitmap bmp(size, size); | |
89 | wxMemoryDC dc; | |
90 | dc.SelectObject(bmp); | |
91 | dc.SetBackground(*wxWHITE_BRUSH); | |
92 | dc.Clear(); | |
93 | dc.SetBrush(*wxBLACK_BRUSH); | |
94 | ||
95 | // the upper left and lower right points | |
96 | if ( num != 1 ) | |
97 | { | |
98 | dc.DrawCircle(gap + dot, gap + dot, dot); | |
99 | dc.DrawCircle(size - gap - dot, size - gap - dot, dot); | |
100 | } | |
101 | ||
102 | // draw the central point for odd dices | |
103 | if ( num % 2 ) | |
104 | { | |
105 | dc.DrawCircle(size/2, size/2, dot); | |
106 | } | |
107 | ||
108 | // the upper right and lower left points | |
109 | if ( num > 3 ) | |
110 | { | |
111 | dc.DrawCircle(size - gap - dot, gap + dot, dot); | |
112 | dc.DrawCircle(gap + dot, size - gap - dot, dot); | |
113 | } | |
114 | ||
115 | // finally those 2 are only for the last dice | |
116 | if ( num == 6 ) | |
117 | { | |
118 | dc.DrawCircle(gap + dot, size/2, dot); | |
119 | dc.DrawCircle(size - gap - dot, size/2, dot); | |
120 | } | |
121 | ||
122 | dc.SelectObject(wxNullBitmap); | |
123 | ||
124 | return bmp.ConvertToImage(); | |
125 | } | |
126 | ||
43c742d0 VZ |
127 | // ============================================================================ |
128 | // implementation | |
129 | // ============================================================================ | |
8b089c5e | 130 | |
43c742d0 | 131 | // ---------------------------------------------------------------------------- |
50f5d508 | 132 | // TestGLContext |
43c742d0 | 133 | // ---------------------------------------------------------------------------- |
8b089c5e | 134 | |
50f5d508 VZ |
135 | TestGLContext::TestGLContext(wxGLCanvas *canvas) |
136 | : wxGLContext(canvas) | |
8b089c5e | 137 | { |
378a3872 | 138 | SetCurrent(*canvas); |
8b089c5e | 139 | |
378a3872 | 140 | // set up the parameters we want to use |
8b089c5e JS |
141 | glEnable(GL_DEPTH_TEST); |
142 | glEnable(GL_LIGHTING); | |
143 | glEnable(GL_LIGHT0); | |
378a3872 | 144 | glEnable(GL_TEXTURE_2D); |
8b089c5e | 145 | |
451c13c8 | 146 | // add slightly more light, the default lighting is rather dark |
bc521497 VZ |
147 | GLfloat ambient[] = { 0.5, 0.5, 0.5, 0.5 }; |
148 | glLightfv(GL_LIGHT0, GL_AMBIENT, ambient); | |
149 | ||
378a3872 VZ |
150 | // set viewing projection |
151 | glMatrixMode(GL_PROJECTION); | |
152 | glLoadIdentity(); | |
153 | glFrustum(-0.5f, 0.5f, -0.5f, 0.5f, 1.0f, 3.0f); | |
8b089c5e | 154 | |
378a3872 VZ |
155 | // create the textures to use for cube sides: they will be reused by all |
156 | // canvases (which is probably not critical in the case of simple textures | |
157 | // we use here but could be really important for a real application where | |
158 | // each texture could take many megabytes) | |
159 | glGenTextures(WXSIZEOF(m_textures), m_textures); | |
8b089c5e | 160 | |
378a3872 VZ |
161 | for ( unsigned i = 0; i < WXSIZEOF(m_textures); i++ ) |
162 | { | |
163 | glBindTexture(GL_TEXTURE_2D, m_textures[i]); | |
8b089c5e | 164 | |
378a3872 VZ |
165 | glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); |
166 | glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); | |
167 | glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); | |
168 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); | |
169 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); | |
f4a7108f | 170 | |
378a3872 | 171 | const wxImage img(DrawDice(256, i + 1)); |
8b089c5e | 172 | |
378a3872 | 173 | glPixelStorei(GL_UNPACK_ALIGNMENT, 1); |
ce00f59b | 174 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, img.GetWidth(), img.GetHeight(), |
378a3872 VZ |
175 | 0, GL_RGB, GL_UNSIGNED_BYTE, img.GetData()); |
176 | } | |
8b089c5e | 177 | |
378a3872 | 178 | CheckGLError(); |
8b089c5e JS |
179 | } |
180 | ||
50f5d508 VZ |
181 | void TestGLContext::DrawRotatedCube(float xangle, float yangle) |
182 | { | |
50f5d508 VZ |
183 | glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); |
184 | ||
185 | glMatrixMode(GL_MODELVIEW); | |
186 | glLoadIdentity(); | |
187 | glTranslatef(0.0f, 0.0f, -2.0f); | |
188 | glRotatef(xangle, 1.0f, 0.0f, 0.0f); | |
189 | glRotatef(yangle, 0.0f, 1.0f, 0.0f); | |
190 | ||
378a3872 VZ |
191 | // draw six faces of a cube of size 1 centered at (0, 0, 0) |
192 | glBindTexture(GL_TEXTURE_2D, m_textures[0]); | |
193 | glBegin(GL_QUADS); | |
194 | glNormal3f( 0.0f, 0.0f, 1.0f); | |
195 | glTexCoord2f(0, 0); glVertex3f( 0.5f, 0.5f, 0.5f); | |
196 | glTexCoord2f(1, 0); glVertex3f(-0.5f, 0.5f, 0.5f); | |
197 | glTexCoord2f(1, 1); glVertex3f(-0.5f,-0.5f, 0.5f); | |
198 | glTexCoord2f(0, 1); glVertex3f( 0.5f,-0.5f, 0.5f); | |
199 | glEnd(); | |
200 | ||
201 | glBindTexture(GL_TEXTURE_2D, m_textures[1]); | |
202 | glBegin(GL_QUADS); | |
203 | glNormal3f( 0.0f, 0.0f,-1.0f); | |
204 | glTexCoord2f(0, 0); glVertex3f(-0.5f,-0.5f,-0.5f); | |
205 | glTexCoord2f(1, 0); glVertex3f(-0.5f, 0.5f,-0.5f); | |
206 | glTexCoord2f(1, 1); glVertex3f( 0.5f, 0.5f,-0.5f); | |
207 | glTexCoord2f(0, 1); glVertex3f( 0.5f,-0.5f,-0.5f); | |
208 | glEnd(); | |
209 | ||
210 | glBindTexture(GL_TEXTURE_2D, m_textures[2]); | |
211 | glBegin(GL_QUADS); | |
212 | glNormal3f( 0.0f, 1.0f, 0.0f); | |
213 | glTexCoord2f(0, 0); glVertex3f( 0.5f, 0.5f, 0.5f); | |
214 | glTexCoord2f(1, 0); glVertex3f( 0.5f, 0.5f,-0.5f); | |
215 | glTexCoord2f(1, 1); glVertex3f(-0.5f, 0.5f,-0.5f); | |
216 | glTexCoord2f(0, 1); glVertex3f(-0.5f, 0.5f, 0.5f); | |
217 | glEnd(); | |
218 | ||
219 | glBindTexture(GL_TEXTURE_2D, m_textures[3]); | |
220 | glBegin(GL_QUADS); | |
221 | glNormal3f( 0.0f,-1.0f, 0.0f); | |
222 | glTexCoord2f(0, 0); glVertex3f(-0.5f,-0.5f,-0.5f); | |
223 | glTexCoord2f(1, 0); glVertex3f( 0.5f,-0.5f,-0.5f); | |
224 | glTexCoord2f(1, 1); glVertex3f( 0.5f,-0.5f, 0.5f); | |
225 | glTexCoord2f(0, 1); glVertex3f(-0.5f,-0.5f, 0.5f); | |
226 | glEnd(); | |
227 | ||
228 | glBindTexture(GL_TEXTURE_2D, m_textures[4]); | |
229 | glBegin(GL_QUADS); | |
230 | glNormal3f( 1.0f, 0.0f, 0.0f); | |
231 | glTexCoord2f(0, 0); glVertex3f( 0.5f, 0.5f, 0.5f); | |
232 | glTexCoord2f(1, 0); glVertex3f( 0.5f,-0.5f, 0.5f); | |
233 | glTexCoord2f(1, 1); glVertex3f( 0.5f,-0.5f,-0.5f); | |
234 | glTexCoord2f(0, 1); glVertex3f( 0.5f, 0.5f,-0.5f); | |
235 | glEnd(); | |
236 | ||
237 | glBindTexture(GL_TEXTURE_2D, m_textures[5]); | |
238 | glBegin(GL_QUADS); | |
239 | glNormal3f(-1.0f, 0.0f, 0.0f); | |
240 | glTexCoord2f(0, 0); glVertex3f(-0.5f,-0.5f,-0.5f); | |
241 | glTexCoord2f(1, 0); glVertex3f(-0.5f,-0.5f, 0.5f); | |
242 | glTexCoord2f(1, 1); glVertex3f(-0.5f, 0.5f, 0.5f); | |
243 | glTexCoord2f(0, 1); glVertex3f(-0.5f, 0.5f,-0.5f); | |
244 | glEnd(); | |
50f5d508 VZ |
245 | |
246 | glFlush(); | |
378a3872 VZ |
247 | |
248 | CheckGLError(); | |
50f5d508 VZ |
249 | } |
250 | ||
451c13c8 VZ |
251 | |
252 | // ---------------------------------------------------------------------------- | |
253 | // MyApp: the application object | |
254 | // ---------------------------------------------------------------------------- | |
255 | ||
256 | IMPLEMENT_APP(MyApp) | |
257 | ||
258 | bool MyApp::OnInit() | |
259 | { | |
260 | if ( !wxApp::OnInit() ) | |
261 | return false; | |
262 | ||
263 | new MyFrame(); | |
264 | ||
265 | return true; | |
266 | } | |
267 | ||
268 | int MyApp::OnExit() | |
269 | { | |
270 | delete m_glContext; | |
271 | ||
272 | return wxApp::OnExit(); | |
273 | } | |
274 | ||
275 | TestGLContext& MyApp::GetContext(wxGLCanvas *canvas) | |
276 | { | |
277 | if ( !m_glContext ) | |
278 | { | |
279 | // Create the OpenGL context for the first window which needs it: | |
280 | // subsequently created windows will all share the same context. | |
281 | m_glContext = new TestGLContext(canvas); | |
282 | } | |
283 | ||
284 | m_glContext->SetCurrent(*canvas); | |
285 | ||
286 | return *m_glContext; | |
287 | } | |
288 | ||
50f5d508 VZ |
289 | // ---------------------------------------------------------------------------- |
290 | // TestGLCanvas | |
291 | // ---------------------------------------------------------------------------- | |
292 | ||
293 | BEGIN_EVENT_TABLE(TestGLCanvas, wxGLCanvas) | |
50f5d508 | 294 | EVT_PAINT(TestGLCanvas::OnPaint) |
50f5d508 | 295 | EVT_KEY_DOWN(TestGLCanvas::OnKeyDown) |
e4545e01 | 296 | EVT_TIMER(SpinTimer, TestGLCanvas::OnSpinTimer) |
50f5d508 VZ |
297 | END_EVENT_TABLE() |
298 | ||
299 | TestGLCanvas::TestGLCanvas(wxWindow *parent) | |
451c13c8 VZ |
300 | // With perspective OpenGL graphics, the wxFULL_REPAINT_ON_RESIZE style |
301 | // flag should always be set, because even making the canvas smaller should | |
302 | // be followed by a paint event that updates the entire canvas with new | |
303 | // viewport settings. | |
304 | : wxGLCanvas(parent, wxID_ANY, NULL /* attribs */, | |
305 | wxDefaultPosition, wxDefaultSize, | |
e4545e01 VZ |
306 | wxFULL_REPAINT_ON_RESIZE), |
307 | m_xangle(30.0), | |
308 | m_yangle(30.0), | |
309 | m_spinTimer(this,SpinTimer) | |
50f5d508 | 310 | { |
50f5d508 VZ |
311 | } |
312 | ||
313 | void TestGLCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) | |
314 | { | |
451c13c8 | 315 | // This is required even though dc is not used otherwise. |
50f5d508 VZ |
316 | wxPaintDC dc(this); |
317 | ||
451c13c8 VZ |
318 | // Set the OpenGL viewport according to the client size of this canvas. |
319 | // This is done here rather than in a wxSizeEvent handler because our | |
320 | // OpenGL rendering context (and thus viewport setting) is used with | |
321 | // multiple canvases: If we updated the viewport in the wxSizeEvent | |
322 | // handler, changing the size of one canvas causes a viewport setting that | |
323 | // is wrong when next another canvas is repainted. | |
324 | const wxSize ClientSize = GetClientSize(); | |
50f5d508 | 325 | |
97f85100 | 326 | TestGLContext& canvas = wxGetApp().GetContext(this); |
451c13c8 | 327 | glViewport(0, 0, ClientSize.x, ClientSize.y); |
50f5d508 | 328 | |
451c13c8 | 329 | // Render the graphics and swap the buffers. |
97f85100 | 330 | canvas.DrawRotatedCube(m_xangle, m_yangle); |
451c13c8 | 331 | SwapBuffers(); |
50f5d508 VZ |
332 | } |
333 | ||
e4545e01 | 334 | void TestGLCanvas::Spin(float xSpin, float ySpin) |
8b089c5e | 335 | { |
e4545e01 VZ |
336 | m_xangle += xSpin; |
337 | m_yangle += ySpin; | |
8b089c5e | 338 | |
e4545e01 VZ |
339 | Refresh(false); |
340 | } | |
341 | ||
342 | void TestGLCanvas::OnKeyDown(wxKeyEvent& event) | |
343 | { | |
344 | float angle = 5.0; | |
f4a7108f | 345 | |
43c742d0 | 346 | switch ( event.GetKeyCode() ) |
8b089c5e | 347 | { |
43c742d0 | 348 | case WXK_RIGHT: |
e4545e01 VZ |
349 | Spin( 0.0, -angle ); |
350 | break; | |
43c742d0 VZ |
351 | |
352 | case WXK_LEFT: | |
e4545e01 | 353 | Spin( 0.0, angle ); |
43c742d0 VZ |
354 | break; |
355 | ||
356 | case WXK_DOWN: | |
e4545e01 VZ |
357 | Spin( -angle, 0.0 ); |
358 | break; | |
43c742d0 VZ |
359 | |
360 | case WXK_UP: | |
e4545e01 VZ |
361 | Spin( angle, 0.0 ); |
362 | break; | |
363 | ||
364 | case WXK_SPACE: | |
365 | if ( m_spinTimer.IsRunning() ) | |
366 | m_spinTimer.Stop(); | |
367 | else | |
368 | m_spinTimer.Start( 25 ); | |
43c742d0 VZ |
369 | break; |
370 | ||
371 | default: | |
372 | event.Skip(); | |
373 | return; | |
8b089c5e | 374 | } |
e4545e01 | 375 | } |
8b089c5e | 376 | |
e4545e01 VZ |
377 | void TestGLCanvas::OnSpinTimer(wxTimerEvent& WXUNUSED(event)) |
378 | { | |
379 | Spin(0.0, 4.0); | |
43c742d0 | 380 | } |
8b089c5e | 381 | |
451c13c8 | 382 | |
43c742d0 VZ |
383 | // ---------------------------------------------------------------------------- |
384 | // MyFrame: main application window | |
385 | // ---------------------------------------------------------------------------- | |
8b089c5e JS |
386 | |
387 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
43c742d0 | 388 | EVT_MENU(wxID_NEW, MyFrame::OnNewWindow) |
1f602af6 | 389 | EVT_MENU(wxID_CLOSE, MyFrame::OnClose) |
8b089c5e JS |
390 | END_EVENT_TABLE() |
391 | ||
43c742d0 | 392 | MyFrame::MyFrame() |
9a83f860 | 393 | : wxFrame(NULL, wxID_ANY, wxT("wxWidgets OpenGL Cube Sample")) |
8b089c5e | 394 | { |
50f5d508 | 395 | new TestGLCanvas(this); |
5cf036d0 | 396 | |
43c742d0 | 397 | SetIcon(wxICON(sample)); |
5cf036d0 | 398 | |
5cf036d0 | 399 | // Make a menubar |
1f602af6 VZ |
400 | wxMenu *menu = new wxMenu; |
401 | menu->Append(wxID_NEW); | |
402 | menu->AppendSeparator(); | |
403 | menu->Append(wxID_CLOSE); | |
5cf036d0 | 404 | wxMenuBar *menuBar = new wxMenuBar; |
9a83f860 | 405 | menuBar->Append(menu, wxT("&Cube")); |
8b089c5e | 406 | |
43c742d0 | 407 | SetMenuBar(menuBar); |
5cf036d0 | 408 | |
1f602af6 VZ |
409 | CreateStatusBar(); |
410 | ||
50f5d508 | 411 | SetClientSize(400, 400); |
43c742d0 | 412 | Show(); |
3f20f7d8 VZ |
413 | |
414 | // test IsDisplaySupported() function: | |
415 | static const int attribs[] = { WX_GL_RGBA, WX_GL_DOUBLEBUFFER, 0 }; | |
416 | wxLogStatus("Double-buffered display %s supported", | |
417 | wxGLCanvas::IsDisplaySupported(attribs) ? "is" : "not"); | |
8b089c5e JS |
418 | } |
419 | ||
1f602af6 | 420 | void MyFrame::OnClose(wxCommandEvent& WXUNUSED(event)) |
8b089c5e | 421 | { |
43c742d0 VZ |
422 | // true is to force the frame to close |
423 | Close(true); | |
8b089c5e | 424 | } |
2db98bf5 | 425 | |
43c742d0 | 426 | void MyFrame::OnNewWindow( wxCommandEvent& WXUNUSED(event) ) |
8b089c5e | 427 | { |
451c13c8 | 428 | new MyFrame(); |
8b089c5e JS |
429 | } |
430 |