]>
git.saurik.com Git - wxWidgets.git/blob - utils/glcanvas/samples/cube/cube.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGLCanvas demo program
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
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
34 #include <sys/unistd.h>
36 #include <sys/timeb.h>
39 #define ID_NEW_WINDOW 10000
40 #define ID_DEF_ROTATE_LEFT_KEY 10001
41 #define ID_DEF_ROTATE_RIGHT_KEY 10002
43 /*----------------------------------------------------------
44 Control to get a keycode
45 ----------------------------------------------------------*/
46 class ScanCodeCtrl
: public wxTextCtrl
49 ScanCodeCtrl( wxWindow
* parent
, wxWindowID id
, int code
,
50 const wxPoint
& pos
, const wxSize
& size
);
51 void OnChar( wxKeyEvent
& event
) { } /* do nothing */
52 void OnKeyDown(wxKeyEvent
& event
);
54 // any class wishing to process wxWindows events must use this macro
57 BEGIN_EVENT_TABLE( ScanCodeCtrl
, wxTextCtrl
)
58 EVT_CHAR( ScanCodeCtrl::OnChar
)
59 EVT_KEY_DOWN( ScanCodeCtrl::OnKeyDown
)
62 ScanCodeCtrl::ScanCodeCtrl( wxWindow
* parent
, wxWindowID id
, int code
,
63 const wxPoint
& pos
, const wxSize
& size
)
64 : wxTextCtrl( parent
, id
, "", pos
, size
)
66 buf
.Printf( "0x%04x", code
);
70 void ScanCodeCtrl::OnKeyDown( wxKeyEvent
& event
)
72 buf
.Printf( "0x%04x", event
.KeyCode() );
76 /*------------------------------------------------------------------
77 Dialog for defining a keypress
78 -------------------------------------------------------------------*/
80 class ScanCodeDialog
: public wxDialog
83 ScanCodeDialog( wxWindow
* parent
, wxWindowID id
, const int code
,
84 const wxString
&descr
, const wxString
& title
);
87 ScanCodeCtrl
*m_ScanCode
;
88 wxTextCtrl
*m_Description
;
91 ScanCodeDialog::ScanCodeDialog( wxWindow
* parent
, wxWindowID id
,
92 const int code
, const wxString
&descr
, const wxString
& title
)
93 : wxDialog( parent
, id
, title
, wxPoint(-1, -1), wxSize(96*2,76*2) )
95 new wxStaticText( this, -1, "Scancode", wxPoint(4*2,3*2),
97 m_ScanCode
= new ScanCodeCtrl( this, -1, code
, wxPoint(37*2,6*2),
100 new wxStaticText( this, -1, "Description", wxPoint(4*2,24*2),
102 m_Description
= new wxTextCtrl( this, -1, descr
, wxPoint(37*2,27*2),
105 new wxButton( this, wxID_OK
, "Ok", wxPoint(20*2,50*2), wxSize(20*2,13*2) );
106 new wxButton( this, wxID_CANCEL
, "Cancel", wxPoint(44*2,50*2),
110 int ScanCodeDialog::GetValue()
113 wxString buf
= m_ScanCode
->GetValue();
114 sscanf( buf
.c_str(), "%i", &code
);
118 /*----------------------------------------------------------------------
119 Utility function to get the elapsed time (in msec) since a given point
120 in time (in sec) (because current version of wxGetElapsedTime doesn´t
121 works right with glibc-2.1 and linux, at least for me)
122 -----------------------------------------------------------------------*/
123 unsigned long wxStopWatch( unsigned long *sec_base
)
125 unsigned long secs
,msec
;
127 #ifndef __WXMSW__ // think every unice has gettimeofday
129 gettimeofday( &tv
, (struct timezone
*)NULL
);
131 msec
= tv
.tv_usec
/1000;
142 return( (secs
-*sec_base
)*1000 + msec
);
145 /*----------------------------------------------------------------
146 Implementation of Test-GLCanvas
147 -----------------------------------------------------------------*/
149 BEGIN_EVENT_TABLE(TestGLCanvas
, wxGLCanvas
)
150 EVT_SIZE(TestGLCanvas::OnSize
)
151 EVT_PAINT(TestGLCanvas::OnPaint
)
152 EVT_ERASE_BACKGROUND(TestGLCanvas::OnEraseBackground
)
153 EVT_KEY_DOWN( TestGLCanvas::OnKeyDown
)
154 EVT_KEY_UP( TestGLCanvas::OnKeyUp
)
155 EVT_ENTER_WINDOW( TestGLCanvas::OnEnterWindow
)
158 unsigned long TestGLCanvas::m_secbase
= 0;
159 int TestGLCanvas::m_TimeInitialized
= 0;
160 unsigned long TestGLCanvas::m_xsynct
;
161 unsigned long TestGLCanvas::m_gsynct
;
164 TestGLCanvas::TestGLCanvas(wxWindow
*parent
, wxWindowID id
,
165 const wxPoint
& pos
, const wxSize
& size
, long style
, const wxString
& name
):
166 wxGLCanvas(parent
, NULL
, id
, pos
, size
, style
, name
)
171 m_rright
= WXK_RIGHT
;
174 TestGLCanvas::TestGLCanvas(wxWindow
*parent
, const TestGLCanvas
&other
,
175 wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
, long style
,
176 const wxString
& name
) :
177 wxGLCanvas(parent
, other
.GetContext(), id
, pos
, size
, style
, name
)
180 m_gllist
= other
.m_gllist
; /* share display list */
182 m_rright
= WXK_RIGHT
;
185 TestGLCanvas::~TestGLCanvas()
189 void TestGLCanvas::Render()
194 if (!GetContext()) return;
198 /* init OpenGL once, but after SetCurrent */
205 /* clear color and depth buffers */
206 glClear(GL_COLOR_BUFFER_BIT
| GL_DEPTH_BUFFER_BIT
);
210 m_gllist
= glGenLists( 1 );
211 glNewList( m_gllist
, GL_COMPILE_AND_EXECUTE
);
212 /* draw six faces of a cube */
214 glNormal3f( 0.0F
, 0.0F
, 1.0F
);
215 glVertex3f( 0.5F
, 0.5F
, 0.5F
); glVertex3f(-0.5F
, 0.5F
, 0.5F
);
216 glVertex3f(-0.5F
,-0.5F
, 0.5F
); glVertex3f( 0.5F
,-0.5F
, 0.5F
);
218 glNormal3f( 0.0F
, 0.0F
,-1.0F
);
219 glVertex3f(-0.5F
,-0.5F
,-0.5F
); glVertex3f(-0.5F
, 0.5F
,-0.5F
);
220 glVertex3f( 0.5F
, 0.5F
,-0.5F
); glVertex3f( 0.5F
,-0.5F
,-0.5F
);
222 glNormal3f( 0.0F
, 1.0F
, 0.0F
);
223 glVertex3f( 0.5F
, 0.5F
, 0.5F
); glVertex3f( 0.5F
, 0.5F
,-0.5F
);
224 glVertex3f(-0.5F
, 0.5F
,-0.5F
); glVertex3f(-0.5F
, 0.5F
, 0.5F
);
226 glNormal3f( 0.0F
,-1.0F
, 0.0F
);
227 glVertex3f(-0.5F
,-0.5F
,-0.5F
); glVertex3f( 0.5F
,-0.5F
,-0.5F
);
228 glVertex3f( 0.5F
,-0.5F
, 0.5F
); glVertex3f(-0.5F
,-0.5F
, 0.5F
);
230 glNormal3f( 1.0F
, 0.0F
, 0.0F
);
231 glVertex3f( 0.5F
, 0.5F
, 0.5F
); glVertex3f( 0.5F
,-0.5F
, 0.5F
);
232 glVertex3f( 0.5F
,-0.5F
,-0.5F
); glVertex3f( 0.5F
, 0.5F
,-0.5F
);
234 glNormal3f(-1.0F
, 0.0F
, 0.0F
);
235 glVertex3f(-0.5F
,-0.5F
,-0.5F
); glVertex3f(-0.5F
,-0.5F
, 0.5F
);
236 glVertex3f(-0.5F
, 0.5F
, 0.5F
); glVertex3f(-0.5F
, 0.5F
,-0.5F
);
242 glCallList( m_gllist
);
248 void TestGLCanvas::OnEnterWindow( wxMouseEvent
& event
)
253 void TestGLCanvas::OnPaint( wxPaintEvent
& event
)
258 void TestGLCanvas::OnSize(wxSizeEvent
& event
)
261 GetClientSize(& width
, & height
);
268 glViewport(0, 0, width
, height
);
272 void TestGLCanvas::OnEraseBackground(wxEraseEvent
& event
)
274 // Do nothing, to avoid flashing.
277 void TestGLCanvas::InitGL()
281 /* set viewing projection */
282 glMatrixMode(GL_PROJECTION
);
283 glFrustum(-0.5F
, 0.5F
, -0.5F
, 0.5F
, 1.0F
, 3.0F
);
285 /* position viewer */
286 glMatrixMode(GL_MODELVIEW
);
287 glTranslatef(0.0F
, 0.0F
, -2.0F
);
289 /* position object */
290 glRotatef(30.0F
, 1.0F
, 0.0F
, 0.0F
);
291 glRotatef(30.0F
, 0.0F
, 1.0F
, 0.0F
);
293 glEnable(GL_DEPTH_TEST
);
294 glEnable(GL_LIGHTING
);
298 GLfloat
TestGLCanvas::CalcRotateSpeed( unsigned long acceltime
)
302 t
= ((GLfloat
)acceltime
) / 1000.0f
;
314 GLfloat
TestGLCanvas::CalcRotateAngle( unsigned long lasttime
,
315 unsigned long acceltime
)
319 t
= ((GLfloat
)(acceltime
- lasttime
)) / 1000.0f
;
320 s1
= CalcRotateSpeed( lasttime
);
321 s2
= CalcRotateSpeed( acceltime
);
323 return( t
* (s1
+ s2
) * 135.0f
);
326 void TestGLCanvas::Action( long code
, unsigned long lasttime
,
327 unsigned long acceltime
)
329 GLfloat angle
= CalcRotateAngle( lasttime
, acceltime
);
333 else if (code
== m_rright
)
337 void TestGLCanvas::OnKeyDown( wxKeyEvent
& event
)
339 long evkey
= event
.KeyCode();
340 if (evkey
== 0) return;
342 if (!m_TimeInitialized
)
344 m_TimeInitialized
= 1;
345 m_xsynct
= event
.m_timeStamp
;
346 m_gsynct
= wxStopWatch(&m_secbase
);
354 unsigned long currTime
= event
.m_timeStamp
- m_xsynct
;
359 m_LastRedraw
= m_StartTime
= m_LastTime
= currTime
;
362 if (currTime
>= m_LastRedraw
) // Redraw:
364 Action( m_Key
, m_LastTime
-m_StartTime
, currTime
-m_StartTime
);
366 m_LastRedraw
= wxStopWatch(&m_secbase
) - m_gsynct
;
367 m_LastTime
= currTime
;
373 void TestGLCanvas::OnKeyUp( wxKeyEvent
& event
)
383 void TestGLCanvas::Rotate( GLfloat deg
)
387 glMatrixMode(GL_MODELVIEW
);
388 glRotatef((GLfloat
)deg
, 0.0F
, 0.0F
, 1.0F
);
393 /* -----------------------------------------------------------------------
395 -------------------------------------------------------------------------*/
397 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
398 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
399 EVT_MENU( ID_NEW_WINDOW
, MyFrame::OnNewWindow
)
400 EVT_MENU( ID_DEF_ROTATE_LEFT_KEY
, MyFrame::OnDefRotateLeftKey
)
401 EVT_MENU( ID_DEF_ROTATE_RIGHT_KEY
, MyFrame::OnDefRotateRightKey
)
404 // My frame constructor
405 MyFrame::MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
,
406 const wxSize
& size
, long style
)
407 : wxFrame(frame
, -1, title
, pos
, size
, style
)
412 // Intercept menu commands
413 void MyFrame::OnExit(wxCommandEvent
& event
)
418 void MyFrame::OnNewWindow()
420 MyFrame
*frame
= new MyFrame(NULL
, "Cube OpenGL Demo Clone",
421 wxPoint(50, 50), wxSize(400, 300));
424 frame
->SetIcon(wxIcon("mondrian"));
428 wxMenu
*winMenu
= new wxMenu
;
430 winMenu
->Append(wxID_EXIT
, "&Close");
431 winMenu
->Append(ID_NEW_WINDOW
, "&New" );
432 wxMenuBar
*menuBar
= new wxMenuBar
;
433 menuBar
->Append(winMenu
, "&Window");
435 winMenu
= new wxMenu
;
436 winMenu
->Append(ID_DEF_ROTATE_LEFT_KEY
, "Rotate &left");
437 winMenu
->Append(ID_DEF_ROTATE_RIGHT_KEY
, "Rotate &right");
438 menuBar
->Append(winMenu
, "&Key");
440 frame
->SetMenuBar(menuBar
);
442 frame
->m_canvas
= new TestGLCanvas( frame
, *m_canvas
, -1,
443 wxPoint(0, 0), wxSize(200, 200) );
449 void MyFrame::OnDefRotateLeftKey()
451 ScanCodeDialog
dial( this, -1, m_canvas
->m_rleft
,
452 wxString("Left"), "Define key" );
453 int result
= dial
.ShowModal();
454 if( result
== wxID_OK
)
455 m_canvas
->m_rleft
= dial
.GetValue();
457 void MyFrame::OnDefRotateRightKey()
459 ScanCodeDialog
dial( this, -1, m_canvas
->m_rright
,
460 wxString("Right"), "Define key" );
461 int result
= dial
.ShowModal();
462 if( result
== wxID_OK
)
463 m_canvas
->m_rright
= dial
.GetValue();
466 /*------------------------------------------------------------------
467 Application object ( equivalent to main() )
468 ------------------------------------------------------------------ */
472 bool MyApp::OnInit(void)
474 wxLog::SetTraceMask(wxTraceMessages
);
476 // Create the main frame window
477 MyFrame
*frame
= new MyFrame(NULL
, "Cube OpenGL Demo", wxPoint(50, 50),
481 frame
->SetIcon(wxIcon("mondrian"));
485 wxMenu
*winMenu
= new wxMenu
;
487 winMenu
->Append(wxID_EXIT
, "&Close");
488 winMenu
->Append(ID_NEW_WINDOW
, "&New" );
489 wxMenuBar
*menuBar
= new wxMenuBar
;
490 menuBar
->Append(winMenu
, "&Window");
492 winMenu
= new wxMenu
;
493 winMenu
->Append(ID_DEF_ROTATE_LEFT_KEY
, "Rotate &left");
494 winMenu
->Append(ID_DEF_ROTATE_RIGHT_KEY
, "Rotate &right");
495 menuBar
->Append(winMenu
, "&Key");
497 frame
->SetMenuBar(menuBar
);
499 frame
->m_canvas
= new TestGLCanvas(frame
, -1, wxPoint(0, 0), wxSize(200, 200));