2007-06-12 22:20:16 +08:00
|
|
|
/* OpenSceneGraph example, osgviewerGlut.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2006-10-02 00:14:16 +08:00
|
|
|
// (C) 2005 Mike Weiblen http://mew.cx/ released under the OSGPL.
|
|
|
|
// Simple example using GLUT to create an OpenGL window and OSG for rendering.
|
|
|
|
// Derived from osgGLUTsimple.cpp and osgkeyboardmouse.cpp
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
#ifdef __APPLE__
|
|
|
|
# include <GLUT/glut.h>
|
|
|
|
#else
|
|
|
|
# include <GL/glut.h>
|
|
|
|
#endif
|
|
|
|
|
2007-06-02 20:03:24 +08:00
|
|
|
#include <osgViewer/Viewer>
|
2007-06-07 00:23:20 +08:00
|
|
|
#include <osgViewer/ViewerEventHandlers>
|
2006-10-02 00:14:16 +08:00
|
|
|
#include <osgGA/TrackballManipulator>
|
|
|
|
#include <osgDB/ReadFile>
|
|
|
|
|
2007-06-02 20:03:24 +08:00
|
|
|
osg::ref_ptr<osgViewer::Viewer> viewer;
|
2007-06-08 17:45:11 +08:00
|
|
|
osg::observer_ptr<osgViewer::GraphicsWindow> window;
|
2006-10-02 00:14:16 +08:00
|
|
|
|
|
|
|
void display(void)
|
|
|
|
{
|
|
|
|
// update and render the scene graph
|
2007-06-08 17:45:11 +08:00
|
|
|
if (viewer.valid()) viewer->frame();
|
2006-10-02 00:14:16 +08:00
|
|
|
|
|
|
|
// Swap Buffers
|
|
|
|
glutSwapBuffers();
|
|
|
|
glutPostRedisplay();
|
|
|
|
}
|
|
|
|
|
|
|
|
void reshape( int w, int h )
|
|
|
|
{
|
|
|
|
// update the window dimensions, in case the window has been resized.
|
2007-06-08 17:45:11 +08:00
|
|
|
if (window.valid())
|
|
|
|
{
|
|
|
|
window->resized(window->getTraits()->x, window->getTraits()->y, w, h);
|
|
|
|
window->getEventQueue()->windowResize(window->getTraits()->x, window->getTraits()->y, w, h );
|
|
|
|
}
|
2006-10-02 00:14:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void mousebutton( int button, int state, int x, int y )
|
|
|
|
{
|
2007-06-08 17:45:11 +08:00
|
|
|
if (window.valid())
|
|
|
|
{
|
|
|
|
if (state==0) window->getEventQueue()->mouseButtonPress( x, y, button+1 );
|
|
|
|
else window->getEventQueue()->mouseButtonRelease( x, y, button+1 );
|
|
|
|
}
|
2006-10-02 00:14:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void mousemove( int x, int y )
|
|
|
|
{
|
2007-06-08 17:45:11 +08:00
|
|
|
if (window.valid())
|
|
|
|
{
|
|
|
|
window->getEventQueue()->mouseMotion( x, y );
|
|
|
|
}
|
2006-10-02 00:14:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void keyboard( unsigned char key, int /*x*/, int /*y*/ )
|
|
|
|
{
|
|
|
|
switch( key )
|
|
|
|
{
|
|
|
|
case 27:
|
2007-06-08 17:45:11 +08:00
|
|
|
// clean up the viewer
|
|
|
|
if (viewer.valid()) viewer = 0;
|
2006-10-02 00:14:16 +08:00
|
|
|
glutDestroyWindow(glutGetWindow());
|
|
|
|
break;
|
|
|
|
default:
|
2007-06-08 17:45:11 +08:00
|
|
|
if (window.valid())
|
|
|
|
{
|
|
|
|
window->getEventQueue()->keyPress( (osgGA::GUIEventAdapter::KeySymbol) key );
|
|
|
|
window->getEventQueue()->keyRelease( (osgGA::GUIEventAdapter::KeySymbol) key );
|
|
|
|
}
|
2006-10-02 00:14:16 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
|
|
{
|
|
|
|
glutInit(&argc, argv);
|
|
|
|
|
|
|
|
if (argc<2)
|
|
|
|
{
|
|
|
|
std::cout << argv[0] <<": requires filename argument." << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// load the scene.
|
|
|
|
osg::ref_ptr<osg::Node> loadedModel = osgDB::readNodeFile(argv[1]);
|
|
|
|
if (!loadedModel)
|
|
|
|
{
|
|
|
|
std::cout << argv[0] <<": No data loaded." << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
glutInitDisplayMode( GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH | GLUT_ALPHA );
|
|
|
|
glutInitWindowPosition( 100, 100 );
|
|
|
|
glutInitWindowSize( 800, 600 );
|
|
|
|
glutCreateWindow( argv[0] );
|
|
|
|
glutDisplayFunc( display );
|
|
|
|
glutReshapeFunc( reshape );
|
|
|
|
glutMouseFunc( mousebutton );
|
|
|
|
glutMotionFunc( mousemove );
|
|
|
|
glutKeyboardFunc( keyboard );
|
|
|
|
|
|
|
|
// create the view of the scene.
|
2007-06-02 20:03:24 +08:00
|
|
|
viewer = new osgViewer::Viewer;
|
2007-06-03 17:34:28 +08:00
|
|
|
window = viewer->setUpViewerAsEmbeddedInWindow(100,100,800,600);
|
2006-10-02 00:14:16 +08:00
|
|
|
viewer->setSceneData(loadedModel.get());
|
|
|
|
viewer->setCameraManipulator(new osgGA::TrackballManipulator);
|
2007-06-02 20:03:24 +08:00
|
|
|
viewer->addEventHandler(new osgViewer::StatsHandler);
|
|
|
|
viewer->realize();
|
2006-10-02 00:14:16 +08:00
|
|
|
|
|
|
|
glutMainLoop();
|
2007-06-02 20:03:24 +08:00
|
|
|
|
2006-10-02 00:14:16 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*EOF*/
|