2007-03-14 20:43:29 +08:00
|
|
|
#include <osg/Group>
|
|
|
|
#include <osg/Geode>
|
|
|
|
#include <osg/ShapeDrawable>
|
|
|
|
#include <osg/Texture2D>
|
|
|
|
#include <osg/PositionAttitudeTransform>
|
|
|
|
#include <osg/MatrixTransform>
|
|
|
|
#include <osg/CoordinateSystemNode>
|
|
|
|
#include <osg/ClusterCullingCallback>
|
2007-03-19 18:38:44 +08:00
|
|
|
#include <osg/ArgumentParser>
|
2007-03-14 20:43:29 +08:00
|
|
|
|
|
|
|
#include <osgDB/FileUtils>
|
|
|
|
#include <osgDB/ReadFile>
|
|
|
|
|
|
|
|
#include <osgText/FadeText>
|
|
|
|
|
2007-03-29 22:45:35 +08:00
|
|
|
#include <osgViewer/Viewer>
|
|
|
|
#include <osgViewer/StatsHandler>
|
|
|
|
|
|
|
|
#include <osgGA/TrackballManipulator>
|
|
|
|
#include <osgGA/FlightManipulator>
|
|
|
|
#include <osgGA/DriveManipulator>
|
|
|
|
#include <osgGA/KeySwitchMatrixManipulator>
|
|
|
|
#include <osgGA/StateSetManipulator>
|
|
|
|
#include <osgGA/AnimationPathManipulator>
|
|
|
|
#include <osgGA/TerrainManipulator>
|
|
|
|
|
|
|
|
|
2007-03-19 18:38:44 +08:00
|
|
|
#include <osgTerrain/TerrainNode>
|
2007-03-22 00:34:04 +08:00
|
|
|
#include <osgTerrain/GeometryTechnique>
|
2007-03-19 18:38:44 +08:00
|
|
|
#include <osgTerrain/Layer>
|
2007-03-14 20:43:29 +08:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
2007-03-26 23:52:22 +08:00
|
|
|
|
|
|
|
|
2007-03-19 18:38:44 +08:00
|
|
|
int main(int argc, char** argv)
|
2007-03-14 20:43:29 +08:00
|
|
|
{
|
2007-03-19 18:38:44 +08:00
|
|
|
osg::ArgumentParser arguments(&argc, argv);
|
2007-03-14 20:43:29 +08:00
|
|
|
|
2007-03-19 18:38:44 +08:00
|
|
|
// construct the viewer.
|
|
|
|
osgViewer::Viewer viewer;
|
2007-03-14 20:43:29 +08:00
|
|
|
|
2007-03-29 22:45:35 +08:00
|
|
|
// set up the camera manipulators.
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osgGA::KeySwitchMatrixManipulator> keyswitchManipulator = new osgGA::KeySwitchMatrixManipulator;
|
|
|
|
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '1', "Trackball", new osgGA::TrackballManipulator() );
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '2', "Flight", new osgGA::FlightManipulator() );
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '3', "Drive", new osgGA::DriveManipulator() );
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '4', "Terrain", new osgGA::TerrainManipulator() );
|
|
|
|
|
|
|
|
std::string pathfile;
|
|
|
|
char keyForAnimationPath = '5';
|
|
|
|
while (arguments.read("-p",pathfile))
|
|
|
|
{
|
|
|
|
osgGA::AnimationPathManipulator* apm = new osgGA::AnimationPathManipulator(pathfile);
|
|
|
|
if (apm || !apm->valid())
|
|
|
|
{
|
|
|
|
unsigned int num = keyswitchManipulator->getNumMatrixManipulators();
|
|
|
|
keyswitchManipulator->addMatrixManipulator( keyForAnimationPath, "Path", apm );
|
|
|
|
keyswitchManipulator->selectMatrixManipulator(num);
|
|
|
|
++keyForAnimationPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
viewer.setCameraManipulator( keyswitchManipulator.get() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// add the state manipulator
|
|
|
|
viewer.addEventHandler( new osgGA::StateSetManipulator(viewer.getCamera()->getOrCreateStateSet()) );
|
|
|
|
|
|
|
|
// add the stats handler
|
|
|
|
viewer.addEventHandler(new osgViewer::StatsHandler);
|
|
|
|
|
2007-03-19 18:38:44 +08:00
|
|
|
double x = 0.0;
|
|
|
|
double y = 0.0;
|
|
|
|
double w = 1.0;
|
|
|
|
double h = 1.0;
|
2007-03-14 20:43:29 +08:00
|
|
|
|
2007-03-22 00:34:04 +08:00
|
|
|
osg::ref_ptr<osgTerrain::TerrainNode> terrain = new osgTerrain::TerrainNode;
|
2007-03-27 19:23:57 +08:00
|
|
|
osg::ref_ptr<osgTerrain::Locator> locator = new osgTerrain::EllipsoidLocator(-osg::PI, -osg::PI*0.5, 2.0*osg::PI, osg::PI, 0.0);
|
2007-05-12 02:25:06 +08:00
|
|
|
osg::ref_ptr<osgTerrain::ValidDataOperator> validDataOperator = new osgTerrain::NoDataValue(0.0);
|
2007-03-26 23:52:22 +08:00
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
unsigned int layerNum = 0;
|
|
|
|
|
2007-04-30 17:47:35 +08:00
|
|
|
std::string filterName;
|
|
|
|
|
2007-03-19 18:38:44 +08:00
|
|
|
bool readParameter = false;
|
2007-04-11 19:20:42 +08:00
|
|
|
float minValue, maxValue;
|
2007-05-11 02:07:54 +08:00
|
|
|
float scale = 1.0f;
|
|
|
|
float offset = 0.0f;
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
int pos = 1;
|
|
|
|
while(pos<arguments.argc())
|
2007-03-14 20:43:29 +08:00
|
|
|
{
|
2007-03-19 18:38:44 +08:00
|
|
|
readParameter = false;
|
|
|
|
std::string filename;
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
if (arguments.read(pos, "--layer",layerNum))
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Set layer number to "<<layerNum<<std::endl;
|
|
|
|
readParameter = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (arguments.read(pos, "-e",x,y,w,h))
|
2007-03-26 23:52:22 +08:00
|
|
|
{
|
2007-03-27 19:23:57 +08:00
|
|
|
// define the extents.
|
|
|
|
locator = new osgTerrain::EllipsoidLocator(x,y,w,h,0);
|
2007-03-26 23:52:22 +08:00
|
|
|
readParameter = true;
|
|
|
|
}
|
2007-03-19 18:38:44 +08:00
|
|
|
|
2007-05-11 02:07:54 +08:00
|
|
|
else if (arguments.read(pos, "--transform",offset, scale) || arguments.read(pos, "-t",offset, scale))
|
|
|
|
{
|
|
|
|
// define the extents.
|
|
|
|
readParameter = true;
|
|
|
|
}
|
|
|
|
|
2007-05-10 20:33:56 +08:00
|
|
|
else if (arguments.read(pos, "--cartizian",x,y,w,h))
|
2007-05-04 00:23:19 +08:00
|
|
|
{
|
|
|
|
// define the extents.
|
|
|
|
locator = new osgTerrain::CartizianLocator(x,y,w,h,0);
|
|
|
|
readParameter = true;
|
|
|
|
}
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
else if (arguments.read(pos, "--hf",filename))
|
2007-03-14 20:43:29 +08:00
|
|
|
{
|
2007-03-19 18:38:44 +08:00
|
|
|
readParameter = true;
|
2007-03-26 23:52:22 +08:00
|
|
|
|
2007-03-29 00:28:20 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"--hf "<<filename<<std::endl;
|
2007-03-26 23:52:22 +08:00
|
|
|
|
|
|
|
osg::ref_ptr<osg::HeightField> hf = osgDB::readHeightFieldFile(filename);
|
|
|
|
if (hf.valid())
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osgTerrain::HeightFieldLayer> hfl = new osgTerrain::HeightFieldLayer;
|
|
|
|
hfl->setHeightField(hf.get());
|
|
|
|
|
|
|
|
hfl->setLocator(locator.get());
|
2007-05-12 02:25:06 +08:00
|
|
|
hfl->setValidDataOperator(validDataOperator.get());
|
2007-03-26 23:52:22 +08:00
|
|
|
|
2007-05-11 02:07:54 +08:00
|
|
|
if (offset!=0.0f || scale!=1.0f)
|
|
|
|
{
|
|
|
|
hfl->transform(offset,scale);
|
|
|
|
}
|
|
|
|
|
2007-03-26 23:52:22 +08:00
|
|
|
terrain->setElevationLayer(hfl.get());
|
|
|
|
|
|
|
|
osg::notify(osg::NOTICE)<<"created osgTerrain::HeightFieldLayer"<<std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"failed to create osgTerrain::HeightFieldLayer"<<std::endl;
|
|
|
|
}
|
|
|
|
|
2007-05-11 02:07:54 +08:00
|
|
|
scale = 1.0f;
|
|
|
|
offset = 0.0f;
|
|
|
|
|
2007-03-19 18:38:44 +08:00
|
|
|
}
|
2007-04-11 19:20:42 +08:00
|
|
|
|
|
|
|
else if (arguments.read(pos, "-d",filename) || arguments.read(pos, "--elevation-image",filename))
|
2007-03-26 23:52:22 +08:00
|
|
|
{
|
|
|
|
readParameter = true;
|
2007-03-29 00:28:20 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"--elevation-image "<<filename<<std::endl;
|
2007-03-26 23:52:22 +08:00
|
|
|
|
|
|
|
osg::ref_ptr<osg::Image> image = osgDB::readImageFile(filename);
|
|
|
|
if (image.valid())
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osgTerrain::ImageLayer> imageLayer = new osgTerrain::ImageLayer;
|
|
|
|
imageLayer->setImage(image.get());
|
|
|
|
imageLayer->setLocator(locator.get());
|
2007-05-12 02:25:06 +08:00
|
|
|
imageLayer->setValidDataOperator(validDataOperator.get());
|
2007-03-26 23:52:22 +08:00
|
|
|
|
2007-05-11 02:07:54 +08:00
|
|
|
if (offset!=0.0f || scale!=1.0f)
|
|
|
|
{
|
|
|
|
imageLayer->transform(offset,scale);
|
|
|
|
}
|
|
|
|
|
2007-03-26 23:52:22 +08:00
|
|
|
terrain->setElevationLayer(imageLayer.get());
|
|
|
|
|
|
|
|
osg::notify(osg::NOTICE)<<"created Elevation osgTerrain::ImageLayer"<<std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"failed to create osgTerrain::ImageLayer"<<std::endl;
|
|
|
|
}
|
2007-05-11 02:07:54 +08:00
|
|
|
|
|
|
|
scale = 1.0f;
|
|
|
|
offset = 0.0f;
|
|
|
|
|
2007-03-26 23:52:22 +08:00
|
|
|
}
|
2007-04-11 19:20:42 +08:00
|
|
|
|
|
|
|
else if (arguments.read(pos, "-c",filename) || arguments.read(pos, "--image",filename))
|
2007-03-19 18:38:44 +08:00
|
|
|
{
|
|
|
|
readParameter = true;
|
|
|
|
osg::notify(osg::NOTICE)<<"--image "<<filename<<" x="<<x<<" y="<<y<<" w="<<w<<" h="<<h<<std::endl;
|
2007-03-26 23:52:22 +08:00
|
|
|
|
|
|
|
osg::ref_ptr<osg::Image> image = osgDB::readImageFile(filename);
|
|
|
|
if (image.valid())
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osgTerrain::ImageLayer> imageLayer = new osgTerrain::ImageLayer;
|
|
|
|
imageLayer->setImage(image.get());
|
|
|
|
imageLayer->setLocator(locator.get());
|
2007-05-12 02:25:06 +08:00
|
|
|
imageLayer->setValidDataOperator(validDataOperator.get());
|
2007-03-26 23:52:22 +08:00
|
|
|
|
2007-05-11 02:07:54 +08:00
|
|
|
if (offset!=0.0f || scale!=1.0f)
|
|
|
|
{
|
|
|
|
imageLayer->transform(offset,scale);
|
|
|
|
}
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
terrain->setColorLayer(layerNum, imageLayer.get());
|
2007-03-26 23:52:22 +08:00
|
|
|
|
|
|
|
osg::notify(osg::NOTICE)<<"created Color osgTerrain::ImageLayer"<<std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"failed to create osgTerrain::ImageLayer"<<std::endl;
|
|
|
|
}
|
2007-05-11 02:07:54 +08:00
|
|
|
|
|
|
|
scale = 1.0f;
|
|
|
|
offset = 0.0f;
|
|
|
|
|
2007-03-14 20:43:29 +08:00
|
|
|
}
|
|
|
|
|
2007-04-30 17:47:35 +08:00
|
|
|
else if (arguments.read(pos, "--filter",filterName))
|
|
|
|
{
|
|
|
|
readParameter = true;
|
|
|
|
|
|
|
|
if (filterName=="NEAREST")
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"--filter "<<filterName<<std::endl;
|
|
|
|
terrain->setColorFilter(layerNum, osgTerrain::TerrainNode::NEAREST);
|
|
|
|
}
|
|
|
|
else if (filterName=="LINEAER")
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"--filter "<<filterName<<std::endl;
|
|
|
|
terrain->setColorFilter(layerNum, osgTerrain::TerrainNode::LINEAR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"--filter "<<filterName<<" unrecognized filter name, please use LINEAER or NEAREST."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
else if (arguments.read(pos, "--tf",minValue, maxValue))
|
2007-04-02 21:06:59 +08:00
|
|
|
{
|
|
|
|
readParameter = true;
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::TransferFunction1D> tf = new osg::TransferFunction1D;
|
|
|
|
|
|
|
|
tf->setInputRange(minValue, maxValue);
|
|
|
|
|
|
|
|
tf->allocate(6);
|
|
|
|
tf->setValue(0, osg::Vec4(1.0,1.0,1.0,1.0));
|
|
|
|
tf->setValue(1, osg::Vec4(1.0,0.0,1.0,1.0));
|
|
|
|
tf->setValue(2, osg::Vec4(1.0,0.0,0.0,1.0));
|
|
|
|
tf->setValue(3, osg::Vec4(1.0,1.0,0.0,1.0));
|
|
|
|
tf->setValue(4, osg::Vec4(0.0,1.0,1.0,1.0));
|
|
|
|
tf->setValue(5, osg::Vec4(0.0,1.0,0.0,1.0));
|
|
|
|
|
|
|
|
osg::notify(osg::NOTICE)<<"--tf "<<minValue<<" "<<maxValue<<std::endl;
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
terrain->setColorTransferFunction(layerNum, tf.get());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++pos;
|
2007-04-02 21:06:59 +08:00
|
|
|
}
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
}
|
2007-03-19 18:38:44 +08:00
|
|
|
|
2007-03-14 20:43:29 +08:00
|
|
|
|
2007-03-22 00:34:04 +08:00
|
|
|
osg::ref_ptr<osgTerrain::GeometryTechnique> geometryTechnique = new osgTerrain::GeometryTechnique;
|
2007-03-14 20:43:29 +08:00
|
|
|
|
2007-03-22 00:34:04 +08:00
|
|
|
terrain->setTerrainTechnique(geometryTechnique.get());
|
2007-03-14 20:43:29 +08:00
|
|
|
|
2007-03-22 00:34:04 +08:00
|
|
|
if (!terrain) return 0;
|
2007-03-26 23:52:22 +08:00
|
|
|
|
2007-03-28 00:01:01 +08:00
|
|
|
// return 0;
|
2007-03-14 20:43:29 +08:00
|
|
|
|
|
|
|
// add a viewport to the viewer and attach the scene graph.
|
2007-03-22 00:34:04 +08:00
|
|
|
viewer.setSceneData(terrain.get());
|
2007-03-14 20:43:29 +08:00
|
|
|
|
|
|
|
return viewer.run();
|
|
|
|
}
|