2002-07-17 04:07:32 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
|
2001-10-04 23:12:57 +08:00
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
#ifndef OSGUTIL_RENDERGRAPH
|
|
|
|
#define OSGUTIL_RENDERGRAPH 1
|
|
|
|
|
|
|
|
#include <osg/Matrix>
|
|
|
|
#include <osg/Drawable>
|
|
|
|
#include <osg/StateSet>
|
|
|
|
#include <osg/State>
|
|
|
|
#include <osg/Light>
|
|
|
|
|
|
|
|
#include <osgUtil/RenderLeaf>
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
#include <vector>
|
2002-05-28 18:24:43 +08:00
|
|
|
#include <algorithm>
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
namespace osgUtil {
|
|
|
|
|
2002-05-28 18:24:43 +08:00
|
|
|
struct LeafDepthSortFunctor
|
|
|
|
{
|
2002-09-02 20:31:35 +08:00
|
|
|
bool operator() (const osg::ref_ptr<RenderLeaf>& lhs,const osg::ref_ptr<RenderLeaf>& rhs)
|
2002-05-28 18:24:43 +08:00
|
|
|
{
|
|
|
|
return (lhs->_depth>rhs->_depth);
|
|
|
|
}
|
|
|
|
};
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
class OSGUTIL_EXPORT RenderGraph : public osg::Referenced
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
|
|
typedef std::map< const osg::StateSet*, osg::ref_ptr<RenderGraph> > ChildList;
|
|
|
|
typedef std::vector< osg::ref_ptr<RenderLeaf> > LeafList;
|
|
|
|
|
|
|
|
RenderGraph* _parent;
|
|
|
|
osg::ref_ptr<const osg::StateSet> _stateset;
|
|
|
|
|
|
|
|
int _depth;
|
|
|
|
ChildList _children;
|
|
|
|
LeafList _leaves;
|
2002-05-18 16:39:42 +08:00
|
|
|
|
2002-05-28 18:24:43 +08:00
|
|
|
mutable float _averageDistance;
|
2002-09-18 22:57:01 +08:00
|
|
|
mutable float _minimumDistance;
|
2002-05-28 18:24:43 +08:00
|
|
|
|
2002-05-18 16:39:42 +08:00
|
|
|
osg::ref_ptr<osg::Referenced> _userData;
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
RenderGraph():
|
|
|
|
_parent(NULL),
|
|
|
|
_stateset(NULL),
|
2002-05-28 18:24:43 +08:00
|
|
|
_depth(0),
|
2002-07-21 07:54:55 +08:00
|
|
|
_averageDistance(0),
|
2002-09-18 22:57:01 +08:00
|
|
|
_minimumDistance(0),
|
2002-07-21 07:54:55 +08:00
|
|
|
_userData(NULL)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
RenderGraph(RenderGraph* parent,const osg::StateSet* stateset):
|
|
|
|
_parent(parent),
|
2002-07-21 07:54:55 +08:00
|
|
|
_stateset(stateset),
|
|
|
|
_depth(0),
|
|
|
|
_averageDistance(0),
|
2002-09-18 22:57:01 +08:00
|
|
|
_minimumDistance(0),
|
2002-07-21 07:54:55 +08:00
|
|
|
_userData(NULL)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
if (_parent) _depth = _parent->_depth + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
~RenderGraph() {}
|
|
|
|
|
2002-07-21 07:54:55 +08:00
|
|
|
RenderGraph* cloneType() const { return osgNew RenderGraph; }
|
2002-02-19 07:01:09 +08:00
|
|
|
|
2002-05-18 16:39:42 +08:00
|
|
|
void setUserData(osg::Referenced* obj) { _userData = obj; }
|
|
|
|
osg::Referenced* getUserData() { return _userData.get(); }
|
|
|
|
const osg::Referenced* getUserData() const { return _userData.get(); }
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
|
2001-09-28 20:36:40 +08:00
|
|
|
/** return true if all of drawables, lights and children are empty.*/
|
2002-09-02 20:31:35 +08:00
|
|
|
inline bool empty() const
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
return _leaves.empty() && _children.empty();
|
|
|
|
}
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
inline bool leaves_empty() const
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
return _leaves.empty();
|
|
|
|
}
|
|
|
|
|
2002-05-28 18:24:43 +08:00
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
inline float getAverageDistance() const
|
2002-05-28 18:24:43 +08:00
|
|
|
{
|
|
|
|
if (_averageDistance==FLT_MAX && !_leaves.empty())
|
|
|
|
{
|
|
|
|
_averageDistance = 0.0f;
|
|
|
|
for(LeafList::const_iterator itr=_leaves.begin();
|
|
|
|
itr!=_leaves.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
_averageDistance += (*itr)->_depth;
|
|
|
|
}
|
|
|
|
_averageDistance /= (float)_leaves.size();
|
|
|
|
|
|
|
|
}
|
|
|
|
return _averageDistance;
|
|
|
|
}
|
|
|
|
|
2002-09-18 22:57:01 +08:00
|
|
|
inline float getMinimumDistance() const
|
|
|
|
{
|
|
|
|
if (_minimumDistance==FLT_MAX && !_leaves.empty())
|
|
|
|
{
|
|
|
|
LeafList::const_iterator itr=_leaves.begin();
|
|
|
|
_minimumDistance = (*itr)->_depth;
|
|
|
|
++itr;
|
|
|
|
for(;
|
|
|
|
itr!=_leaves.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
if ((*itr)->_depth<_minimumDistance) _minimumDistance=(*itr)->_depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return _minimumDistance;
|
|
|
|
}
|
|
|
|
|
2002-05-28 18:24:43 +08:00
|
|
|
inline void sortFrontToBack()
|
|
|
|
{
|
|
|
|
std::sort(_leaves.begin(),_leaves.end(),LeafDepthSortFunctor());
|
|
|
|
}
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
/** reset the internal contents of a RenderGraph, including deleting all children.*/
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
/** recursively clean the RenderGraph of all its drawables, lights and depths.
|
|
|
|
* Leaves children intact, and ready to be populated again.*/
|
|
|
|
void clean();
|
|
|
|
|
|
|
|
/** recursively prune the RenderGraph of empty children.*/
|
|
|
|
void prune();
|
|
|
|
|
|
|
|
|
|
|
|
inline RenderGraph* find_or_insert(const osg::StateSet* stateset)
|
|
|
|
{
|
|
|
|
// search for the appropriate state group, return it if found.
|
|
|
|
ChildList::iterator itr = _children.find(stateset);
|
|
|
|
if (itr!=_children.end()) return itr->second.get();
|
|
|
|
|
2001-09-28 20:36:40 +08:00
|
|
|
// create a state group and insert it into the children list
|
2001-09-20 05:19:47 +08:00
|
|
|
// then return the state group.
|
2002-07-21 07:54:55 +08:00
|
|
|
RenderGraph* sg = osgNew RenderGraph(this,stateset);
|
2001-09-20 05:19:47 +08:00
|
|
|
_children[stateset] = sg;
|
|
|
|
return sg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** add a render leaf.*/
|
|
|
|
inline void addLeaf(RenderLeaf* leaf)
|
|
|
|
{
|
|
|
|
if (leaf)
|
|
|
|
{
|
2002-05-28 18:24:43 +08:00
|
|
|
_averageDistance = FLT_MAX; // signify dirty.
|
2002-09-18 22:57:01 +08:00
|
|
|
_minimumDistance = FLT_MAX; // signify dirty.
|
2001-09-20 05:19:47 +08:00
|
|
|
_leaves.push_back(leaf);
|
|
|
|
leaf->_parent = this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void moveRenderGraph(osg::State& state,RenderGraph* sg_curr,RenderGraph* sg_new)
|
|
|
|
{
|
|
|
|
if (sg_new==sg_curr || sg_new==NULL) return;
|
|
|
|
|
|
|
|
if (sg_curr==NULL)
|
|
|
|
{
|
|
|
|
|
|
|
|
// use return path to trace back steps to sg_new.
|
|
|
|
std::vector<RenderGraph*> return_path;
|
|
|
|
|
|
|
|
// need to pop back root render graph.
|
|
|
|
do
|
|
|
|
{
|
|
|
|
return_path.push_back(sg_new);
|
|
|
|
sg_new = sg_new->_parent;
|
|
|
|
} while (sg_new);
|
|
|
|
|
|
|
|
for(std::vector<RenderGraph*>::reverse_iterator itr=return_path.rbegin();
|
|
|
|
itr!=return_path.rend();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
RenderGraph* rg = (*itr);
|
|
|
|
if (rg->_stateset.valid()) state.pushStateSet(rg->_stateset.get());
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// first handle the typical case which is two state groups
|
|
|
|
// are neighbours.
|
|
|
|
if (sg_curr->_parent==sg_new->_parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
// state has changed so need to pop old state.
|
|
|
|
if (sg_curr->_stateset.valid()) state.popStateSet();
|
|
|
|
// and push new state.
|
|
|
|
if (sg_new->_stateset.valid()) state.pushStateSet(sg_new->_stateset.get());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-28 20:36:40 +08:00
|
|
|
// need to pop back up to the same depth as the new state group.
|
2001-09-20 05:19:47 +08:00
|
|
|
while (sg_curr->_depth>sg_new->_depth)
|
|
|
|
{
|
|
|
|
if (sg_curr->_stateset.valid()) state.popStateSet();
|
|
|
|
sg_curr = sg_curr->_parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
// use return path to trace back steps to sg_new.
|
|
|
|
std::vector<RenderGraph*> return_path;
|
|
|
|
|
2001-09-28 20:36:40 +08:00
|
|
|
// need to pop back up to the same depth as the curr state group.
|
2001-09-20 05:19:47 +08:00
|
|
|
while (sg_new->_depth>sg_curr->_depth)
|
|
|
|
{
|
|
|
|
return_path.push_back(sg_new);
|
|
|
|
sg_new = sg_new->_parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
// now pop back up both parent paths until they agree.
|
|
|
|
while (sg_curr->_parent!=sg_new->_parent)
|
|
|
|
{
|
|
|
|
if (sg_curr->_stateset.valid()) state.popStateSet();
|
|
|
|
sg_curr = sg_curr->_parent;
|
|
|
|
|
|
|
|
return_path.push_back(sg_new);
|
|
|
|
sg_new = sg_new->_parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(std::vector<RenderGraph*>::reverse_iterator itr=return_path.rbegin();
|
|
|
|
itr!=return_path.rend();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
RenderGraph* rg = (*itr);
|
|
|
|
if (rg->_stateset.valid()) state.pushStateSet(rg->_stateset.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static void moveToRootRenderGraph(osg::State& state,RenderGraph* sg_curr)
|
|
|
|
{
|
|
|
|
// need to pop back all statesets and matrices.
|
|
|
|
while (sg_curr)
|
|
|
|
{
|
|
|
|
if (sg_curr->_stateset.valid()) state.popStateSet();
|
|
|
|
sg_curr = sg_curr->_parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/// disallow copy construction.
|
|
|
|
RenderGraph(const RenderGraph&):osg::Referenced() {}
|
|
|
|
/// disallow copy operator.
|
|
|
|
RenderGraph& operator = (const RenderGraph&) { return *this; }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|