Added paging support to osganalysis example
This commit is contained in:
parent
1a292ad8e3
commit
f91944fbbf
@ -23,9 +23,71 @@
|
|||||||
#include <osgGA/TrackballManipulator>
|
#include <osgGA/TrackballManipulator>
|
||||||
#include <osgUtil/IncrementalCompileOperation>
|
#include <osgUtil/IncrementalCompileOperation>
|
||||||
|
|
||||||
|
class SceneGraphProcessor : public osg::Referenced
|
||||||
struct CustomCompileCompletedCallback : public osgUtil::IncrementalCompileOperation::CompileCompletedCallback
|
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
|
SceneGraphProcessor()
|
||||||
|
{
|
||||||
|
_init();
|
||||||
|
}
|
||||||
|
|
||||||
|
SceneGraphProcessor(osg::ArgumentParser& arguments)
|
||||||
|
{
|
||||||
|
_init();
|
||||||
|
|
||||||
|
while (arguments.read("--vbo")) { modifyDrawableSettings = true; useVBO = true; }
|
||||||
|
while (arguments.read("--dl")) { modifyDrawableSettings = true; useDisplayLists = true; }
|
||||||
|
while (arguments.read("--simplify", simplificatioRatio)) {}
|
||||||
|
|
||||||
|
while (arguments.read("--build-mipmaps")) { modifyTextureSettings = true; buildImageMipmaps = true; }
|
||||||
|
while (arguments.read("--compress")) { modifyTextureSettings = true; compressImages = true; }
|
||||||
|
while (arguments.read("--disable-mipmaps")) { modifyTextureSettings = true; disableMipmaps = true; }
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual osg::Node* process(osg::Node* node)
|
||||||
|
{
|
||||||
|
if (!node)
|
||||||
|
{
|
||||||
|
OSG_NOTICE<<"SceneGraphProcessor::process(Node*) : error cannot process NULL Node."<<std::endl;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
OSG_NOTICE<<"SceneGraphProcessor::process("<<node<<") : "<<node->getName()<<std::endl;
|
||||||
|
|
||||||
|
return node;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
void _init()
|
||||||
|
{
|
||||||
|
modifyDrawableSettings = false;
|
||||||
|
useVBO = false;
|
||||||
|
useDisplayLists = false;
|
||||||
|
simplificatioRatio = 1.0;
|
||||||
|
|
||||||
|
modifyTextureSettings = false;
|
||||||
|
buildImageMipmaps = false;
|
||||||
|
compressImages = false;
|
||||||
|
disableMipmaps = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool modifyDrawableSettings;
|
||||||
|
bool useVBO;
|
||||||
|
bool useDisplayLists;
|
||||||
|
bool simplificatioRatio;
|
||||||
|
|
||||||
|
bool modifyTextureSettings;
|
||||||
|
bool buildImageMipmaps;
|
||||||
|
bool compressImages;
|
||||||
|
bool disableMipmaps;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class CustomCompileCompletedCallback : public osgUtil::IncrementalCompileOperation::CompileCompletedCallback
|
||||||
|
{
|
||||||
|
public:
|
||||||
CustomCompileCompletedCallback():
|
CustomCompileCompletedCallback():
|
||||||
completed(false) {}
|
completed(false) {}
|
||||||
|
|
||||||
@ -39,6 +101,69 @@ struct CustomCompileCompletedCallback : public osgUtil::IncrementalCompileOperat
|
|||||||
bool completed;
|
bool completed;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class DatabasePagingOperation : public osg::Operation, public osgUtil::IncrementalCompileOperation::CompileCompletedCallback
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
DatabasePagingOperation(const std::string& filename,
|
||||||
|
SceneGraphProcessor* sceneGraphProcessor,
|
||||||
|
osgUtil::IncrementalCompileOperation* ico):
|
||||||
|
Operation("DatabasePaging Operation", false),
|
||||||
|
_filename(filename),
|
||||||
|
_modelReadyToMerge(false),
|
||||||
|
_sceneGraphProcessor(sceneGraphProcessor),
|
||||||
|
_incrementalCompileOperation(ico) {}
|
||||||
|
|
||||||
|
virtual void operator () (osg::Object* object)
|
||||||
|
{
|
||||||
|
osg::notify(osg::NOTICE)<<"LoadAndCompileOperation "<<_filename<<std::endl;
|
||||||
|
|
||||||
|
_modelReadyToMerge = false;
|
||||||
|
_loadedModel = osgDB::readNodeFile(_filename);
|
||||||
|
|
||||||
|
if (_loadedModel.valid())
|
||||||
|
{
|
||||||
|
if (_sceneGraphProcessor.valid())
|
||||||
|
{
|
||||||
|
_loadedModel = _sceneGraphProcessor->process(_loadedModel.get());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_loadedModel.valid())
|
||||||
|
{
|
||||||
|
if (_incrementalCompileOperation.valid())
|
||||||
|
{
|
||||||
|
osg::ref_ptr<osgUtil::IncrementalCompileOperation::CompileSet> compileSet =
|
||||||
|
new osgUtil::IncrementalCompileOperation::CompileSet(_loadedModel.get());
|
||||||
|
|
||||||
|
compileSet->_compileCompletedCallback = this;
|
||||||
|
|
||||||
|
_incrementalCompileOperation->add(compileSet.get());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_modelReadyToMerge = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
osg::notify(osg::NOTICE)<<"done LoadAndCompileOperation "<<_filename<<std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual bool compileCompleted(osgUtil::IncrementalCompileOperation::CompileSet* compileSet)
|
||||||
|
{
|
||||||
|
OSG_NOTICE<<"compileCompleted"<<std::endl;
|
||||||
|
_modelReadyToMerge = true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string _filename;
|
||||||
|
osg::ref_ptr<osg::Node> _loadedModel;
|
||||||
|
bool _modelReadyToMerge;
|
||||||
|
osg::ref_ptr<SceneGraphProcessor> _sceneGraphProcessor;
|
||||||
|
osg::ref_ptr<osgUtil::IncrementalCompileOperation> _incrementalCompileOperation;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
osg::ArgumentParser arguments(&argc, argv);
|
osg::ArgumentParser arguments(&argc, argv);
|
||||||
@ -50,38 +175,106 @@ int main(int argc, char** argv)
|
|||||||
viewer.addEventHandler(new osgViewer::StatsHandler());
|
viewer.addEventHandler(new osgViewer::StatsHandler());
|
||||||
viewer.addEventHandler(new osgViewer::WindowSizeHandler);
|
viewer.addEventHandler(new osgViewer::WindowSizeHandler);
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// IncrementalCompileOperation settings
|
||||||
|
//
|
||||||
osg::ref_ptr<osgUtil::IncrementalCompileOperation> incrementalCompile = new osgUtil::IncrementalCompileOperation;
|
osg::ref_ptr<osgUtil::IncrementalCompileOperation> incrementalCompile = new osgUtil::IncrementalCompileOperation;
|
||||||
viewer.setIncrementalCompileOperation(incrementalCompile.get());
|
viewer.setIncrementalCompileOperation(incrementalCompile.get());
|
||||||
|
|
||||||
|
if (arguments.read("--force") || arguments.read("-f"))
|
||||||
|
{
|
||||||
|
incrementalCompile->assignForceTextureDownloadGeometry();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (arguments.read("-a"))
|
||||||
|
{
|
||||||
|
incrementalCompile->setMinimumTimeAvailableForGLCompileAndDeletePerFrame(1);
|
||||||
|
incrementalCompile->setConservativeTimeRatio(1);
|
||||||
|
incrementalCompile->setMaximumNumOfObjectsToCompilePerFrame(100);
|
||||||
|
}
|
||||||
|
else if (arguments.read("-c"))
|
||||||
|
{
|
||||||
|
incrementalCompile->setMinimumTimeAvailableForGLCompileAndDeletePerFrame(0.0001);
|
||||||
|
incrementalCompile->setConservativeTimeRatio(0.01);
|
||||||
|
incrementalCompile->setMaximumNumOfObjectsToCompilePerFrame(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// SceneGraph processing setup
|
||||||
|
//
|
||||||
|
osg::ref_ptr<SceneGraphProcessor> sceneGraphProcessor = new SceneGraphProcessor(arguments);
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Database settings
|
||||||
|
//
|
||||||
double timeBetweenMerges = 2.0;
|
double timeBetweenMerges = 2.0;
|
||||||
while(arguments.read("--interval",timeBetweenMerges)) {}
|
while(arguments.read("--interval",timeBetweenMerges)) {}
|
||||||
|
|
||||||
typedef std::vector< osg::ref_ptr<osg::Node> > Models;
|
bool readDatabasesInPagingThread = false;
|
||||||
Models models;
|
while(arguments.read("--paging")) { readDatabasesInPagingThread = true; }
|
||||||
|
|
||||||
|
typedef std::vector< std::string > FileNames;
|
||||||
|
FileNames fileNames;
|
||||||
for(int pos=1;pos<arguments.argc();++pos)
|
for(int pos=1;pos<arguments.argc();++pos)
|
||||||
{
|
{
|
||||||
if (!arguments.isOption(pos))
|
if (!arguments.isOption(pos))
|
||||||
{
|
{
|
||||||
// not an option so assume string is a filename.
|
fileNames.push_back(arguments[pos]);
|
||||||
osg::Node *node = osgDB::readNodeFile( arguments[pos]);
|
|
||||||
if(node)
|
|
||||||
{
|
|
||||||
if (node->getName().empty()) node->setName( arguments[pos] );
|
|
||||||
models.push_back(node);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
OSG_NOTICE<<"models.size()="<<models.size()<<std::endl;
|
if (fileNames.empty())
|
||||||
|
{
|
||||||
|
OSG_NOTICE<<"No files loaded, please specifies files on commandline."<<std::endl;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
typedef std::vector< osg::ref_ptr<osg::Node> > Models;
|
||||||
|
unsigned int modelIndex = 0;
|
||||||
|
Models models;
|
||||||
|
|
||||||
osg::ref_ptr<osg::Group> group = new osg::Group;
|
osg::ref_ptr<osg::Group> group = new osg::Group;
|
||||||
|
viewer.setSceneData(group);
|
||||||
|
|
||||||
unsigned int modelIndex = 0;
|
osg::ref_ptr<osg::OperationThread> databasePagingThread;
|
||||||
|
osg::ref_ptr<DatabasePagingOperation> databasePagingOperation;
|
||||||
|
if (readDatabasesInPagingThread)
|
||||||
|
{
|
||||||
|
databasePagingThread = new osg::OperationThread;
|
||||||
|
databasePagingThread->startThread();
|
||||||
|
|
||||||
|
databasePagingOperation = new DatabasePagingOperation(
|
||||||
|
fileNames[modelIndex++],
|
||||||
|
sceneGraphProcessor.get(),
|
||||||
|
incrementalCompile.get());
|
||||||
|
|
||||||
|
databasePagingThread->add(databasePagingOperation.get());
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for(FileNames::iterator itr = fileNames.begin();
|
||||||
|
itr != fileNames.end();
|
||||||
|
++itr)
|
||||||
|
{
|
||||||
|
// not an option so assume string is a filename.
|
||||||
|
osg::ref_ptr<osg::Node> node = osgDB::readNodeFile( *itr );
|
||||||
|
if(node.valid())
|
||||||
|
{
|
||||||
|
if (node->getName().empty()) node->setName( *itr );
|
||||||
|
|
||||||
|
node = sceneGraphProcessor->process(node.get());
|
||||||
|
|
||||||
|
models.push_back(node.get());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
group->addChild(models[modelIndex++].get());
|
group->addChild(models[modelIndex++].get());
|
||||||
|
|
||||||
viewer.setSceneData(group);
|
}
|
||||||
|
|
||||||
viewer.realize();
|
viewer.realize();
|
||||||
|
|
||||||
@ -95,8 +288,40 @@ int main(int argc, char** argv)
|
|||||||
|
|
||||||
double currentTime = viewer.getFrameStamp()->getReferenceTime();
|
double currentTime = viewer.getFrameStamp()->getReferenceTime();
|
||||||
|
|
||||||
|
if (readDatabasesInPagingThread)
|
||||||
|
{
|
||||||
|
if (!databasePagingOperation &&
|
||||||
|
modelIndex<fileNames.size() &&
|
||||||
|
(currentTime-timeOfLastMerge)>timeBetweenMerges)
|
||||||
|
{
|
||||||
|
databasePagingOperation = new DatabasePagingOperation(
|
||||||
|
fileNames[modelIndex++],
|
||||||
|
sceneGraphProcessor.get(),
|
||||||
|
incrementalCompile.get());
|
||||||
|
|
||||||
|
databasePagingThread->add(databasePagingOperation.get());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (databasePagingOperation.get() && databasePagingOperation->_modelReadyToMerge)
|
||||||
|
{
|
||||||
|
timeOfLastMerge = currentTime;
|
||||||
|
|
||||||
|
group->removeChildren(0,group->getNumChildren());
|
||||||
|
|
||||||
|
group->addChild(databasePagingOperation->_loadedModel.get());
|
||||||
|
|
||||||
|
viewer.home();
|
||||||
|
|
||||||
|
// we no longer need the paging operation as it's done it's job.
|
||||||
|
databasePagingOperation = 0;
|
||||||
|
|
||||||
|
viewer.home();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if (!compileCompletedCallback &&
|
if (!compileCompletedCallback &&
|
||||||
modelIndex<models.size() &&
|
modelIndex<fileNames.size() &&
|
||||||
(currentTime-timeOfLastMerge)>timeBetweenMerges)
|
(currentTime-timeOfLastMerge)>timeBetweenMerges)
|
||||||
{
|
{
|
||||||
OSG_NOTICE<<"Compiling model "<<modelIndex<<" at "<<currentTime<<std::endl;
|
OSG_NOTICE<<"Compiling model "<<modelIndex<<" at "<<currentTime<<std::endl;
|
||||||
@ -117,15 +342,15 @@ int main(int argc, char** argv)
|
|||||||
|
|
||||||
timeOfLastMerge = currentTime;
|
timeOfLastMerge = currentTime;
|
||||||
|
|
||||||
compileCompletedCallback = 0;
|
|
||||||
|
|
||||||
group->removeChildren(0,group->getNumChildren());
|
group->removeChildren(0,group->getNumChildren());
|
||||||
|
|
||||||
group->addChild(models[modelIndex++].get());
|
group->addChild(models[modelIndex++].get());
|
||||||
|
|
||||||
|
compileCompletedCallback = 0;
|
||||||
|
|
||||||
viewer.home();
|
viewer.home();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -232,7 +232,7 @@ class OSGUTIL_EXPORT IncrementalCompileOperation : public osg::GraphicsOperation
|
|||||||
typedef std::set<osg::GraphicsContext*> ContextSet;
|
typedef std::set<osg::GraphicsContext*> ContextSet;
|
||||||
typedef std::map<osg::GraphicsContext*, CompileData > CompileMap;
|
typedef std::map<osg::GraphicsContext*, CompileData > CompileMap;
|
||||||
|
|
||||||
struct CompileCompletedCallback : public osg::Referenced
|
struct CompileCompletedCallback : public virtual osg::Referenced
|
||||||
{
|
{
|
||||||
/// return true if the callback assumes responsibility for merging any associated subgraphs with the main scene graph
|
/// return true if the callback assumes responsibility for merging any associated subgraphs with the main scene graph
|
||||||
/// return false if callback doesn't handle the merge, and instead requires the IncrementalCompileOperation to handle this for us
|
/// return false if callback doesn't handle the merge, and instead requires the IncrementalCompileOperation to handle this for us
|
||||||
|
@ -220,7 +220,7 @@ void CompileOperator::runTimingTests(osg::RenderInfo& renderInfo)
|
|||||||
bool useVBO = false;
|
bool useVBO = false;
|
||||||
for(unsigned int i=0; i<mx; ++i)
|
for(unsigned int i=0; i<mx; ++i)
|
||||||
{
|
{
|
||||||
unsigned int numVertices = pow(2,i);
|
unsigned int numVertices = pow(2.0,double(i));
|
||||||
osg::ref_ptr<osg::Geometry> geometry = createTestGeometry(numVertices, useVBO);
|
osg::ref_ptr<osg::Geometry> geometry = createTestGeometry(numVertices, useVBO);
|
||||||
double size = geometry->getGLObjectSizeHint();
|
double size = geometry->getGLObjectSizeHint();
|
||||||
double time = timeCompile(renderInfo, geometry);
|
double time = timeCompile(renderInfo, geometry);
|
||||||
@ -233,7 +233,7 @@ void CompileOperator::runTimingTests(osg::RenderInfo& renderInfo)
|
|||||||
bool useVBO = true;
|
bool useVBO = true;
|
||||||
for(unsigned int i=0; i<mx; ++i)
|
for(unsigned int i=0; i<mx; ++i)
|
||||||
{
|
{
|
||||||
unsigned int numVertices = pow(2,i);
|
unsigned int numVertices = pow(2.0,double(i));
|
||||||
osg::ref_ptr<osg::Geometry> geometry = createTestGeometry(numVertices, useVBO);
|
osg::ref_ptr<osg::Geometry> geometry = createTestGeometry(numVertices, useVBO);
|
||||||
double size = geometry->getGLObjectSizeHint();
|
double size = geometry->getGLObjectSizeHint();
|
||||||
double time = timeCompile(renderInfo, geometry);
|
double time = timeCompile(renderInfo, geometry);
|
||||||
|
Loading…
Reference in New Issue
Block a user