2003-03-15 04:35:45 +08:00
|
|
|
#include <osg/Geode>
|
|
|
|
#include <osg/ShapeDrawable>
|
|
|
|
#include <osg/Material>
|
|
|
|
#include <osg/Texture2D>
|
|
|
|
|
|
|
|
#include <osgProducer/Viewer>
|
|
|
|
|
|
|
|
#include <osgDB/ReadFile>
|
|
|
|
|
|
|
|
#include <osg/Math>
|
|
|
|
|
|
|
|
// for the grid data..
|
|
|
|
#include "../osghangglide/terrain_coords.h"
|
|
|
|
|
2004-11-25 03:10:44 +08:00
|
|
|
osg::Geode* createShapes( char* img_filename )
|
2003-03-15 04:35:45 +08:00
|
|
|
{
|
|
|
|
osg::Geode* geode = new osg::Geode();
|
|
|
|
|
|
|
|
// ---------------------------------------
|
|
|
|
// Set up a StateSet to texture the objects
|
|
|
|
// ---------------------------------------
|
|
|
|
osg::StateSet* stateset = new osg::StateSet();
|
|
|
|
|
2004-11-25 03:10:44 +08:00
|
|
|
if( ! img_filename ) img_filename = "Images/lz.rgb";
|
|
|
|
osg::Image* image = osgDB::readImageFile( img_filename );
|
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
if (image)
|
|
|
|
{
|
2005-11-18 04:22:55 +08:00
|
|
|
osg::Texture2D* texture = new osg::Texture2D;
|
|
|
|
texture->setImage(image);
|
|
|
|
stateset->setTextureAttributeAndModes(0,texture,osg::StateAttribute::ON);
|
2003-03-15 04:35:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
geode->setStateSet( stateset );
|
|
|
|
|
|
|
|
float radius = 0.8f;
|
|
|
|
float height = 1.0f;
|
|
|
|
|
2003-06-25 05:57:13 +08:00
|
|
|
osg::TessellationHints* hints = new osg::TessellationHints;
|
|
|
|
hints->setDetailRatio(0.5f);
|
|
|
|
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Sphere(osg::Vec3(0.0f,0.0f,0.0f),radius),hints));
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Box(osg::Vec3(2.0f,0.0f,0.0f),2*radius),hints));
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Cone(osg::Vec3(4.0f,0.0f,0.0f),radius,height),hints));
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Cylinder(osg::Vec3(6.0f,0.0f,0.0f),radius,height),hints));
|
2004-03-03 04:33:00 +08:00
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Capsule(osg::Vec3(8.0f,0.0f,0.0f),radius,height),hints));
|
2003-03-15 04:35:45 +08:00
|
|
|
|
2003-10-28 00:07:21 +08:00
|
|
|
osg::HeightField* grid = new osg::HeightField;
|
2005-05-09 21:09:07 +08:00
|
|
|
grid->allocate(38,39);
|
2003-03-15 04:35:45 +08:00
|
|
|
grid->setXInterval(0.28f);
|
|
|
|
grid->setYInterval(0.28f);
|
|
|
|
|
|
|
|
for(unsigned int r=0;r<39;++r)
|
|
|
|
{
|
2005-11-18 04:22:55 +08:00
|
|
|
for(unsigned int c=0;c<38;++c)
|
|
|
|
{
|
|
|
|
grid->setHeight(c,r,vertex[r+c*39][2]);
|
|
|
|
}
|
2003-03-15 04:35:45 +08:00
|
|
|
}
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(grid));
|
|
|
|
|
|
|
|
osg::ConvexHull* mesh = new osg::ConvexHull;
|
|
|
|
osg::Vec3Array* vertices = new osg::Vec3Array(4);
|
2004-03-03 04:33:00 +08:00
|
|
|
(*vertices)[0].set(9.0+0.0f,-1.0f+2.0f,-1.0f+0.0f);
|
|
|
|
(*vertices)[1].set(9.0+1.0f,-1.0f+0.0f,-1.0f+0.0f);
|
|
|
|
(*vertices)[2].set(9.0+2.0f,-1.0f+2.0f,-1.0f+0.0f);
|
|
|
|
(*vertices)[3].set(9.0+1.0f,-1.0f+1.0f,-1.0f+2.0f);
|
2003-03-15 04:35:45 +08:00
|
|
|
osg::UByteArray* indices = new osg::UByteArray(12);
|
|
|
|
(*indices)[0]=0;
|
|
|
|
(*indices)[1]=2;
|
|
|
|
(*indices)[2]=1;
|
|
|
|
(*indices)[3]=0;
|
|
|
|
(*indices)[4]=1;
|
|
|
|
(*indices)[5]=3;
|
|
|
|
(*indices)[6]=1;
|
|
|
|
(*indices)[7]=2;
|
|
|
|
(*indices)[8]=3;
|
|
|
|
(*indices)[9]=2;
|
|
|
|
(*indices)[10]=0;
|
|
|
|
(*indices)[11]=3;
|
|
|
|
mesh->setVertices(vertices);
|
|
|
|
mesh->setIndices(indices);
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(mesh));
|
|
|
|
|
|
|
|
return geode;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
|
|
{
|
|
|
|
|
|
|
|
// use an ArgumentParser object to manage the program arguments.
|
|
|
|
osg::ArgumentParser arguments(&argc,argv);
|
|
|
|
|
|
|
|
// set up the usage document, in case we need to print out how to use this program.
|
2003-04-09 19:44:32 +08:00
|
|
|
arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is the example which demonstrates the osg::Shape classes.");
|
2004-11-25 03:10:44 +08:00
|
|
|
arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] [image_filename]");
|
2003-03-15 04:35:45 +08:00
|
|
|
arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
|
|
|
|
|
|
|
|
// construct the viewer.
|
|
|
|
osgProducer::Viewer viewer(arguments);
|
|
|
|
|
|
|
|
// set up the value with sensible default event handlers.
|
|
|
|
viewer.setUpViewer(osgProducer::Viewer::STANDARD_SETTINGS);
|
|
|
|
|
|
|
|
// get details on keyboard and mouse bindings used by the viewer.
|
|
|
|
viewer.getUsage(*arguments.getApplicationUsage());
|
|
|
|
|
|
|
|
// if user request help write it out to cout.
|
|
|
|
if (arguments.read("-h") || arguments.read("--help"))
|
|
|
|
{
|
|
|
|
arguments.getApplicationUsage()->write(std::cout);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// any option left unread are converted into errors to write out later.
|
|
|
|
arguments.reportRemainingOptionsAsUnrecognized();
|
|
|
|
|
|
|
|
// report any errors if they have occured when parsing the program aguments.
|
|
|
|
if (arguments.errors())
|
|
|
|
{
|
|
|
|
arguments.writeErrorMessages(std::cout);
|
|
|
|
return 1;
|
|
|
|
}
|
2004-11-25 03:10:44 +08:00
|
|
|
|
|
|
|
char* img_filename = 0;
|
|
|
|
for( int pos = 1; pos < arguments.argc(); ++pos )
|
|
|
|
{
|
2005-11-18 04:22:55 +08:00
|
|
|
if( arguments.isString(pos) )
|
|
|
|
{
|
|
|
|
img_filename = arguments[pos];
|
|
|
|
break;
|
|
|
|
}
|
2004-11-25 03:10:44 +08:00
|
|
|
}
|
2003-03-15 04:35:45 +08:00
|
|
|
|
2004-11-25 03:10:44 +08:00
|
|
|
osg::Node* node = createShapes( img_filename );
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
// add model to viewer.
|
|
|
|
viewer.setSceneData( node );
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
while( !viewer.done() )
|
|
|
|
{
|
|
|
|
// wait for all cull and draw threads to complete.
|
|
|
|
viewer.sync();
|
|
|
|
|
|
|
|
// update the scene by traversing it with the the update visitor which will
|
|
|
|
// call all node update callbacks and animations.
|
|
|
|
viewer.update();
|
|
|
|
|
|
|
|
// fire off the cull and draw traversals of the scene.
|
|
|
|
viewer.frame();
|
|
|
|
|
|
|
|
}
|
2003-03-25 18:05:09 +08:00
|
|
|
|
|
|
|
// wait for all cull and draw threads to complete before exit.
|
|
|
|
viewer.sync();
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|