1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGLCanvas demo program
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
29 #error Please set wxUSE_GLCANVAS to 1 in setup.h.
35 #define VIEW_ASPECT 1.3
37 /* `Main program' equivalent, creating windows and returning main app frame */
38 bool MyApp::OnInit(void)
41 /* Create the main frame window */
42 MyFrame
*frame
= new MyFrame(NULL
, "wxWindows OpenGL Demo", wxPoint(50, 50), wxSize(400, 300));
45 wxMenu
*fileMenu
= new wxMenu
;
47 fileMenu
->Append(wxID_EXIT
, "E&xit");
48 wxMenuBar
*menuBar
= new wxMenuBar
;
49 menuBar
->Append(fileMenu
, "&File");
50 frame
->SetMenuBar(menuBar
);
52 frame
->m_canvas
= new TestGLCanvas(frame
, -1, wxPoint(0, 0), wxSize(200, 200));
54 /* Load file wiht mesh data */
55 frame
->m_canvas
->LoadLWO( "penguin.lwo" );
65 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
66 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
69 /* My frame constructor */
70 MyFrame::MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
,
71 const wxSize
& size
, long style
):
72 wxFrame(frame
, -1, title
, pos
, size
, style
)
77 /* Intercept menu commands */
78 void MyFrame::OnExit(wxCommandEvent
& event
)
83 BEGIN_EVENT_TABLE(TestGLCanvas
, wxGLCanvas
)
84 EVT_SIZE(TestGLCanvas::OnSize
)
85 EVT_PAINT(TestGLCanvas::OnPaint
)
86 EVT_ERASE_BACKGROUND(TestGLCanvas::OnEraseBackground
)
87 EVT_MOUSE_EVENTS(TestGLCanvas::OnMouse
)
90 TestGLCanvas::TestGLCanvas(wxWindow
*parent
, wxWindowID id
,
91 const wxPoint
& pos
, const wxSize
& size
, long style
, const wxString
& name
):
92 wxGLCanvas(parent
, id
, pos
, size
, style
, name
)
97 TestGLCanvas::~TestGLCanvas(void)
100 lw_object_free(info
.lwobject
);
103 void TestGLCanvas::OnPaint( wxPaintEvent
& event
)
105 /* must always be here */
109 if (!GetContext()) return;
114 /* initialize OpenGL */
115 if (info
.do_init
== TRUE
)
118 info
.do_init
= FALSE
;
122 glMatrixMode( GL_PROJECTION
);
124 gluPerspective( info
.zoom
, VIEW_ASPECT
, 1, 100 );
125 glMatrixMode( GL_MODELVIEW
);
128 glClearColor( .3, .4, .6, 1 );
129 glClear( GL_COLOR_BUFFER_BIT
| GL_DEPTH_BUFFER_BIT
);
131 /* transformations */
134 glTranslatef( 0, 0, -30 );
135 build_rotmatrix( m
,info
.quat
);
136 glMultMatrixf( &m
[0][0] );
139 lw_object_show( info
.lwobject
);
148 void TestGLCanvas::OnSize(wxSizeEvent
& event
)
151 GetClientSize(& width
, & height
);
158 glViewport(0, 0, width
, height
);
162 void TestGLCanvas::OnEraseBackground(wxEraseEvent
& event
)
164 /* Do nothing, to avoid flashing on MSW */
167 void TestGLCanvas::LoadLWO(const wxString
&filename
)
169 /* test if lightwave object */
170 if (!lw_is_lwobject(filename
)) return;
172 /* read lightwave object */
173 lwObject
*lwobject
= lw_object_read(filename
);
176 lw_object_scale(lwobject
, 10.0 / lw_object_radius(lwobject
));
178 /* set up mesh info */
180 info
.lwobject
= lwobject
;
184 trackball( info
.quat
, 0.0, 0.0, 0.0, 0.0 );
187 void TestGLCanvas::OnMouse( wxMouseEvent
& event
)
189 wxSize
sz(GetClientSize());
190 if (event
.Dragging())
192 /* drag in progress, simulate trackball */
195 (2.0*info
.beginx
- sz
.x
) / sz
.x
,
196 ( sz
.y
- 2.0*info
.beginy
) / sz
.y
,
197 ( 2.0*event
.GetX() - sz
.x
) / sz
.x
,
198 ( sz
.y
- 2.0*event
.GetY()) / sz
.y
);
200 add_quats( spin_quat
, info
.quat
, info
.quat
);
202 /* orientation has changed, redraw mesh */
206 info
.beginx
= event
.GetX();
207 info
.beginy
= event
.GetY();
210 void TestGLCanvas::InitGL(void)
212 GLfloat light0_pos
[4] = { -50.0, 50.0, 0.0, 0.0 };
213 GLfloat light0_color
[4] = { .6, .6, .6, 1.0 }; /* white light */
214 GLfloat light1_pos
[4] = { 50.0, 50.0, 0.0, 0.0 };
215 GLfloat light1_color
[4] = { .4, .4, 1, 1.0 }; /* cold blue light */
217 /* remove back faces */
218 glDisable(GL_CULL_FACE
);
219 glEnable(GL_DEPTH_TEST
);
223 glShadeModel(GL_SMOOTH
);
224 glHint(GL_PERSPECTIVE_CORRECTION_HINT
, GL_FASTEST
);
225 glHint(GL_POLYGON_SMOOTH_HINT
, GL_FASTEST
);
228 glLightfv(GL_LIGHT0
, GL_POSITION
, light0_pos
);
229 glLightfv(GL_LIGHT0
, GL_DIFFUSE
, light0_color
);
230 glLightfv(GL_LIGHT1
, GL_POSITION
, light1_pos
);
231 glLightfv(GL_LIGHT1
, GL_DIFFUSE
, light1_color
);
234 glEnable(GL_LIGHTING
);
236 glColorMaterial(GL_FRONT_AND_BACK
,GL_AMBIENT_AND_DIFFUSE
);
237 glEnable(GL_COLOR_MATERIAL
);