2007-06-12 22:20:16 +08:00
|
|
|
/* OpenSceneGraph example, osgterrain.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
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>
|
|
|
|
|
2007-07-17 18:54:17 +08:00
|
|
|
#include <osgUtil/GLObjectsVisitor>
|
|
|
|
|
2007-03-14 20:43:29 +08:00
|
|
|
#include <osgText/FadeText>
|
|
|
|
|
2007-03-29 22:45:35 +08:00
|
|
|
#include <osgViewer/Viewer>
|
2007-06-07 00:23:20 +08:00
|
|
|
#include <osgViewer/ViewerEventHandlers>
|
2007-03-29 22:45:35 +08:00
|
|
|
|
|
|
|
#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-07-16 20:37:39 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
class MasterOperation : public osg::Operation
|
2007-06-18 20:10:46 +08:00
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
public:
|
2007-06-18 20:10:46 +08:00
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
typedef std::set<std::string> Files;
|
|
|
|
typedef std::map<std::string, osg::ref_ptr<osg::Node> > FilenameNodeMap;
|
|
|
|
typedef std::vector< osg::ref_ptr<osg::Node> > Nodes;
|
|
|
|
|
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
MasterOperation(const std::string& filename):
|
|
|
|
Operation("Master reading operation",true),
|
2007-07-17 05:39:30 +08:00
|
|
|
_filename(filename)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool readMasterFile(Files& files) const
|
2007-07-17 01:40:38 +08:00
|
|
|
{
|
|
|
|
std::ifstream fin(_filename.c_str());
|
|
|
|
if (fin)
|
2007-06-18 20:10:46 +08:00
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
osgDB::Input fr;
|
|
|
|
fr.attach(&fin);
|
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
bool readFilename;
|
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
while(!fr.eof())
|
2007-06-18 20:10:46 +08:00
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
bool itrAdvanced = false;
|
|
|
|
if (fr.matchSequence("file %s") || fr.matchSequence("file %w") )
|
2007-06-18 20:10:46 +08:00
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
files.insert(fr[1].getStr());
|
|
|
|
fr += 2;
|
|
|
|
itrAdvanced = true;
|
2007-07-17 05:39:30 +08:00
|
|
|
readFilename = true;
|
2007-07-17 01:40:38 +08:00
|
|
|
}
|
2007-07-17 05:39:30 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
if (!itrAdvanced)
|
|
|
|
{
|
|
|
|
++fr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
return readFilename;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool open(osg::Group* group)
|
|
|
|
{
|
|
|
|
Files files;
|
|
|
|
readMasterFile(files);
|
|
|
|
for(Files::iterator itr = files.begin();
|
|
|
|
itr != files.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
osg::Node* model = osgDB::readNodeFile(*itr);
|
|
|
|
if (model)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"open: Loaded file "<<*itr<<std::endl;
|
|
|
|
group->addChild(model);
|
|
|
|
_existingFilenameNodeMap[*itr] = model;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
virtual void operator () (osg::Object* object)
|
|
|
|
{
|
2007-07-17 18:54:17 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<"void operator ()"<<std::endl;
|
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
Files files;
|
|
|
|
readMasterFile(files);
|
2007-07-17 01:40:38 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<"void operator () files.size()="<<files.size()<<std::endl;
|
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
Files newFiles;
|
|
|
|
Files removedFiles;
|
2007-07-17 01:40:38 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
// find out which files are new, and which ones have been removed.
|
2007-07-17 05:39:30 +08:00
|
|
|
{
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
2007-07-17 01:40:38 +08:00
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
for(Files::iterator fitr = files.begin();
|
|
|
|
fitr != files.end();
|
|
|
|
++fitr)
|
2007-07-17 01:40:38 +08:00
|
|
|
{
|
2007-07-17 05:39:30 +08:00
|
|
|
if (_existingFilenameNodeMap.count(*fitr)==0) newFiles.insert(*fitr);
|
2007-07-17 01:40:38 +08:00
|
|
|
}
|
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
for(FilenameNodeMap::iterator litr = _existingFilenameNodeMap.begin();
|
|
|
|
litr != _existingFilenameNodeMap.end();
|
|
|
|
++litr)
|
2007-07-17 01:40:38 +08:00
|
|
|
{
|
2007-07-17 05:39:30 +08:00
|
|
|
if (files.count(litr->first)==0)
|
|
|
|
{
|
|
|
|
removedFiles.insert(litr->first);
|
|
|
|
}
|
2007-07-17 01:40:38 +08:00
|
|
|
}
|
2007-07-17 05:39:30 +08:00
|
|
|
}
|
2007-07-17 18:54:17 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
// first load the new files.
|
2007-07-17 05:39:30 +08:00
|
|
|
FilenameNodeMap nodesToAdd;
|
2007-07-18 00:18:13 +08:00
|
|
|
if (!newFiles.empty())
|
2007-07-17 05:39:30 +08:00
|
|
|
{
|
2007-07-18 00:18:13 +08:00
|
|
|
|
|
|
|
typedef std::vector< osg::ref_ptr<osg::GraphicsThread> > GraphicsThreads;
|
|
|
|
GraphicsThreads threads;
|
|
|
|
|
|
|
|
for(unsigned int i=0; i<= osg::GraphicsContext::getMaxContextID(); ++i)
|
2007-07-17 18:54:17 +08:00
|
|
|
{
|
2007-07-18 00:18:13 +08:00
|
|
|
osg::GraphicsContext* gc = osg::GraphicsContext::getCompileContext(i);
|
|
|
|
osg::GraphicsThread* gt = gc ? gc->getGraphicsThread() : 0;
|
|
|
|
if (gt) threads.push_back(gt);
|
|
|
|
}
|
2007-07-17 05:39:30 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
bool requiresBarrier = false;
|
|
|
|
|
|
|
|
for(Files::iterator nitr = newFiles.begin();
|
|
|
|
nitr != newFiles.end();
|
|
|
|
++nitr)
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Node> loadedModel = osgDB::readNodeFile(*nitr);
|
2007-07-17 05:39:30 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
if (loadedModel.get())
|
2007-07-17 18:54:17 +08:00
|
|
|
{
|
2007-07-18 00:18:13 +08:00
|
|
|
nodesToAdd[*nitr] = loadedModel;
|
|
|
|
|
|
|
|
osg::ref_ptr<osgUtil::GLObjectsOperation> compileOperation = new osgUtil::GLObjectsOperation(loadedModel.get());
|
|
|
|
|
|
|
|
for(GraphicsThreads::iterator gitr = threads.begin();
|
|
|
|
gitr != threads.end();
|
|
|
|
++gitr)
|
2007-07-17 18:54:17 +08:00
|
|
|
{
|
2007-07-18 00:18:13 +08:00
|
|
|
(*gitr)->add( compileOperation.get() );
|
|
|
|
requiresBarrier = true;
|
2007-07-17 18:54:17 +08:00
|
|
|
}
|
|
|
|
}
|
2007-07-18 00:18:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (requiresBarrier)
|
|
|
|
{
|
|
|
|
_barrier = new osg::BarrierOperation(threads.size()+1);
|
|
|
|
_barrier->setKeep(false);
|
|
|
|
|
|
|
|
for(GraphicsThreads::iterator gitr = threads.begin();
|
|
|
|
gitr != threads.end();
|
|
|
|
++gitr)
|
|
|
|
{
|
|
|
|
(*gitr)->add(_barrier.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
// wait for the graphics threads to complete.
|
|
|
|
_barrier->block();
|
2007-07-17 18:54:17 +08:00
|
|
|
}
|
|
|
|
}
|
2007-07-18 00:18:13 +08:00
|
|
|
|
|
|
|
bool requiresBlock = false;
|
|
|
|
|
|
|
|
// pass the locally peppared data to MasterOperations shared data
|
|
|
|
// so that updated thread can merge these changes with the main scene
|
|
|
|
// graph. This merge is carried out via the update(..) method.
|
|
|
|
if (!removedFiles.empty() || !nodesToAdd.empty())
|
2007-07-17 05:39:30 +08:00
|
|
|
{
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
|
|
|
_nodesToRemove.swap(removedFiles);
|
|
|
|
_nodesToAdd.swap(nodesToAdd);
|
2007-07-18 00:18:13 +08:00
|
|
|
requiresBlock = true;
|
2007-07-17 05:39:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// now block so we don't try to load anything till the new data has been merged
|
|
|
|
// otherwise _existingFilenameNodeMap will get out of sync.
|
2007-07-18 00:18:13 +08:00
|
|
|
if (requiresBlock)
|
|
|
|
{
|
|
|
|
_updatesMergedBlock.block();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OpenThreads::Thread::YieldCurrentThread();
|
|
|
|
}
|
2007-07-17 05:39:30 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
}
|
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
// merge the changes with the main scene graph.
|
2007-07-19 00:17:06 +08:00
|
|
|
void update(osg::Node* scene)
|
2007-07-17 01:40:38 +08:00
|
|
|
{
|
2007-07-19 00:17:06 +08:00
|
|
|
osg::Group* group = dynamic_cast<osg::Group*>(scene);
|
|
|
|
if (!group)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Error, MasterOperation::update(Node*) can only work with a Group as Viewer::getSceneData()."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
|
|
|
|
2007-07-19 00:17:06 +08:00
|
|
|
if (!_nodesToRemove.empty() || !_nodesToAdd.empty())
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"update().................. "<<std::endl;
|
|
|
|
}
|
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
if (!_nodesToRemove.empty())
|
|
|
|
{
|
|
|
|
for(Files::iterator itr = _nodesToRemove.begin();
|
|
|
|
itr != _nodesToRemove.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
FilenameNodeMap::iterator fnmItr = _existingFilenameNodeMap.find(*itr);
|
|
|
|
if (fnmItr != _existingFilenameNodeMap.end())
|
|
|
|
{
|
2007-07-19 00:17:06 +08:00
|
|
|
osg::notify(osg::NOTICE)<<" update():removing "<<*itr<<std::endl;
|
2007-07-17 05:39:30 +08:00
|
|
|
|
2007-07-19 00:17:06 +08:00
|
|
|
group->removeChild(fnmItr->second.get());
|
2007-07-17 01:40:38 +08:00
|
|
|
_existingFilenameNodeMap.erase(fnmItr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_nodesToRemove.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_nodesToAdd.empty())
|
|
|
|
{
|
|
|
|
for(FilenameNodeMap::iterator itr = _nodesToAdd.begin();
|
|
|
|
itr != _nodesToAdd.end();
|
|
|
|
++itr)
|
|
|
|
{
|
2007-07-19 00:17:06 +08:00
|
|
|
osg::notify(osg::NOTICE)<<" update():inserting "<<itr->first<<std::endl;
|
|
|
|
group->addChild(itr->second.get());
|
2007-07-17 01:40:38 +08:00
|
|
|
_existingFilenameNodeMap[itr->first] = itr->second;
|
|
|
|
}
|
2007-06-18 20:10:46 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
_nodesToAdd.clear();
|
2007-06-18 20:10:46 +08:00
|
|
|
}
|
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
_updatesMergedBlock.release();
|
|
|
|
|
|
|
|
}
|
2007-07-16 20:37:39 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
// add release implementation so that any thread cancellation can
|
|
|
|
// work even when blocks and barriers are used.
|
2007-07-17 01:40:38 +08:00
|
|
|
virtual void release()
|
|
|
|
{
|
|
|
|
_updatesMergedBlock.release();
|
2007-07-18 00:18:13 +08:00
|
|
|
if (_barrier.valid()) _barrier.release();
|
2007-07-17 01:40:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
std::string _filename;
|
2007-07-17 01:40:38 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
OpenThreads::Mutex _mutex;
|
|
|
|
FilenameNodeMap _existingFilenameNodeMap;
|
|
|
|
Files _nodesToRemove;
|
|
|
|
FilenameNodeMap _nodesToAdd;
|
|
|
|
OpenThreads::Block _updatesMergedBlock;
|
|
|
|
osg::ref_ptr<osg::BarrierOperation> _barrier;
|
2007-07-17 01:40:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class FilterHandler : public osgGA::GUIEventHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
FilterHandler(osgTerrain::GeometryTechnique* gt):
|
|
|
|
_gt(gt) {}
|
|
|
|
|
|
|
|
bool handle(const osgGA::GUIEventAdapter &ea, osgGA::GUIActionAdapter &aa)
|
|
|
|
{
|
|
|
|
if (!_gt) return false;
|
|
|
|
|
|
|
|
switch(ea.getEventType())
|
|
|
|
{
|
|
|
|
case(osgGA::GUIEventAdapter::KEYDOWN):
|
|
|
|
{
|
|
|
|
if (ea.getKey() == 'g')
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Gaussian"<<std::endl;
|
|
|
|
_gt->setFilterMatrixAs(osgTerrain::GeometryTechnique::GAUSSIAN);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey() == 's')
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Smooth"<<std::endl;
|
|
|
|
_gt->setFilterMatrixAs(osgTerrain::GeometryTechnique::SMOOTH);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey() == 'S')
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Sharpen"<<std::endl;
|
|
|
|
_gt->setFilterMatrixAs(osgTerrain::GeometryTechnique::SHARPEN);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey() == '+')
|
|
|
|
{
|
|
|
|
_gt->setFilterWidth(_gt->getFilterWidth()*1.1);
|
|
|
|
osg::notify(osg::NOTICE)<<"Filter width = "<<_gt->getFilterWidth()<<std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey() == '-')
|
|
|
|
{
|
|
|
|
_gt->setFilterWidth(_gt->getFilterWidth()/1.1);
|
|
|
|
osg::notify(osg::NOTICE)<<"Filter width = "<<_gt->getFilterWidth()<<std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey() == '>')
|
|
|
|
{
|
|
|
|
_gt->setFilterBias(_gt->getFilterBias()+0.1);
|
|
|
|
osg::notify(osg::NOTICE)<<"Filter bias = "<<_gt->getFilterBias()<<std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey() == '<')
|
|
|
|
{
|
|
|
|
_gt->setFilterBias(_gt->getFilterBias()-0.1);
|
|
|
|
osg::notify(osg::NOTICE)<<"Filter bias = "<<_gt->getFilterBias()<<std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
osg::observer_ptr<osgTerrain::GeometryTechnique> _gt;
|
2007-06-18 20:10:46 +08:00
|
|
|
|
|
|
|
};
|
2007-03-14 20:43:29 +08:00
|
|
|
|
2007-03-26 23:52:22 +08:00
|
|
|
|
|
|
|
|
2007-07-07 00:47:08 +08:00
|
|
|
class LayerHandler : public osgGA::GUIEventHandler
|
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
public:
|
2007-07-07 00:47:08 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
LayerHandler(osgTerrain::Layer* layer):
|
|
|
|
_layer(layer) {}
|
|
|
|
|
|
|
|
bool handle(const osgGA::GUIEventAdapter &ea, osgGA::GUIActionAdapter &aa)
|
|
|
|
{
|
|
|
|
if (!_layer) return false;
|
2007-07-07 00:47:08 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
float scale = 1.2;
|
|
|
|
|
|
|
|
switch(ea.getEventType())
|
2007-07-07 00:47:08 +08:00
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
case(osgGA::GUIEventAdapter::KEYDOWN):
|
2007-07-07 00:47:08 +08:00
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
if (ea.getKey() == 'q')
|
2007-07-07 00:47:08 +08:00
|
|
|
{
|
2007-07-17 01:40:38 +08:00
|
|
|
_layer->transform(0.0, scale);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey() == 'a')
|
|
|
|
{
|
|
|
|
_layer->transform(0.0, 1.0f/scale);
|
|
|
|
return true;
|
2007-07-07 00:47:08 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-07-17 01:40:38 +08:00
|
|
|
default:
|
|
|
|
break;
|
2007-07-07 00:47:08 +08:00
|
|
|
}
|
2007-07-17 01:40:38 +08:00
|
|
|
return false;
|
2007-07-07 00:47:08 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2007-07-07 00:47:08 +08:00
|
|
|
|
2007-07-17 01:40:38 +08:00
|
|
|
osg::observer_ptr<osgTerrain::Layer> _layer;
|
2007-07-07 00:47:08 +08:00
|
|
|
};
|
|
|
|
|
2007-07-19 00:17:06 +08:00
|
|
|
class CustomViewer : public osgViewer::Viewer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CustomViewer(osg::ArgumentParser& arguments):
|
|
|
|
Viewer(arguments) {}
|
|
|
|
|
|
|
|
|
|
|
|
void setMasterOperation(MasterOperation* masterOp) { _masterOperation = masterOp; }
|
|
|
|
MasterOperation* getMasterOperation() { return _masterOperation.get(); }
|
|
|
|
|
|
|
|
// override the realize to create the compile graphics contexts + threads for us.
|
|
|
|
virtual void realize()
|
|
|
|
{
|
|
|
|
Viewer::realize();
|
|
|
|
|
|
|
|
|
|
|
|
int numProcessors = OpenThreads::GetNumberOfProcessors();
|
|
|
|
int processNum = (getThreadingModel()==osgViewer::Viewer::SingleThreaded) ? 1 : 0;
|
|
|
|
|
|
|
|
for(unsigned int i=0; i<= osg::GraphicsContext::getMaxContextID(); ++i)
|
|
|
|
{
|
|
|
|
osg::GraphicsContext* gc = osg::GraphicsContext::getOrCreateCompileContext(i);
|
|
|
|
|
|
|
|
if (gc)
|
|
|
|
{
|
|
|
|
gc->createGraphicsThread();
|
|
|
|
gc->getGraphicsThread()->setProcessorAffinity(processNum % numProcessors);
|
|
|
|
gc->getGraphicsThread()->startThread();
|
|
|
|
|
|
|
|
++processNum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// override the updateTraversal to add the merging of data from the MasterOperation.
|
|
|
|
virtual void updateTraversal()
|
|
|
|
{
|
|
|
|
Viewer::updateTraversal();
|
|
|
|
|
|
|
|
if (_masterOperation.valid()) _masterOperation->update(getSceneData());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
osg::ref_ptr<MasterOperation> _masterOperation;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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.
|
2007-07-19 00:17:06 +08:00
|
|
|
CustomViewer viewer(arguments);
|
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-06-18 20:10:46 +08:00
|
|
|
// add the record camera path handler
|
|
|
|
viewer.addEventHandler(new osgViewer::RecordCameraPathHandler);
|
|
|
|
|
|
|
|
|
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-07-17 05:39:30 +08:00
|
|
|
|
2007-07-17 18:54:17 +08:00
|
|
|
bool createBackgroundContextForCompiling = false;
|
|
|
|
while (arguments.read("--bc")) { createBackgroundContextForCompiling = true; }
|
|
|
|
|
|
|
|
bool createBackgroundThreadsForCompiling = false;
|
|
|
|
while (arguments.read("--bt")) { createBackgroundContextForCompiling = true; createBackgroundThreadsForCompiling = true; }
|
|
|
|
|
|
|
|
|
2007-07-17 05:39:30 +08:00
|
|
|
osg::ref_ptr<MasterOperation> masterOperation;
|
|
|
|
std::string masterFilename;
|
|
|
|
while(arguments.read("-m",masterFilename))
|
2007-07-17 01:40:38 +08:00
|
|
|
{
|
2007-07-17 05:39:30 +08:00
|
|
|
masterOperation = new MasterOperation(masterFilename);
|
2007-07-19 00:17:06 +08:00
|
|
|
viewer.setMasterOperation(masterOperation.get());
|
2007-07-17 01:40:38 +08:00
|
|
|
}
|
2007-07-16 20:37:39 +08:00
|
|
|
|
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-07-07 00:47:08 +08:00
|
|
|
osg::ref_ptr<osgTerrain::Layer> lastAppliedLayer;
|
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;
|
|
|
|
}
|
|
|
|
|
2007-05-13 17:54:51 +08:00
|
|
|
else if (arguments.read(pos, "-b"))
|
|
|
|
{
|
|
|
|
terrain->setTreatBoundariesToValidDataAsDefaultValue(true);
|
|
|
|
}
|
|
|
|
|
2007-04-11 19:20:42 +08:00
|
|
|
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-07-13 04:10:56 +08:00
|
|
|
else if (arguments.read(pos, "--cartesian",x,y,w,h))
|
2007-05-04 00:23:19 +08:00
|
|
|
{
|
|
|
|
// define the extents.
|
2007-07-11 23:51:17 +08:00
|
|
|
locator = new osgTerrain::CartesianLocator(x,y,w,h,0);
|
2007-05-04 00:23:19 +08:00
|
|
|
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());
|
|
|
|
|
2007-07-07 00:47:08 +08:00
|
|
|
lastAppliedLayer = hfl.get();
|
|
|
|
|
2007-03-26 23:52:22 +08:00
|
|
|
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());
|
|
|
|
|
2007-07-07 00:47:08 +08:00
|
|
|
lastAppliedLayer = imageLayer.get();
|
|
|
|
|
2007-03-26 23:52:22 +08:00
|
|
|
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-07-07 00:47:08 +08:00
|
|
|
|
|
|
|
lastAppliedLayer = 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);
|
|
|
|
}
|
2007-06-18 20:10:46 +08:00
|
|
|
else if (filterName=="LINEAR")
|
2007-04-30 17:47:35 +08:00
|
|
|
{
|
|
|
|
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-07-18 00:18:13 +08:00
|
|
|
osg::ref_ptr<osg::Group> scene = new osg::Group;
|
2007-06-18 20:10:46 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
if (terrain.valid() && (terrain->getElevationLayer() || terrain->getColorLayer(0)))
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Terrain created"<<std::endl;
|
2007-03-26 23:52:22 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
scene->addChild(terrain.get());
|
2007-07-11 01:36:33 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
osg::ref_ptr<osgTerrain::GeometryTechnique> geometryTechnique = new osgTerrain::GeometryTechnique;
|
|
|
|
terrain->setTerrainTechnique(geometryTechnique.get());
|
|
|
|
viewer.addEventHandler(new FilterHandler(geometryTechnique.get()));
|
|
|
|
viewer.addEventHandler(new LayerHandler(lastAppliedLayer.get()));
|
|
|
|
}
|
2007-07-11 01:36:33 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
if (masterOperation.valid())
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Master operation created"<<std::endl;
|
2007-07-11 01:36:33 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
masterOperation->open(scene.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scene->getNumChildren()==0)
|
2007-07-11 01:36:33 +08:00
|
|
|
{
|
2007-07-18 00:18:13 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"No model created, please specify terrain or master file on command line."<<std::endl;
|
|
|
|
return 0;
|
2007-07-11 01:36:33 +08:00
|
|
|
}
|
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
viewer.setSceneData(scene.get());
|
2007-07-11 01:36:33 +08:00
|
|
|
|
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
// start operation thread if a master file has been used.
|
|
|
|
osg::ref_ptr<osg::OperationThread> operationThread;
|
|
|
|
if (masterOperation.valid())
|
|
|
|
{
|
|
|
|
operationThread = new osg::OperationThread;
|
|
|
|
operationThread->startThread();
|
|
|
|
operationThread->add(masterOperation.get());
|
|
|
|
}
|
2007-07-19 00:17:06 +08:00
|
|
|
|
|
|
|
viewer.setThreadingModel(osgViewer::Viewer::SingleThreaded);
|
2007-07-11 01:36:33 +08:00
|
|
|
|
2007-07-18 00:18:13 +08:00
|
|
|
// realize the graphics windows.
|
|
|
|
viewer.realize();
|
2007-07-11 01:36:33 +08:00
|
|
|
|
2007-07-19 00:17:06 +08:00
|
|
|
// run the viewers main loop
|
|
|
|
return viewer.run();
|
2007-07-11 01:36:33 +08:00
|
|
|
|
|
|
|
}
|