2007-01-08 18:00:16 +08:00
|
|
|
#include <osgViewer/Viewer>
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
#include <osg/Notify>
|
|
|
|
|
|
|
|
#include <osg/Texture2D>
|
|
|
|
#include <osg/TexEnv>
|
|
|
|
#include <osg/TexGen>
|
|
|
|
|
|
|
|
#include <osgDB/Registry>
|
|
|
|
#include <osgDB/ReadFile>
|
|
|
|
|
|
|
|
#include <osgGA/TrackballManipulator>
|
|
|
|
#include <osgGA/FlightManipulator>
|
|
|
|
#include <osgGA/DriveManipulator>
|
|
|
|
|
|
|
|
#include <osgUtil/Optimizer>
|
|
|
|
|
2007-01-08 18:00:16 +08:00
|
|
|
#include <iostream>
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
|
|
{
|
|
|
|
// use an ArgumentParser object to manage the program arguments.
|
|
|
|
osg::ArgumentParser arguments(&argc,argv);
|
|
|
|
|
|
|
|
// construct the viewer.
|
2007-01-08 18:00:16 +08:00
|
|
|
osgViewer::Viewer viewer;
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
// load the nodes from the commandline arguments.
|
|
|
|
osg::Node* rootnode = osgDB::readNodeFiles(arguments);
|
|
|
|
if (!rootnode)
|
|
|
|
{
|
2007-01-08 18:00:16 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"Please specify and model filename on the command line."<<std::endl;
|
2003-03-15 04:35:45 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
osg::Image* image = osgDB::readImageFile("Images/reflect.rgb");
|
|
|
|
if (image)
|
|
|
|
{
|
|
|
|
osg::Texture2D* texture = new osg::Texture2D;
|
|
|
|
texture->setImage(image);
|
|
|
|
|
|
|
|
osg::TexGen* texgen = new osg::TexGen;
|
|
|
|
texgen->setMode(osg::TexGen::SPHERE_MAP);
|
|
|
|
|
|
|
|
osg::TexEnv* texenv = new osg::TexEnv;
|
|
|
|
texenv->setMode(osg::TexEnv::BLEND);
|
|
|
|
texenv->setColor(osg::Vec4(0.3f,0.3f,0.3f,0.3f));
|
|
|
|
|
|
|
|
osg::StateSet* stateset = new osg::StateSet;
|
|
|
|
stateset->setTextureAttributeAndModes(1,texture,osg::StateAttribute::ON);
|
|
|
|
stateset->setTextureAttributeAndModes(1,texgen,osg::StateAttribute::ON);
|
|
|
|
stateset->setTextureAttribute(1,texenv);
|
|
|
|
|
|
|
|
rootnode->setStateSet(stateset);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"unable to load reflect map, model will not be mutlitextured"<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
// run optimization over the scene graph
|
|
|
|
osgUtil::Optimizer optimzer;
|
|
|
|
optimzer.optimize(rootnode);
|
|
|
|
|
|
|
|
// add a viewport to the viewer and attach the scene graph.
|
|
|
|
viewer.setSceneData( rootnode );
|
|
|
|
|
|
|
|
// create the windows and run the threads.
|
2003-04-08 23:18:45 +08:00
|
|
|
viewer.realize();
|
2003-03-15 04:35:45 +08:00
|
|
|
|
2003-04-11 03:32:32 +08:00
|
|
|
for(unsigned int contextID = 0;
|
2007-01-08 18:00:16 +08:00
|
|
|
contextID<osg::DisplaySettings::instance()->getMaxNumberOfGraphicsContexts();
|
2003-04-11 03:32:32 +08:00
|
|
|
++contextID)
|
|
|
|
{
|
|
|
|
osg::Texture::Extensions* textExt = osg::Texture::getExtensions(contextID,false);
|
|
|
|
if (textExt)
|
|
|
|
{
|
|
|
|
if (!textExt->isMultiTexturingSupported())
|
|
|
|
{
|
2005-12-02 00:43:40 +08:00
|
|
|
std::cout<<"Warning: multi-texturing not supported by OpenGL drivers, unable to run application."<<std::endl;
|
2003-04-11 03:32:32 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-08 18:00:16 +08:00
|
|
|
return viewer.run();
|
2003-03-15 04:35:45 +08:00
|
|
|
}
|