2007-06-12 22:20:16 +08:00
|
|
|
/* OpenSceneGraph example, osgshape.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
#include <osg/Geode>
|
|
|
|
#include <osg/ShapeDrawable>
|
|
|
|
#include <osg/Material>
|
|
|
|
#include <osg/Texture2D>
|
2009-11-10 20:01:28 +08:00
|
|
|
#include <osgUtil/ShaderGen>
|
2003-03-15 04:35:45 +08:00
|
|
|
|
2007-01-11 19:47:01 +08:00
|
|
|
#include <osgViewer/Viewer>
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
#include <osgDB/ReadFile>
|
2009-11-10 20:01:28 +08:00
|
|
|
#include <osgDB/WriteFile>
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
#include <osg/Math>
|
|
|
|
|
|
|
|
// for the grid data..
|
|
|
|
#include "../osghangglide/terrain_coords.h"
|
|
|
|
|
2007-01-11 19:47:01 +08:00
|
|
|
osg::Geode* createShapes()
|
2003-03-15 04:35:45 +08:00
|
|
|
{
|
|
|
|
osg::Geode* geode = new osg::Geode();
|
|
|
|
|
2009-11-10 20:01:28 +08:00
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
// ---------------------------------------
|
|
|
|
// Set up a StateSet to texture the objects
|
|
|
|
// ---------------------------------------
|
|
|
|
osg::StateSet* stateset = new osg::StateSet();
|
|
|
|
|
2007-01-11 19:47:01 +08:00
|
|
|
osg::Image* image = osgDB::readImageFile( "Images/lz.rgb" );
|
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);
|
2009-11-10 20:01:28 +08:00
|
|
|
texture->setFilter(osg::Texture::MIN_FILTER, osg::Texture::LINEAR);
|
|
|
|
stateset->setTextureAttributeAndModes(0,texture, osg::StateAttribute::ON);
|
2003-03-15 04:35:45 +08:00
|
|
|
}
|
|
|
|
|
2009-11-10 20:01:28 +08:00
|
|
|
stateset->setMode(GL_LIGHTING, osg::StateAttribute::ON);
|
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
geode->setStateSet( stateset );
|
2009-11-10 20:01:28 +08:00
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
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));
|
2009-11-10 20:01:28 +08:00
|
|
|
|
2003-03-15 04:35:45 +08:00
|
|
|
return geode;
|
|
|
|
}
|
|
|
|
|
2007-01-11 19:47:01 +08:00
|
|
|
int main(int, char **)
|
2003-03-15 04:35:45 +08:00
|
|
|
{
|
|
|
|
// construct the viewer.
|
2007-01-11 19:47:01 +08:00
|
|
|
osgViewer::Viewer viewer;
|
2003-03-15 04:35:45 +08:00
|
|
|
|
|
|
|
// add model to viewer.
|
2007-01-11 19:47:01 +08:00
|
|
|
viewer.setSceneData( createShapes() );
|
2003-03-15 04:35:45 +08:00
|
|
|
|
2007-01-11 19:47:01 +08:00
|
|
|
return viewer.run();
|
2003-03-15 04:35:45 +08:00
|
|
|
}
|