]>
git.saurik.com Git - wxWidgets.git/blob - samples/opengl/cube/cube.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGLCanvas demo program
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(__APPLE__)
13 #pragma implementation
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
32 #ifndef __WXMSW__ // for wxStopWatch, see remark below
33 #if defined(__WXMAC__) && !defined(__DARWIN__)
38 #include <sys/unistd.h>
41 #include <sys/timeb.h>
44 #define ID_NEW_WINDOW 10000
45 #define ID_DEF_ROTATE_LEFT_KEY 10001
46 #define ID_DEF_ROTATE_RIGHT_KEY 10002
48 /*----------------------------------------------------------
49 Control to get a keycode
50 ----------------------------------------------------------*/
51 class ScanCodeCtrl
: public wxTextCtrl
54 ScanCodeCtrl( wxWindow
* parent
, wxWindowID id
, int code
,
55 const wxPoint
& pos
, const wxSize
& size
);
56 void OnChar( wxKeyEvent
& event
) { } /* do nothing */
57 void OnKeyDown(wxKeyEvent
& event
);
59 // any class wishing to process wxWindows events must use this macro
62 BEGIN_EVENT_TABLE( ScanCodeCtrl
, wxTextCtrl
)
63 EVT_CHAR( ScanCodeCtrl::OnChar
)
64 EVT_KEY_DOWN( ScanCodeCtrl::OnKeyDown
)
67 ScanCodeCtrl::ScanCodeCtrl( wxWindow
* parent
, wxWindowID id
, int code
,
68 const wxPoint
& pos
, const wxSize
& size
)
69 : wxTextCtrl( parent
, id
, wxEmptyString
, pos
, size
)
71 buf
.Printf( _T("0x%04x"), code
);
75 void ScanCodeCtrl::OnKeyDown( wxKeyEvent
& event
)
78 buf
.Printf( _T("0x%04x"), event
.GetKeyCode() );
82 /*------------------------------------------------------------------
83 Dialog for defining a keypress
84 -------------------------------------------------------------------*/
86 class ScanCodeDialog
: public wxDialog
89 ScanCodeDialog( wxWindow
* parent
, wxWindowID id
, const int code
,
90 const wxString
&descr
, const wxString
& title
);
93 ScanCodeCtrl
*m_ScanCode
;
94 wxTextCtrl
*m_Description
;
97 ScanCodeDialog::ScanCodeDialog( wxWindow
* parent
, wxWindowID id
,
98 const int code
, const wxString
&descr
, const wxString
& title
)
99 : wxDialog( parent
, id
, title
, wxPoint(-1, -1), wxSize(96*2,76*2) )
101 new wxStaticText( this, -1, _T("Scancode"), wxPoint(4*2,3*2),
103 m_ScanCode
= new ScanCodeCtrl( this, -1, code
, wxPoint(37*2,6*2),
106 new wxStaticText( this, -1, _T("Description"), wxPoint(4*2,24*2),
108 m_Description
= new wxTextCtrl( this, -1, descr
, wxPoint(37*2,27*2),
111 new wxButton( this, wxID_OK
, _T("Ok"), wxPoint(20*2,50*2), wxSize(20*2,13*2) );
112 new wxButton( this, wxID_CANCEL
, _T("Cancel"), wxPoint(44*2,50*2),
116 int ScanCodeDialog::GetValue()
119 wxString buf
= m_ScanCode
->GetValue();
120 wxSscanf( buf
.c_str(), _T("%i"), &code
);
124 /*----------------------------------------------------------------------
125 Utility function to get the elapsed time (in msec) since a given point
126 in time (in sec) (because current version of wxGetElapsedTime doesn´t
127 works right with glibc-2.1 and linux, at least for me)
128 -----------------------------------------------------------------------*/
129 unsigned long wxStopWatch( unsigned long *sec_base
)
131 unsigned long secs
,msec
;
133 #if defined(__WXMSW__)
138 #elif defined(__WXMAC__) && !defined(__DARWIN__)
139 wxLongLong tl
= wxGetLocalTimeMillis();
140 secs
= (unsigned long) (tl
.GetValue() / 1000);
141 msec
= (unsigned long) (tl
.GetValue() - secs
*1000);
143 // think every unice has gettimeofday
145 gettimeofday( &tv
, (struct timezone
*)NULL
);
147 msec
= tv
.tv_usec
/1000;
153 return( (secs
-*sec_base
)*1000 + msec
);
156 /*----------------------------------------------------------------
157 Implementation of Test-GLCanvas
158 -----------------------------------------------------------------*/
162 BEGIN_EVENT_TABLE(TestGLCanvas
, wxGLCanvas
)
163 EVT_SIZE(TestGLCanvas::OnSize
)
164 EVT_PAINT(TestGLCanvas::OnPaint
)
165 EVT_ERASE_BACKGROUND(TestGLCanvas::OnEraseBackground
)
166 EVT_KEY_DOWN( TestGLCanvas::OnKeyDown
)
167 EVT_KEY_UP( TestGLCanvas::OnKeyUp
)
168 EVT_ENTER_WINDOW( TestGLCanvas::OnEnterWindow
)
171 unsigned long TestGLCanvas::m_secbase
= 0;
172 int TestGLCanvas::m_TimeInitialized
= 0;
173 unsigned long TestGLCanvas::m_xsynct
;
174 unsigned long TestGLCanvas::m_gsynct
;
176 TestGLCanvas::TestGLCanvas(wxWindow
*parent
, wxWindowID id
,
177 const wxPoint
& pos
, const wxSize
& size
, long style
, const wxString
& name
):
178 wxGLCanvas(parent
, (wxGLCanvas
*) NULL
, id
, pos
, size
, style
, name
)
183 m_rright
= WXK_RIGHT
;
186 TestGLCanvas::TestGLCanvas(wxWindow
*parent
, const TestGLCanvas
&other
,
187 wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
, long style
,
188 const wxString
& name
) :
189 wxGLCanvas(parent
, other
.GetContext(), id
, pos
, size
, style
, name
)
192 m_gllist
= other
.m_gllist
; /* share display list */
194 m_rright
= WXK_RIGHT
;
197 TestGLCanvas::~TestGLCanvas()
201 void TestGLCanvas::Render()
206 if (!GetContext()) return;
210 /* init OpenGL once, but after SetCurrent */
217 glMatrixMode(GL_PROJECTION
);
219 glFrustum(-0.5F
, 0.5F
, -0.5F
, 0.5F
, 1.0F
, 3.0F
);
220 glMatrixMode(GL_MODELVIEW
);
222 /* clear color and depth buffers */
223 glClear(GL_COLOR_BUFFER_BIT
| GL_DEPTH_BUFFER_BIT
);
227 m_gllist
= glGenLists( 1 );
228 glNewList( m_gllist
, GL_COMPILE_AND_EXECUTE
);
229 /* draw six faces of a cube */
231 glNormal3f( 0.0F
, 0.0F
, 1.0F
);
232 glVertex3f( 0.5F
, 0.5F
, 0.5F
); glVertex3f(-0.5F
, 0.5F
, 0.5F
);
233 glVertex3f(-0.5F
,-0.5F
, 0.5F
); glVertex3f( 0.5F
,-0.5F
, 0.5F
);
235 glNormal3f( 0.0F
, 0.0F
,-1.0F
);
236 glVertex3f(-0.5F
,-0.5F
,-0.5F
); glVertex3f(-0.5F
, 0.5F
,-0.5F
);
237 glVertex3f( 0.5F
, 0.5F
,-0.5F
); glVertex3f( 0.5F
,-0.5F
,-0.5F
);
239 glNormal3f( 0.0F
, 1.0F
, 0.0F
);
240 glVertex3f( 0.5F
, 0.5F
, 0.5F
); glVertex3f( 0.5F
, 0.5F
,-0.5F
);
241 glVertex3f(-0.5F
, 0.5F
,-0.5F
); glVertex3f(-0.5F
, 0.5F
, 0.5F
);
243 glNormal3f( 0.0F
,-1.0F
, 0.0F
);
244 glVertex3f(-0.5F
,-0.5F
,-0.5F
); glVertex3f( 0.5F
,-0.5F
,-0.5F
);
245 glVertex3f( 0.5F
,-0.5F
, 0.5F
); glVertex3f(-0.5F
,-0.5F
, 0.5F
);
247 glNormal3f( 1.0F
, 0.0F
, 0.0F
);
248 glVertex3f( 0.5F
, 0.5F
, 0.5F
); glVertex3f( 0.5F
,-0.5F
, 0.5F
);
249 glVertex3f( 0.5F
,-0.5F
,-0.5F
); glVertex3f( 0.5F
, 0.5F
,-0.5F
);
251 glNormal3f(-1.0F
, 0.0F
, 0.0F
);
252 glVertex3f(-0.5F
,-0.5F
,-0.5F
); glVertex3f(-0.5F
,-0.5F
, 0.5F
);
253 glVertex3f(-0.5F
, 0.5F
, 0.5F
); glVertex3f(-0.5F
, 0.5F
,-0.5F
);
259 glCallList( m_gllist
);
265 void TestGLCanvas::OnEnterWindow( wxMouseEvent
& WXUNUSED(event
) )
270 void TestGLCanvas::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
275 void TestGLCanvas::OnSize(wxSizeEvent
& event
)
277 // this is also necessary to update the context on some platforms
278 wxGLCanvas::OnSize(event
);
280 // set GL viewport (not called by wxGLCanvas::OnSize on all platforms...)
282 GetClientSize(&w
, &h
);
288 glViewport(0, 0, (GLint
) w
, (GLint
) h
);
292 void TestGLCanvas::OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
294 // Do nothing, to avoid flashing.
297 void TestGLCanvas::InitGL()
301 /* set viewing projection */
302 glMatrixMode(GL_PROJECTION
);
303 glFrustum(-0.5F
, 0.5F
, -0.5F
, 0.5F
, 1.0F
, 3.0F
);
305 /* position viewer */
306 glMatrixMode(GL_MODELVIEW
);
307 glTranslatef(0.0F
, 0.0F
, -2.0F
);
309 /* position object */
310 glRotatef(30.0F
, 1.0F
, 0.0F
, 0.0F
);
311 glRotatef(30.0F
, 0.0F
, 1.0F
, 0.0F
);
313 glEnable(GL_DEPTH_TEST
);
314 glEnable(GL_LIGHTING
);
318 GLfloat
TestGLCanvas::CalcRotateSpeed( unsigned long acceltime
)
322 t
= ((GLfloat
)acceltime
) / 1000.0f
;
334 GLfloat
TestGLCanvas::CalcRotateAngle( unsigned long lasttime
,
335 unsigned long acceltime
)
339 t
= ((GLfloat
)(acceltime
- lasttime
)) / 1000.0f
;
340 s1
= CalcRotateSpeed( lasttime
);
341 s2
= CalcRotateSpeed( acceltime
);
343 return( t
* (s1
+ s2
) * 135.0f
);
346 void TestGLCanvas::Action( long code
, unsigned long lasttime
,
347 unsigned long acceltime
)
349 GLfloat angle
= CalcRotateAngle( lasttime
, acceltime
);
353 else if (code
== m_rright
)
357 void TestGLCanvas::OnKeyDown( wxKeyEvent
& event
)
359 long evkey
= event
.GetKeyCode();
360 if (evkey
== 0) return;
362 if (!m_TimeInitialized
)
364 m_TimeInitialized
= 1;
365 m_xsynct
= event
.m_timeStamp
;
366 m_gsynct
= wxStopWatch(&m_secbase
);
374 unsigned long currTime
= event
.m_timeStamp
- m_xsynct
;
379 m_LastRedraw
= m_StartTime
= m_LastTime
= currTime
;
382 if (currTime
>= m_LastRedraw
) // Redraw:
384 Action( m_Key
, m_LastTime
-m_StartTime
, currTime
-m_StartTime
);
386 #if defined(__WXMAC__) && !defined(__DARWIN__)
387 m_LastRedraw
= currTime
; // wxStopWatch() doesn't work on Mac...
389 m_LastRedraw
= wxStopWatch(&m_secbase
) - m_gsynct
;
391 m_LastTime
= currTime
;
397 void TestGLCanvas::OnKeyUp( wxKeyEvent
& event
)
407 void TestGLCanvas::Rotate( GLfloat deg
)
411 glMatrixMode(GL_MODELVIEW
);
412 glRotatef((GLfloat
)deg
, 0.0F
, 0.0F
, 1.0F
);
417 #endif // wxUSE_GLCANVAS
419 /* -----------------------------------------------------------------------
421 -------------------------------------------------------------------------*/
423 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
424 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
425 EVT_MENU( ID_NEW_WINDOW
, MyFrame::OnNewWindow
)
426 EVT_MENU( ID_DEF_ROTATE_LEFT_KEY
, MyFrame::OnDefRotateLeftKey
)
427 EVT_MENU( ID_DEF_ROTATE_RIGHT_KEY
, MyFrame::OnDefRotateRightKey
)
430 // My frame constructor
431 MyFrame::MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
,
432 const wxSize
& size
, long style
)
433 : wxFrame(frame
, -1, title
, pos
, size
, style
)
438 // Intercept menu commands
439 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
444 void MyFrame::OnNewWindow(wxCommandEvent
& WXUNUSED(event
))
446 MyFrame
*frame
= new MyFrame(NULL
, _T("Cube OpenGL Demo Clone"),
447 wxPoint(50, 50), wxSize(400, 300));
450 frame
->SetIcon(wxIcon(_T("mondrian")));
454 wxMenu
*winMenu
= new wxMenu
;
456 winMenu
->Append(wxID_EXIT
, _T("&Close"));
457 winMenu
->Append(ID_NEW_WINDOW
, _T("&New") );
458 wxMenuBar
*menuBar
= new wxMenuBar
;
459 menuBar
->Append(winMenu
, _T("&Window"));
461 winMenu
= new wxMenu
;
462 winMenu
->Append(ID_DEF_ROTATE_LEFT_KEY
, _T("Rotate &left"));
463 winMenu
->Append(ID_DEF_ROTATE_RIGHT_KEY
, _T("Rotate &right"));
464 menuBar
->Append(winMenu
, _T("&Key"));
466 frame
->SetMenuBar(menuBar
);
469 frame
->m_canvas
= new TestGLCanvas( frame
, *m_canvas
, -1,
470 wxDefaultPosition
, wxDefaultSize
);
477 void MyFrame::OnDefRotateLeftKey(wxCommandEvent
& WXUNUSED(event
))
480 ScanCodeDialog
dial( this, -1, m_canvas
->m_rleft
,
481 wxString(_T("Left")), _T("Define key") );
482 int result
= dial
.ShowModal();
483 if( result
== wxID_OK
)
484 m_canvas
->m_rleft
= dial
.GetValue();
488 void MyFrame::OnDefRotateRightKey(wxCommandEvent
& WXUNUSED(event
))
491 ScanCodeDialog
dial( this, -1, m_canvas
->m_rright
,
492 wxString(_T("Right")), _T("Define key") );
493 int result
= dial
.ShowModal();
494 if( result
== wxID_OK
)
495 m_canvas
->m_rright
= dial
.GetValue();
499 /*------------------------------------------------------------------
500 Application object ( equivalent to main() )
501 ------------------------------------------------------------------ */
505 bool MyApp::OnInit(void)
507 wxLog::SetTraceMask(wxTraceMessages
);
509 // Create the main frame window
510 MyFrame
*frame
= new MyFrame(NULL
, _T("Cube OpenGL Demo"), wxPoint(50, 50),
514 frame
->SetIcon(wxIcon("mondrian"));
518 wxMenu
*winMenu
= new wxMenu
;
520 winMenu
->Append(wxID_EXIT
, _T("&Close"));
521 winMenu
->Append(ID_NEW_WINDOW
, _T("&New") );
522 wxMenuBar
*menuBar
= new wxMenuBar
;
523 menuBar
->Append(winMenu
, _T("&Window"));
525 winMenu
= new wxMenu
;
526 winMenu
->Append(ID_DEF_ROTATE_LEFT_KEY
, _T("Rotate &left"));
527 winMenu
->Append(ID_DEF_ROTATE_RIGHT_KEY
, _T("Rotate &right"));
528 menuBar
->Append(winMenu
, _T("&Key"));
530 frame
->SetMenuBar(menuBar
);
534 frame
->m_canvas
= new TestGLCanvas(frame
, -1, wxDefaultPosition
, wxDefaultSize
);
543 wxMessageBox( _T("This sample has to be compiled with wxUSE_GLCANVAS"), _T("Building error"), wxOK
);