2004-01-07 22:10:47 +08:00
|
|
|
#include "TileMapper.h"
|
|
|
|
#include "TXPPagedLOD.h"
|
|
|
|
using namespace txp;
|
|
|
|
|
|
|
|
TXPPagedLOD::TXPPagedLOD():
|
|
|
|
PagedLOD(),
|
|
|
|
_tileX(-1),
|
|
|
|
_tileY(-1),
|
2004-01-19 23:55:51 +08:00
|
|
|
_tileLOD(-1),
|
|
|
|
_lastChildTraversed(-1)
|
2004-01-07 22:10:47 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TXPPagedLOD::TXPPagedLOD(const TXPPagedLOD& plod,const osg::CopyOp& copyop):
|
|
|
|
PagedLOD(plod,copyop),
|
|
|
|
_tileX(plod._tileX),
|
|
|
|
_tileY(plod._tileY),
|
2004-01-19 23:55:51 +08:00
|
|
|
_tileLOD(plod._tileLOD),
|
|
|
|
_lastChildTraversed(plod._lastChildTraversed)
|
2004-01-07 22:10:47 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TXPPagedLOD::~TXPPagedLOD()
|
|
|
|
{
|
2004-01-19 23:55:51 +08:00
|
|
|
TileMapper::instance()->removePagedLOD(_tileX,_tileY,_tileLOD);
|
2004-01-07 22:10:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TXPPagedLOD::traverse(osg::NodeVisitor& nv)
|
|
|
|
{
|
|
|
|
|
2004-01-20 18:02:45 +08:00
|
|
|
// PagedLOD::traverse(nv);
|
|
|
|
//
|
|
|
|
// return;
|
|
|
|
|
2004-01-07 22:10:47 +08:00
|
|
|
double timeStamp = nv.getFrameStamp()?nv.getFrameStamp()->getReferenceTime():0.0;
|
|
|
|
bool updateTimeStamp = nv.getVisitorType()==osg::NodeVisitor::CULL_VISITOR;
|
|
|
|
|
|
|
|
switch(nv.getTraversalMode())
|
|
|
|
{
|
2004-01-07 22:14:38 +08:00
|
|
|
case(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN):
|
|
|
|
std::for_each(_children.begin(),_children.end(),osg::NodeAcceptOp(nv));
|
2004-01-07 22:10:47 +08:00
|
|
|
break;
|
2004-01-07 22:14:38 +08:00
|
|
|
case(osg::NodeVisitor::TRAVERSE_ACTIVE_CHILDREN):
|
2004-01-07 22:10:47 +08:00
|
|
|
{
|
|
|
|
float distance = nv.getDistanceToEyePoint(getCenter(),true);
|
|
|
|
|
2004-01-19 23:55:51 +08:00
|
|
|
_lastChildTraversed = -1;
|
2004-01-07 22:10:47 +08:00
|
|
|
bool needToLoadChild = false;
|
2004-01-07 22:14:38 +08:00
|
|
|
bool rollBack = false;
|
2004-01-07 22:10:47 +08:00
|
|
|
for(unsigned int i=0;i<_rangeList.size();++i)
|
|
|
|
{
|
|
|
|
if (_rangeList[i].first<=distance && distance<_rangeList[i].second)
|
|
|
|
{
|
|
|
|
if (i<_children.size())
|
|
|
|
{
|
2004-01-07 22:14:38 +08:00
|
|
|
bool acceptThisChild = true;
|
2004-01-07 22:10:47 +08:00
|
|
|
|
2004-01-07 22:14:38 +08:00
|
|
|
if (i)
|
|
|
|
{
|
|
|
|
for (unsigned int ni = 0; ni < _neighbours.size(); ni++)
|
|
|
|
{
|
|
|
|
Neighbour& n = _neighbours[ni];
|
|
|
|
if (TileMapper::instance()->getPagedLOD(n._x, n._y, _tileLOD)== 0)
|
|
|
|
{
|
|
|
|
rollBack = true;
|
|
|
|
acceptThisChild = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-01-07 22:10:47 +08:00
|
|
|
|
2004-01-07 22:14:38 +08:00
|
|
|
if (acceptThisChild)
|
|
|
|
{
|
|
|
|
if (updateTimeStamp) _perRangeDataList[i]._timeStamp=timeStamp;
|
|
|
|
_children[i]->accept(nv);
|
2004-01-19 23:55:51 +08:00
|
|
|
_lastChildTraversed = (int)i;
|
2004-01-07 22:14:38 +08:00
|
|
|
}
|
2004-01-07 22:10:47 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
needToLoadChild = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-07 22:14:38 +08:00
|
|
|
if (rollBack)
|
|
|
|
{
|
|
|
|
if (updateTimeStamp) _perRangeDataList[0]._timeStamp=timeStamp;
|
|
|
|
_children[0]->accept(nv);
|
2004-01-19 23:55:51 +08:00
|
|
|
_lastChildTraversed = 0;
|
2004-01-07 22:14:38 +08:00
|
|
|
//std::cout << "Rolling back" << std::endl;
|
|
|
|
}
|
2004-01-07 22:10:47 +08:00
|
|
|
|
|
|
|
if (needToLoadChild)
|
|
|
|
{
|
|
|
|
unsigned int numChildren = _children.size();
|
|
|
|
|
|
|
|
//std::cout<<"PagedLOD::traverse() - falling back "<<std::endl;
|
|
|
|
// select the last valid child.
|
2004-01-19 23:55:51 +08:00
|
|
|
if (numChildren>0 && ((int)numChildren-1)!=_lastChildTraversed)
|
2004-01-07 22:10:47 +08:00
|
|
|
{
|
|
|
|
//std::cout<<" to child "<<numChildren-1<<std::endl;
|
|
|
|
if (updateTimeStamp) _perRangeDataList[numChildren-1]._timeStamp=timeStamp;
|
|
|
|
_children[numChildren-1]->accept(nv);
|
2004-01-19 23:55:51 +08:00
|
|
|
_lastChildTraversed = numChildren-1;
|
2004-01-07 22:10:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// now request the loading of the next unload child.
|
|
|
|
if (nv.getDatabaseRequestHandler() && numChildren<_perRangeDataList.size())
|
|
|
|
{
|
|
|
|
// compute priority from where abouts in the required range the distance falls.
|
|
|
|
float priority = (_rangeList[numChildren].second-distance)/(_rangeList[numChildren].second-_rangeList[numChildren].first);
|
|
|
|
|
|
|
|
// modify the priority according to the child's priority offset and scale.
|
|
|
|
priority = _perRangeDataList[numChildren]._priorityOffset + priority * _perRangeDataList[numChildren]._priorityScale;
|
|
|
|
|
|
|
|
//std::cout<<" requesting child "<<_fileNameList[numChildren]<<" priotity = "<<priority<<std::endl;
|
|
|
|
nv.getDatabaseRequestHandler()->requestNodeFile(_perRangeDataList[numChildren]._filename,this,priority,nv.getFrameStamp());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|