X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2db98bf520c835c29a9002dcf93adc11b15a76df..8076df5d81549d5afe7afe392e3b531964e33d47:/samples/opengl/isosurf/isosurf.cpp?ds=sidebyside diff --git a/samples/opengl/isosurf/isosurf.cpp b/samples/opengl/isosurf/isosurf.cpp index db1f68034a..471942b637 100644 --- a/samples/opengl/isosurf/isosurf.cpp +++ b/samples/opengl/isosurf/isosurf.cpp @@ -2,18 +2,13 @@ // Name: isosurf.cpp // Purpose: wxGLCanvas demo program // Author: Brian Paul (original gltk version), Wolfram Gloger -// Modified by: Julian Smart +// Modified by: Julian Smart, Francesco Montorsi // Created: 04/01/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation -#pragma interface -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -25,332 +20,222 @@ #include "wx/wx.h" #endif -#include "wx/timer.h" -#include "wx/glcanvas.h" - -#ifdef __WXMAC__ -# ifdef __DARWIN__ -# include -# include -# else -# include -# include -# endif -#else -# include -# include +#if !wxUSE_GLCANVAS + #error "OpenGL required: set wxUSE_GLCANVAS to 1 and rebuild the library" #endif -// disabled because this has apparently changed in OpenGL 1.2, so doesn't link -// correctly if this is on... -#ifdef GL_EXT_vertex_array -#undef GL_EXT_vertex_array -#endif +#include "wx/timer.h" +#include "wx/glcanvas.h" +#include "wx/math.h" +#include "wx/log.h" +#include "wx/cmdline.h" +#include "wx/wfstream.h" +#include "wx/zstream.h" +#include "wx/txtstrm.h" #include "isosurf.h" +#include "../../sample.xpm" -// The following part is taken largely unchanged from the original C Version - -#include - -GLboolean speed_test = GL_FALSE; -GLboolean use_vertex_arrays = GL_FALSE; - -GLboolean doubleBuffer = GL_TRUE; - -GLboolean smooth = GL_TRUE; -GLboolean lighting = GL_TRUE; +// global options which can be set through command-line options +GLboolean g_use_vertex_arrays = GL_FALSE; +GLboolean g_doubleBuffer = GL_TRUE; +GLboolean g_smooth = GL_TRUE; +GLboolean g_lighting = GL_TRUE; -#define MAXVERTS 10000 -static GLfloat verts[MAXVERTS][3]; -static GLfloat norms[MAXVERTS][3]; -static GLint numverts; -static GLfloat xrot; -static GLfloat yrot; +//--------------------------------------------------------------------------- +// MyApp +//--------------------------------------------------------------------------- +IMPLEMENT_APP(MyApp) -static void read_surface( wxChar *filename ) +bool MyApp::OnInit() { - FILE *f; - - f = wxFopen(filename,_T("r")); - if (!f) { - wxString msg(_T("Couldn't read ")); - msg += filename; - wxMessageBox(msg); - return; - } - - numverts = 0; - while (!feof(f) && numvertsSetIcon(wxIcon(_T("mondrian"))); + // Make a menubar + wxMenu *fileMenu = new wxMenu; - // Make a menubar - wxMenu *fileMenu = new wxMenu; + fileMenu->Append(wxID_EXIT, wxT("E&xit")); + wxMenuBar *menuBar = new wxMenuBar; + menuBar->Append(fileMenu, wxT("&File")); + SetMenuBar(menuBar); - fileMenu->Append(wxID_EXIT, _T("E&xit")); - wxMenuBar *menuBar = new wxMenuBar; - menuBar->Append(fileMenu, _T("&File")); - frame->SetMenuBar(menuBar); // Make a TestGLCanvas // JACS #ifdef __WXMSW__ - int *gl_attrib = NULL; + int *gl_attrib = NULL; #else - int gl_attrib[20] = { WX_GL_RGBA, WX_GL_MIN_RED, 1, WX_GL_MIN_GREEN, 1, - WX_GL_MIN_BLUE, 1, WX_GL_DEPTH_SIZE, 1, - WX_GL_DOUBLEBUFFER, -# ifdef __WXMAC__ - GL_NONE }; + int gl_attrib[20] = + { WX_GL_RGBA, WX_GL_MIN_RED, 1, WX_GL_MIN_GREEN, 1, + WX_GL_MIN_BLUE, 1, WX_GL_DEPTH_SIZE, 1, + WX_GL_DOUBLEBUFFER, +# if defined(__WXMAC__) || defined(__WXCOCOA__) + GL_NONE }; # else - None }; + None }; # endif #endif - if(!doubleBuffer) - { - printf("don't have double buffer, disabling\n"); + if (!g_doubleBuffer) + { + wxLogWarning("Disabling double buffering"); + #ifdef __WXGTK__ - gl_attrib[9] = None; + gl_attrib[9] = None; #endif - doubleBuffer = GL_FALSE; - } - -#if wxUSE_GLCANVAS - - frame->m_canvas = new TestGLCanvas(frame, -1, wxDefaultPosition, wxDefaultSize, - 0, _T("TestGLCanvas"), gl_attrib ); - - // Show the frame - frame->Show(TRUE); - - frame->m_canvas->SetCurrent(); - read_surface( _T("isosurf.dat") ); - - Init(); - - return TRUE; - -#else + g_doubleBuffer = GL_FALSE; + } - wxMessageBox( _T("This sample has to be compiled with wxUSE_GLCANVAS"), _T("Building error"), wxOK); + // Show the frame + Show(true); - return FALSE; -#endif + m_canvas = new TestGLCanvas(this, wxID_ANY, gl_attrib); } -BEGIN_EVENT_TABLE(MyFrame, wxFrame) - EVT_MENU(wxID_EXIT, MyFrame::OnExit) -END_EVENT_TABLE() - -// My frame constructor -MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, - const wxSize& size, long style): - wxFrame(frame, -1, title, pos, size, style) +MyFrame::~MyFrame() { -#if wxUSE_GLCANVAS - m_canvas = NULL; -#endif + delete m_canvas; } // Intercept menu commands -void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event)) +void MyFrame::OnExit( wxCommandEvent& WXUNUSED(event) ) { - Destroy(); + // true is to force the frame to close + Close(true); } -/* - * TestGLCanvas implementation - */ -#if wxUSE_GLCANVAS +//--------------------------------------------------------------------------- +// TestGLCanvas +//--------------------------------------------------------------------------- BEGIN_EVENT_TABLE(TestGLCanvas, wxGLCanvas) EVT_SIZE(TestGLCanvas::OnSize) EVT_PAINT(TestGLCanvas::OnPaint) EVT_CHAR(TestGLCanvas::OnChar) EVT_MOUSE_EVENTS(TestGLCanvas::OnMouseEvent) - EVT_ERASE_BACKGROUND(TestGLCanvas::OnEraseBackground) END_EVENT_TABLE() -TestGLCanvas::TestGLCanvas(wxWindow *parent, wxWindowID id, - const wxPoint& pos, const wxSize& size, long style, const wxString& name, int* gl_attrib): - wxGLCanvas(parent, id, pos, size, style, name, gl_attrib) +TestGLCanvas::TestGLCanvas(wxWindow *parent, + wxWindowID id, + int* gl_attrib) + : wxGLCanvas(parent, id, gl_attrib) { - parent->Show(TRUE); - SetCurrent(); - - /* Make sure server supports the vertex array extension */ - char* extensions = (char *) glGetString( GL_EXTENSIONS ); - if (!extensions || !strstr( extensions, "GL_EXT_vertex_array" )) { - use_vertex_arrays = GL_FALSE; - } + m_xrot = 0; + m_yrot = 0; + m_numverts = 0; + + // Explicitly create a new rendering context instance for this canvas. + m_glRC = new wxGLContext(this); + + // Make the new context current (activate it for use) with this canvas. + SetCurrent(*m_glRC); + + InitGL(); + InitMaterials(); + LoadSurface("isosurf.dat.gz"); } +TestGLCanvas::~TestGLCanvas() +{ + delete m_glRC; +} -TestGLCanvas::~TestGLCanvas(void) +void TestGLCanvas::LoadSurface(const wxString& filename) { + // FIXME + // we need to set english locale to force wxTextInputStream's calls to + // wxStrtod to use the point and not the comma as decimal separator... + // (the isosurf.dat contains points and not commas)... + wxLocale l(wxLANGUAGE_ENGLISH); + + wxZlibInputStream* stream = + new wxZlibInputStream(new wxFFileInputStream(filename)); + if (!stream || !stream->IsOk()) + { + wxLogError("Cannot load '%s' type of files!", filename.c_str()); + delete stream; + return; + } + + { + // we suppose to have in input a text file containing floating numbers + // space/newline-separed... first 3 numbers are the coordinates of a + // vertex and the following 3 are the relative vertex normal and so on... + + wxTextInputStream inFile(*stream); + m_numverts = 0; + + while (!stream->Eof() && m_numverts < MAXVERTS)// && m_numverts> m_verts[m_numverts][0] >> m_verts[m_numverts][1] >> m_verts[m_numverts][2]; + inFile >> m_norms[m_numverts][0] >> m_norms[m_numverts][1] >> m_norms[m_numverts][2]; + + m_numverts++; + } + + // discard last vertex; it is a zero caused by the EOF + m_numverts--; + } + + delete stream; + + wxLogMessage(wxT("Loaded %d vertices, %d triangles from '%s'"), + m_numverts, m_numverts-2, filename.c_str()); + + // NOTE: for some reason under wxGTK the following is required to avoid that + // the surface gets rendered in a small rectangle in the top-left corner of the frame + PostSizeEventToParent(); } void TestGLCanvas::OnPaint( wxPaintEvent& WXUNUSED(event) ) @@ -359,74 +244,98 @@ void TestGLCanvas::OnPaint( wxPaintEvent& WXUNUSED(event) ) // OnPaint handlers must always create a wxPaintDC. wxPaintDC dc(this); -#ifndef __WXMOTIF__ - if (!GetContext()) return; -#endif + // This is normally only necessary if there is more than one wxGLCanvas + // or more than one wxGLContext in the application. + SetCurrent(*m_glRC); - SetCurrent(); + glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); + glPushMatrix(); + glRotatef( m_yrot, 0.0f, 1.0f, 0.0f ); + glRotatef( m_xrot, 1.0f, 0.0f, 0.0f ); + + // draw the surface + if (g_use_vertex_arrays) + { + glDrawArrays( GL_TRIANGLE_STRIP, 0, m_numverts ); + } + else + { + glBegin( GL_TRIANGLE_STRIP ); + + for (int i=0;iExitMainLoop(); + return; + case WXK_LEFT: - yrot -= 15.0; - break; + m_yrot -= 15.0; + break; + case WXK_RIGHT: - yrot += 15.0; - break; + m_yrot += 15.0; + break; + case WXK_UP: - xrot += 15.0; - break; + m_xrot += 15.0; + break; + case WXK_DOWN: - xrot -= 15.0; - break; + m_xrot -= 15.0; + break; + case 's': case 'S': - smooth = !smooth; - if (smooth) { - glShadeModel(GL_SMOOTH); - } else { - glShadeModel(GL_FLAT); - } - break; + g_smooth = !g_smooth; + if (g_smooth) + glShadeModel(GL_SMOOTH); + else + glShadeModel(GL_FLAT); + break; + case 'l': case 'L': - lighting = !lighting; - if (lighting) { - glEnable(GL_LIGHTING); - } else { - glDisable(GL_LIGHTING); - } - break; - default: - { + g_lighting = !g_lighting; + if (g_lighting) + glEnable(GL_LIGHTING); + else + glDisable(GL_LIGHTING); + break; + + default: event.Skip(); - return; - } + return; } - Refresh(FALSE); + Refresh(false); } void TestGLCanvas::OnMouseEvent(wxMouseEvent& event) @@ -434,24 +343,90 @@ void TestGLCanvas::OnMouseEvent(wxMouseEvent& event) static int dragging = 0; static float last_x, last_y; - //printf("%f %f %d\n", event.GetX(), event.GetY(), (int)event.LeftIsDown()); - if(event.LeftIsDown()) { - if(!dragging) { - dragging = 1; - } else { - yrot += (event.GetX() - last_x)*1.0; - xrot += (event.GetY() - last_y)*1.0; - Refresh(FALSE); + // Allow default processing to happen, or else the canvas cannot gain focus + // (for key events). + event.Skip(); + + if (event.LeftIsDown()) + { + if (!dragging) + { + dragging = 1; + } + else + { + m_yrot += (event.GetX() - last_x)*1.0; + m_xrot += (event.GetY() - last_y)*1.0; + Refresh(false); + } + last_x = event.GetX(); + last_y = event.GetY(); + } + else + { + dragging = 0; } - last_x = event.GetX(); - last_y = event.GetY(); - } else - dragging = 0; } -void TestGLCanvas::OnEraseBackground(wxEraseEvent& WXUNUSED(event)) +void TestGLCanvas::InitMaterials() +{ + static const GLfloat ambient[4] = {0.1f, 0.1f, 0.1f, 1.0f}; + static const GLfloat diffuse[4] = {0.5f, 1.0f, 1.0f, 1.0f}; + static const GLfloat position0[4] = {0.0f, 0.0f, 20.0f, 0.0f}; + static const GLfloat position1[4] = {0.0f, 0.0f, -20.0f, 0.0f}; + static const GLfloat front_mat_shininess[1] = {60.0f}; + static const GLfloat front_mat_specular[4] = {0.2f, 0.2f, 0.2f, 1.0f}; + static const GLfloat front_mat_diffuse[4] = {0.5f, 0.28f, 0.38f, 1.0f}; + /* + static const GLfloat back_mat_shininess[1] = {60.0f}; + static const GLfloat back_mat_specular[4] = {0.5f, 0.5f, 0.2f, 1.0f}; + static const GLfloat back_mat_diffuse[4] = {1.0f, 1.0f, 0.2f, 1.0f}; + */ + static const GLfloat lmodel_ambient[4] = {1.0f, 1.0f, 1.0f, 1.0f}; + static const GLfloat lmodel_twoside[1] = {GL_FALSE}; + + glLightfv(GL_LIGHT0, GL_AMBIENT, ambient); + glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse); + glLightfv(GL_LIGHT0, GL_POSITION, position0); + glEnable(GL_LIGHT0); + + glLightfv(GL_LIGHT1, GL_AMBIENT, ambient); + glLightfv(GL_LIGHT1, GL_DIFFUSE, diffuse); + glLightfv(GL_LIGHT1, GL_POSITION, position1); + glEnable(GL_LIGHT1); + + glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient); + glLightModelfv(GL_LIGHT_MODEL_TWO_SIDE, lmodel_twoside); + glEnable(GL_LIGHTING); + + glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, front_mat_shininess); + glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, front_mat_specular); + glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, front_mat_diffuse); +} + +void TestGLCanvas::InitGL() { - // Do nothing, to avoid flashing. + glClearColor(0.0f, 0.0f, 0.0f, 0.0f); + + glShadeModel(GL_SMOOTH); + glEnable(GL_DEPTH_TEST); + + InitMaterials(); + + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 25.0 ); + + glMatrixMode(GL_MODELVIEW); + glLoadIdentity(); + glTranslatef( 0.0, 0.0, -6.0 ); + + if (g_use_vertex_arrays) + { + glVertexPointer( 3, GL_FLOAT, 0, m_verts ); + glNormalPointer( GL_FLOAT, 0, m_norms ); + glEnable( GL_VERTEX_ARRAY ); + glEnable( GL_NORMAL_ARRAY ); + } } -#endif \ No newline at end of file