2000-02-28 03:22:57 -05:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Name: cube.cpp
|
|
|
|
|
// Purpose: wxGLCanvas demo program
|
|
|
|
|
// Author: Julian Smart
|
|
|
|
|
// Modified by:
|
|
|
|
|
// Created: 04/01/98
|
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
|
// Copyright: (c) Julian Smart
|
2001-03-16 14:37:50 -05:00
|
|
|
|
// Licence: wxWindows licence
|
2000-02-28 03:22:57 -05:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2002-08-31 18:31:03 -04:00
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
#pragma implementation
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
|
#pragma hdrstop
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
|
#include "wx/wx.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "wx/log.h"
|
|
|
|
|
|
2000-03-08 03:32:31 -05:00
|
|
|
|
#if !wxUSE_GLCANVAS
|
|
|
|
|
#error Please set wxUSE_GLCANVAS to 1 in setup.h.
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
#include "cube.h"
|
|
|
|
|
|
2001-03-16 14:37:50 -05:00
|
|
|
|
#ifndef __WXMSW__ // for wxStopWatch, see remark below
|
2001-07-22 10:23:55 -04:00
|
|
|
|
#if defined(__WXMAC__) && !defined(__DARWIN__)
|
|
|
|
|
#include <utime.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#else
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
#include <sys/unistd.h>
|
|
|
|
|
#endif
|
2000-02-28 03:22:57 -05:00
|
|
|
|
#else
|
|
|
|
|
#include <sys/timeb.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define ID_NEW_WINDOW 10000
|
|
|
|
|
#define ID_DEF_ROTATE_LEFT_KEY 10001
|
|
|
|
|
#define ID_DEF_ROTATE_RIGHT_KEY 10002
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------
|
|
|
|
|
Control to get a keycode
|
|
|
|
|
----------------------------------------------------------*/
|
|
|
|
|
class ScanCodeCtrl : public wxTextCtrl
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ScanCodeCtrl( wxWindow* parent, wxWindowID id, int code,
|
|
|
|
|
const wxPoint& pos, const wxSize& size );
|
|
|
|
|
void OnChar( wxKeyEvent& event ) { } /* do nothing */
|
|
|
|
|
void OnKeyDown(wxKeyEvent& event);
|
|
|
|
|
private:
|
|
|
|
|
// any class wishing to process wxWindows events must use this macro
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
};
|
|
|
|
|
BEGIN_EVENT_TABLE( ScanCodeCtrl, wxTextCtrl )
|
|
|
|
|
EVT_CHAR( ScanCodeCtrl::OnChar )
|
|
|
|
|
EVT_KEY_DOWN( ScanCodeCtrl::OnKeyDown )
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
|
ScanCodeCtrl::ScanCodeCtrl( wxWindow* parent, wxWindowID id, int code,
|
|
|
|
|
const wxPoint& pos, const wxSize& size )
|
|
|
|
|
: wxTextCtrl( parent, id, "", pos, size )
|
|
|
|
|
{ wxString buf;
|
|
|
|
|
buf.Printf( "0x%04x", code );
|
|
|
|
|
SetValue( buf );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ScanCodeCtrl::OnKeyDown( wxKeyEvent& event )
|
|
|
|
|
{ wxString buf;
|
Deprecated wxSizer::Remove( wxWindow* ), s/Remove/Detach/ in most places.
Made wxSizer child list typesafe. I've not added the wxList implicit
conversion kludge yet, let's see who complains first perhaps..
Deprecated wxSizer::{G,S}etOption in favour of {G,S}etProportion in line
with the parameter name change in the docs.
Added {G,S}etSpacer consistent with the accessors for windows/sizers.
Made all wxSizer index parameters size_t -- we support no sensible
interpretation for negative indexes in them. Hopefully this will
cause no real problems, but code doing (eg. Remove( 0 )) will need
to change to use 0u to resolve the ambiguity with overloaded members.
This is probably a Good Thing though, ymmv.
s/FALSE/false/g ; s/TRUE/true/g ; s/wxASSERT/wxASSERT_MSG/g in sizer.{cpp,h}
Fixed (I hope) the brokenness in wxSizer::Show -- I have no code to test
this yet, so it's a blind change, but spacers should now be hidden correctly
instead of ignored, and it should be properly reversable over multiple
calls now too.
removed pointless private scoping around DECLARE_CLASS macros.
Replace 0's I added previously with NULL -- not like that will end the
email thread either..
Added Add( wxSizerItem * ) & co. There are probably a couple of other
places we can usefully do something like this too. Stopped short of
refactoring everything to raise some issues about sizer method recursion
on -dev.
Updated wxSizer docs some more, they are still incomplete but getting
better.
wrapped KeyCode in wxDEPRECATED, converted all (gtk build) instances
to GetKeyCode. There may be a few left for other ports.
Fixed a couple of other random compile warnings along the way.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-01-07 05:22:07 -05:00
|
|
|
|
buf.Printf( "0x%04x", event.GetKeyCode() );
|
2000-02-28 03:22:57 -05:00
|
|
|
|
SetValue( buf );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------
|
|
|
|
|
Dialog for defining a keypress
|
|
|
|
|
-------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
class ScanCodeDialog : public wxDialog
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ScanCodeDialog( wxWindow* parent, wxWindowID id, const int code,
|
|
|
|
|
const wxString &descr, const wxString& title );
|
2001-03-16 14:37:50 -05:00
|
|
|
|
int GetValue();
|
2000-02-28 03:22:57 -05:00
|
|
|
|
private:
|
|
|
|
|
ScanCodeCtrl *m_ScanCode;
|
|
|
|
|
wxTextCtrl *m_Description;
|
|
|
|
|
};
|
|
|
|
|
|
2001-03-16 14:37:50 -05:00
|
|
|
|
ScanCodeDialog::ScanCodeDialog( wxWindow* parent, wxWindowID id,
|
2000-02-28 03:22:57 -05:00
|
|
|
|
const int code, const wxString &descr, const wxString& title )
|
|
|
|
|
: wxDialog( parent, id, title, wxPoint(-1, -1), wxSize(96*2,76*2) )
|
|
|
|
|
{
|
2001-03-16 14:37:50 -05:00
|
|
|
|
new wxStaticText( this, -1, "Scancode", wxPoint(4*2,3*2),
|
2000-02-28 03:22:57 -05:00
|
|
|
|
wxSize(31*2,12*2) );
|
2001-03-16 14:37:50 -05:00
|
|
|
|
m_ScanCode = new ScanCodeCtrl( this, -1, code, wxPoint(37*2,6*2),
|
2000-02-28 03:22:57 -05:00
|
|
|
|
wxSize(53*2,14*2) );
|
|
|
|
|
|
|
|
|
|
new wxStaticText( this, -1, "Description", wxPoint(4*2,24*2),
|
|
|
|
|
wxSize(32*2,12*2) );
|
|
|
|
|
m_Description = new wxTextCtrl( this, -1, descr, wxPoint(37*2,27*2),
|
|
|
|
|
wxSize(53*2,14*2) );
|
|
|
|
|
|
|
|
|
|
new wxButton( this, wxID_OK, "Ok", wxPoint(20*2,50*2), wxSize(20*2,13*2) );
|
|
|
|
|
new wxButton( this, wxID_CANCEL, "Cancel", wxPoint(44*2,50*2),
|
|
|
|
|
wxSize(25*2,13*2) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int ScanCodeDialog::GetValue()
|
|
|
|
|
{
|
|
|
|
|
int code;
|
|
|
|
|
wxString buf = m_ScanCode->GetValue();
|
|
|
|
|
sscanf( buf.c_str(), "%i", &code );
|
|
|
|
|
return( code );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
Utility function to get the elapsed time (in msec) since a given point
|
2001-03-16 14:37:50 -05:00
|
|
|
|
in time (in sec) (because current version of wxGetElapsedTime doesn<EFBFBD>t
|
|
|
|
|
works right with glibc-2.1 and linux, at least for me)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
-----------------------------------------------------------------------*/
|
|
|
|
|
unsigned long wxStopWatch( unsigned long *sec_base )
|
|
|
|
|
{
|
|
|
|
|
unsigned long secs,msec;
|
|
|
|
|
|
2001-11-16 02:17:37 -05:00
|
|
|
|
#if defined(__WXMSW__)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
struct timeb tb;
|
|
|
|
|
ftime( &tb );
|
|
|
|
|
secs = tb.time;
|
|
|
|
|
msec = tb.millitm;
|
2001-11-16 02:17:37 -05:00
|
|
|
|
#elif defined(__WXMAC__) && !defined(__DARWIN__)
|
|
|
|
|
wxLongLong tl = wxGetLocalTimeMillis();
|
|
|
|
|
secs = (unsigned long) (tl.GetValue() / 1000);
|
|
|
|
|
msec = (unsigned long) (tl.GetValue() - secs*1000);
|
|
|
|
|
#else
|
|
|
|
|
// think every unice has gettimeofday
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
gettimeofday( &tv, (struct timezone *)NULL );
|
|
|
|
|
secs = tv.tv_sec;
|
|
|
|
|
msec = tv.tv_usec/1000;
|
2000-02-28 03:22:57 -05:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if( *sec_base == 0 )
|
|
|
|
|
*sec_base = secs;
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
return( (secs-*sec_base)*1000 + msec );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------
|
|
|
|
|
Implementation of Test-GLCanvas
|
|
|
|
|
-----------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(TestGLCanvas, wxGLCanvas)
|
|
|
|
|
EVT_SIZE(TestGLCanvas::OnSize)
|
|
|
|
|
EVT_PAINT(TestGLCanvas::OnPaint)
|
|
|
|
|
EVT_ERASE_BACKGROUND(TestGLCanvas::OnEraseBackground)
|
|
|
|
|
EVT_KEY_DOWN( TestGLCanvas::OnKeyDown )
|
|
|
|
|
EVT_KEY_UP( TestGLCanvas::OnKeyUp )
|
|
|
|
|
EVT_ENTER_WINDOW( TestGLCanvas::OnEnterWindow )
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
|
unsigned long TestGLCanvas::m_secbase = 0;
|
|
|
|
|
int TestGLCanvas::m_TimeInitialized = 0;
|
|
|
|
|
unsigned long TestGLCanvas::m_xsynct;
|
|
|
|
|
unsigned long TestGLCanvas::m_gsynct;
|
|
|
|
|
|
|
|
|
|
TestGLCanvas::TestGLCanvas(wxWindow *parent, wxWindowID id,
|
|
|
|
|
const wxPoint& pos, const wxSize& size, long style, const wxString& name):
|
|
|
|
|
wxGLCanvas(parent, (wxGLCanvas*) NULL, id, pos, size, style, name )
|
|
|
|
|
{
|
|
|
|
|
m_init = FALSE;
|
|
|
|
|
m_gllist = 0;
|
|
|
|
|
m_rleft = WXK_LEFT;
|
|
|
|
|
m_rright = WXK_RIGHT;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-16 14:37:50 -05:00
|
|
|
|
TestGLCanvas::TestGLCanvas(wxWindow *parent, const TestGLCanvas &other,
|
2000-02-28 03:22:57 -05:00
|
|
|
|
wxWindowID id, const wxPoint& pos, const wxSize& size, long style,
|
|
|
|
|
const wxString& name ) :
|
|
|
|
|
wxGLCanvas(parent, other.GetContext(), id, pos, size, style, name )
|
|
|
|
|
{
|
|
|
|
|
m_init = FALSE;
|
|
|
|
|
m_gllist = other.m_gllist; /* share display list */
|
|
|
|
|
m_rleft = WXK_LEFT;
|
|
|
|
|
m_rright = WXK_RIGHT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestGLCanvas::~TestGLCanvas()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::Render()
|
|
|
|
|
{
|
|
|
|
|
wxPaintDC dc(this);
|
|
|
|
|
|
|
|
|
|
#ifndef __WXMOTIF__
|
|
|
|
|
if (!GetContext()) return;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
SetCurrent();
|
|
|
|
|
/* init OpenGL once, but after SetCurrent */
|
|
|
|
|
if (!m_init)
|
|
|
|
|
{
|
|
|
|
|
InitGL();
|
|
|
|
|
m_init = TRUE;
|
|
|
|
|
}
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2001-11-16 02:17:37 -05:00
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
|
glLoadIdentity();
|
|
|
|
|
glFrustum(-0.5F, 0.5F, -0.5F, 0.5F, 1.0F, 3.0F);
|
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
/* clear color and depth buffers */
|
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
|
|
|
|
|
|
|
|
if( m_gllist == 0 )
|
|
|
|
|
{
|
|
|
|
|
m_gllist = glGenLists( 1 );
|
2001-03-16 14:37:50 -05:00
|
|
|
|
glNewList( m_gllist, GL_COMPILE_AND_EXECUTE );
|
2000-02-28 03:22:57 -05:00
|
|
|
|
/* draw six faces of a cube */
|
|
|
|
|
glBegin(GL_QUADS);
|
|
|
|
|
glNormal3f( 0.0F, 0.0F, 1.0F);
|
|
|
|
|
glVertex3f( 0.5F, 0.5F, 0.5F); glVertex3f(-0.5F, 0.5F, 0.5F);
|
|
|
|
|
glVertex3f(-0.5F,-0.5F, 0.5F); glVertex3f( 0.5F,-0.5F, 0.5F);
|
|
|
|
|
|
|
|
|
|
glNormal3f( 0.0F, 0.0F,-1.0F);
|
|
|
|
|
glVertex3f(-0.5F,-0.5F,-0.5F); glVertex3f(-0.5F, 0.5F,-0.5F);
|
|
|
|
|
glVertex3f( 0.5F, 0.5F,-0.5F); glVertex3f( 0.5F,-0.5F,-0.5F);
|
|
|
|
|
|
|
|
|
|
glNormal3f( 0.0F, 1.0F, 0.0F);
|
|
|
|
|
glVertex3f( 0.5F, 0.5F, 0.5F); glVertex3f( 0.5F, 0.5F,-0.5F);
|
|
|
|
|
glVertex3f(-0.5F, 0.5F,-0.5F); glVertex3f(-0.5F, 0.5F, 0.5F);
|
|
|
|
|
|
|
|
|
|
glNormal3f( 0.0F,-1.0F, 0.0F);
|
|
|
|
|
glVertex3f(-0.5F,-0.5F,-0.5F); glVertex3f( 0.5F,-0.5F,-0.5F);
|
|
|
|
|
glVertex3f( 0.5F,-0.5F, 0.5F); glVertex3f(-0.5F,-0.5F, 0.5F);
|
|
|
|
|
|
|
|
|
|
glNormal3f( 1.0F, 0.0F, 0.0F);
|
|
|
|
|
glVertex3f( 0.5F, 0.5F, 0.5F); glVertex3f( 0.5F,-0.5F, 0.5F);
|
|
|
|
|
glVertex3f( 0.5F,-0.5F,-0.5F); glVertex3f( 0.5F, 0.5F,-0.5F);
|
|
|
|
|
|
|
|
|
|
glNormal3f(-1.0F, 0.0F, 0.0F);
|
|
|
|
|
glVertex3f(-0.5F,-0.5F,-0.5F); glVertex3f(-0.5F,-0.5F, 0.5F);
|
|
|
|
|
glVertex3f(-0.5F, 0.5F, 0.5F); glVertex3f(-0.5F, 0.5F,-0.5F);
|
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
|
|
glEndList();
|
|
|
|
|
}
|
|
|
|
|
else
|
2001-03-16 14:37:50 -05:00
|
|
|
|
glCallList( m_gllist );
|
2000-02-28 03:22:57 -05:00
|
|
|
|
|
|
|
|
|
glFlush();
|
|
|
|
|
SwapBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::OnEnterWindow( wxMouseEvent& event )
|
|
|
|
|
{
|
|
|
|
|
SetFocus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::OnPaint( wxPaintEvent& event )
|
|
|
|
|
{
|
|
|
|
|
Render();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::OnSize(wxSizeEvent& event)
|
|
|
|
|
{
|
2001-11-16 02:17:37 -05:00
|
|
|
|
// this is also necessary to update the context on some platforms
|
|
|
|
|
wxGLCanvas::OnSize(event);
|
2000-02-28 03:22:57 -05:00
|
|
|
|
|
2001-11-16 02:17:37 -05:00
|
|
|
|
// set GL viewport (not called by wxGLCanvas::OnSize on all platforms...)
|
2002-03-17 09:16:03 -05:00
|
|
|
|
int w, h;
|
|
|
|
|
GetClientSize(&w, &h);
|
2000-02-28 03:22:57 -05:00
|
|
|
|
#ifndef __WXMOTIF__
|
|
|
|
|
if (GetContext())
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
SetCurrent();
|
2001-11-16 02:17:37 -05:00
|
|
|
|
glViewport(0, 0, (GLint) w, (GLint) h);
|
2000-02-28 03:22:57 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::OnEraseBackground(wxEraseEvent& event)
|
|
|
|
|
{
|
|
|
|
|
// Do nothing, to avoid flashing.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::InitGL()
|
|
|
|
|
{
|
|
|
|
|
SetCurrent();
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
/* set viewing projection */
|
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
|
glFrustum(-0.5F, 0.5F, -0.5F, 0.5F, 1.0F, 3.0F);
|
|
|
|
|
|
|
|
|
|
/* position viewer */
|
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
|
glTranslatef(0.0F, 0.0F, -2.0F);
|
|
|
|
|
|
|
|
|
|
/* position object */
|
|
|
|
|
glRotatef(30.0F, 1.0F, 0.0F, 0.0F);
|
|
|
|
|
glRotatef(30.0F, 0.0F, 1.0F, 0.0F);
|
|
|
|
|
|
|
|
|
|
glEnable(GL_DEPTH_TEST);
|
|
|
|
|
glEnable(GL_LIGHTING);
|
|
|
|
|
glEnable(GL_LIGHT0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GLfloat TestGLCanvas::CalcRotateSpeed( unsigned long acceltime )
|
|
|
|
|
{
|
|
|
|
|
GLfloat t,v;
|
|
|
|
|
|
|
|
|
|
t = ((GLfloat)acceltime) / 1000.0f;
|
|
|
|
|
|
|
|
|
|
if( t < 0.5f )
|
|
|
|
|
v = t;
|
|
|
|
|
else if( t < 1.0f )
|
|
|
|
|
v = t * (2.0f - t);
|
|
|
|
|
else
|
|
|
|
|
v = 0.75f;
|
|
|
|
|
|
|
|
|
|
return(v);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GLfloat TestGLCanvas::CalcRotateAngle( unsigned long lasttime,
|
|
|
|
|
unsigned long acceltime )
|
|
|
|
|
{
|
|
|
|
|
GLfloat t,s1,s2;
|
|
|
|
|
|
|
|
|
|
t = ((GLfloat)(acceltime - lasttime)) / 1000.0f;
|
|
|
|
|
s1 = CalcRotateSpeed( lasttime );
|
|
|
|
|
s2 = CalcRotateSpeed( acceltime );
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
return( t * (s1 + s2) * 135.0f );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::Action( long code, unsigned long lasttime,
|
|
|
|
|
unsigned long acceltime )
|
|
|
|
|
{
|
|
|
|
|
GLfloat angle = CalcRotateAngle( lasttime, acceltime );
|
|
|
|
|
|
2001-03-16 14:37:50 -05:00
|
|
|
|
if (code == m_rleft)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
Rotate( angle );
|
2001-03-16 14:37:50 -05:00
|
|
|
|
else if (code == m_rright)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
Rotate( -angle );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::OnKeyDown( wxKeyEvent& event )
|
|
|
|
|
{
|
2003-01-13 00:17:41 -05:00
|
|
|
|
long evkey = event.GetKeyCode();
|
2000-02-28 03:22:57 -05:00
|
|
|
|
if (evkey == 0) return;
|
|
|
|
|
|
|
|
|
|
if (!m_TimeInitialized)
|
|
|
|
|
{
|
|
|
|
|
m_TimeInitialized = 1;
|
|
|
|
|
m_xsynct = event.m_timeStamp;
|
|
|
|
|
m_gsynct = wxStopWatch(&m_secbase);
|
|
|
|
|
|
|
|
|
|
m_Key = evkey;
|
|
|
|
|
m_StartTime = 0;
|
|
|
|
|
m_LastTime = 0;
|
|
|
|
|
m_LastRedraw = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned long currTime = event.m_timeStamp - m_xsynct;
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2001-10-10 12:37:33 -04:00
|
|
|
|
if (evkey != m_Key)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
{
|
|
|
|
|
m_Key = evkey;
|
|
|
|
|
m_LastRedraw = m_StartTime = m_LastTime = currTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (currTime >= m_LastRedraw) // Redraw:
|
|
|
|
|
{
|
|
|
|
|
Action( m_Key, m_LastTime-m_StartTime, currTime-m_StartTime );
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2001-11-16 02:17:37 -05:00
|
|
|
|
#if defined(__WXMAC__) && !defined(__DARWIN__)
|
2002-03-17 09:16:03 -05:00
|
|
|
|
m_LastRedraw = currTime; // wxStopWatch() doesn't work on Mac...
|
2001-11-16 02:17:37 -05:00
|
|
|
|
#else
|
2000-02-28 03:22:57 -05:00
|
|
|
|
m_LastRedraw = wxStopWatch(&m_secbase) - m_gsynct;
|
2001-11-16 02:17:37 -05:00
|
|
|
|
#endif
|
2000-02-28 03:22:57 -05:00
|
|
|
|
m_LastTime = currTime;
|
|
|
|
|
}
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
event.Skip();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::OnKeyUp( wxKeyEvent& event )
|
|
|
|
|
{
|
|
|
|
|
m_Key = 0;
|
|
|
|
|
m_StartTime = 0;
|
|
|
|
|
m_LastTime = 0;
|
|
|
|
|
m_LastRedraw = 0;
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
event.Skip();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestGLCanvas::Rotate( GLfloat deg )
|
|
|
|
|
{
|
|
|
|
|
SetCurrent();
|
|
|
|
|
|
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
|
glRotatef((GLfloat)deg, 0.0F, 0.0F, 1.0F);
|
|
|
|
|
Refresh(FALSE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -----------------------------------------------------------------------
|
|
|
|
|
Main Window
|
|
|
|
|
-------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
|
|
|
|
EVT_MENU(wxID_EXIT, MyFrame::OnExit)
|
|
|
|
|
EVT_MENU( ID_NEW_WINDOW, MyFrame::OnNewWindow)
|
|
|
|
|
EVT_MENU( ID_DEF_ROTATE_LEFT_KEY, MyFrame::OnDefRotateLeftKey)
|
|
|
|
|
EVT_MENU( ID_DEF_ROTATE_RIGHT_KEY, MyFrame::OnDefRotateRightKey)
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
|
// My frame constructor
|
|
|
|
|
MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos,
|
2001-03-16 14:37:50 -05:00
|
|
|
|
const wxSize& size, long style)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
: wxFrame(frame, -1, title, pos, size, style)
|
|
|
|
|
{
|
|
|
|
|
m_canvas = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Intercept menu commands
|
|
|
|
|
void MyFrame::OnExit(wxCommandEvent& event)
|
|
|
|
|
{
|
|
|
|
|
Destroy();
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-10 12:37:33 -04:00
|
|
|
|
void MyFrame::OnNewWindow(wxCommandEvent& event)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
{
|
|
|
|
|
MyFrame *frame = new MyFrame(NULL, "Cube OpenGL Demo Clone",
|
|
|
|
|
wxPoint(50, 50), wxSize(400, 300));
|
|
|
|
|
// Give it an icon
|
2000-07-15 15:51:35 -04:00
|
|
|
|
#ifdef __WXMSW__
|
2000-02-28 03:22:57 -05:00
|
|
|
|
frame->SetIcon(wxIcon("mondrian"));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Make a menubar
|
|
|
|
|
wxMenu *winMenu = new wxMenu;
|
|
|
|
|
|
|
|
|
|
winMenu->Append(wxID_EXIT, "&Close");
|
|
|
|
|
winMenu->Append(ID_NEW_WINDOW, "&New" );
|
|
|
|
|
wxMenuBar *menuBar = new wxMenuBar;
|
|
|
|
|
menuBar->Append(winMenu, "&Window");
|
|
|
|
|
|
|
|
|
|
winMenu = new wxMenu;
|
|
|
|
|
winMenu->Append(ID_DEF_ROTATE_LEFT_KEY, "Rotate &left");
|
|
|
|
|
winMenu->Append(ID_DEF_ROTATE_RIGHT_KEY, "Rotate &right");
|
|
|
|
|
menuBar->Append(winMenu, "&Key");
|
|
|
|
|
|
|
|
|
|
frame->SetMenuBar(menuBar);
|
|
|
|
|
|
2001-03-16 14:37:50 -05:00
|
|
|
|
frame->m_canvas = new TestGLCanvas( frame, *m_canvas, -1,
|
2001-11-16 02:17:37 -05:00
|
|
|
|
wxDefaultPosition, wxDefaultSize );
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
// Show the frame
|
|
|
|
|
frame->Show(TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-10 12:37:33 -04:00
|
|
|
|
void MyFrame::OnDefRotateLeftKey(wxCommandEvent& event)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
{
|
2001-03-16 14:37:50 -05:00
|
|
|
|
ScanCodeDialog dial( this, -1, m_canvas->m_rleft,
|
2000-02-28 03:22:57 -05:00
|
|
|
|
wxString("Left"), "Define key" );
|
|
|
|
|
int result = dial.ShowModal();
|
|
|
|
|
if( result == wxID_OK )
|
|
|
|
|
m_canvas->m_rleft = dial.GetValue();
|
|
|
|
|
}
|
2001-10-10 12:37:33 -04:00
|
|
|
|
void MyFrame::OnDefRotateRightKey(wxCommandEvent& event)
|
2000-02-28 03:22:57 -05:00
|
|
|
|
{
|
2001-03-16 14:37:50 -05:00
|
|
|
|
ScanCodeDialog dial( this, -1, m_canvas->m_rright,
|
2000-02-28 03:22:57 -05:00
|
|
|
|
wxString("Right"), "Define key" );
|
|
|
|
|
int result = dial.ShowModal();
|
|
|
|
|
if( result == wxID_OK )
|
|
|
|
|
m_canvas->m_rright = dial.GetValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------
|
|
|
|
|
Application object ( equivalent to main() )
|
|
|
|
|
------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
|
|
bool MyApp::OnInit(void)
|
|
|
|
|
{
|
|
|
|
|
wxLog::SetTraceMask(wxTraceMessages);
|
|
|
|
|
|
|
|
|
|
// Create the main frame window
|
|
|
|
|
MyFrame *frame = new MyFrame(NULL, "Cube OpenGL Demo", wxPoint(50, 50),
|
|
|
|
|
wxSize(400, 300));
|
|
|
|
|
// Give it an icon
|
|
|
|
|
#ifdef wx_msw
|
|
|
|
|
frame->SetIcon(wxIcon("mondrian"));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Make a menubar
|
|
|
|
|
wxMenu *winMenu = new wxMenu;
|
|
|
|
|
|
|
|
|
|
winMenu->Append(wxID_EXIT, "&Close");
|
|
|
|
|
winMenu->Append(ID_NEW_WINDOW, "&New" );
|
|
|
|
|
wxMenuBar *menuBar = new wxMenuBar;
|
|
|
|
|
menuBar->Append(winMenu, "&Window");
|
|
|
|
|
|
|
|
|
|
winMenu = new wxMenu;
|
|
|
|
|
winMenu->Append(ID_DEF_ROTATE_LEFT_KEY, "Rotate &left");
|
|
|
|
|
winMenu->Append(ID_DEF_ROTATE_RIGHT_KEY, "Rotate &right");
|
|
|
|
|
menuBar->Append(winMenu, "&Key");
|
|
|
|
|
|
|
|
|
|
frame->SetMenuBar(menuBar);
|
|
|
|
|
|
2001-11-16 02:17:37 -05:00
|
|
|
|
frame->m_canvas = new TestGLCanvas(frame, -1, wxDefaultPosition, wxDefaultSize);
|
2000-02-28 03:22:57 -05:00
|
|
|
|
|
|
|
|
|
// Show the frame
|
|
|
|
|
frame->Show(TRUE);
|
2001-03-16 14:37:50 -05:00
|
|
|
|
|
2000-02-28 03:22:57 -05:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|