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-01-11 00:32:10 +08:00
|
|
|
#ifndef OSG_LOD
|
|
|
|
#define OSG_LOD 1
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
#include <osg/Group>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
|
|
|
/** LOD - Level Of Detail group node which allows switching between children
|
|
|
|
depending on distance from eye point.
|
|
|
|
Typical uses are for load balancing - objects further away from
|
|
|
|
the eye point are rendered at a lower level of detail, and at times
|
|
|
|
of high stress on the graphics pipeline lower levels of detail can
|
|
|
|
also be chosen.
|
2002-01-01 07:16:20 +08:00
|
|
|
The children are ordered from most detailed (for close up views) to the least
|
|
|
|
(see from a distance), and a set of ranges are used to decide which LOD is used
|
|
|
|
at different view distances, the criteria used is child 'i' is used when
|
|
|
|
range[i]<dist<range[i+1] is true. This requires there to be n+1 range values where the number of
|
|
|
|
children is n, since no maximum distance of infinity is assumed. If the number of range values (m)
|
|
|
|
is insufficient then the children m through to n will be ignored, only 0..m-1 will be used
|
|
|
|
during rendering.
|
2001-01-11 00:32:10 +08:00
|
|
|
*/
|
|
|
|
class SG_EXPORT LOD : public Group
|
|
|
|
{
|
|
|
|
public :
|
Added support for shallow and deep copy of nodes, drawables and state, via a
copy constructor which takes an optional Cloner object, and the old
osg::Object::clone() has changed so that it now requires a Cloner as paramter.
This is passed on to the copy constructor to help control the shallow vs
deep copying. The old functionality of clone() which was clone of type has
been renamed to cloneType().
Updated all of the OSG to work with these new conventions, implemention all
the required copy constructors etc. A couple of areas will do shallow
copies by design, a couple of other still need to be updated to do either
shallow or deep.
Neither of the shallow or deep copy operations have been tested yet, only
the old functionality of the OSG has been checked so far, such running the
viewer on various demo datasets.
Also fixed a problem in osg::Optimize::RemoveRendundentNodesVisitor which
was not checking that Group didn't have have any attached StateSet's, Callbacks
or UserData. These checks have now been added, which fixes a bug which was
revealled by the new osgscribe demo, this related to removal of group acting
as state decorator.
method
2002-01-29 05:17:01 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
LOD() {}
|
|
|
|
|
2002-01-29 22:04:06 +08:00
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
|
|
|
|
LOD(const LOD&,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
|
Added support for shallow and deep copy of nodes, drawables and state, via a
copy constructor which takes an optional Cloner object, and the old
osg::Object::clone() has changed so that it now requires a Cloner as paramter.
This is passed on to the copy constructor to help control the shallow vs
deep copying. The old functionality of clone() which was clone of type has
been renamed to cloneType().
Updated all of the OSG to work with these new conventions, implemention all
the required copy constructors etc. A couple of areas will do shallow
copies by design, a couple of other still need to be updated to do either
shallow or deep.
Neither of the shallow or deep copy operations have been tested yet, only
the old functionality of the OSG has been checked so far, such running the
viewer on various demo datasets.
Also fixed a problem in osg::Optimize::RemoveRendundentNodesVisitor which
was not checking that Group didn't have have any attached StateSet's, Callbacks
or UserData. These checks have now been added, which fixes a bug which was
revealled by the new osgscribe demo, this related to removal of group acting
as state decorator.
method
2002-01-29 05:17:01 +08:00
|
|
|
|
2002-06-06 21:25:36 +08:00
|
|
|
META_Node(osg, LOD);
|
2001-09-22 10:42:08 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
virtual void traverse(NodeVisitor& nv);
|
|
|
|
|
2002-10-08 05:23:37 +08:00
|
|
|
virtual bool addChild(Node *child);
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-10-08 05:23:37 +08:00
|
|
|
virtual bool addChild(Node *child, float min, float max);
|
|
|
|
|
|
|
|
virtual bool removeChild(Node *child);
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
typedef std::pair<float,float> MinMaxPair;
|
|
|
|
typedef std::vector<MinMaxPair> RangeList;
|
|
|
|
|
|
|
|
enum CenterMode
|
2002-02-07 09:07:11 +08:00
|
|
|
{
|
2002-10-07 04:33:13 +08:00
|
|
|
USE_BOUNDING_SPHERE_CENTER,
|
|
|
|
USER_DEFINED_CENTER
|
2002-02-07 09:07:11 +08:00
|
|
|
};
|
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
void setCenterMode(CenterMode mode) { _centerMode=mode; }
|
|
|
|
|
|
|
|
CenterMode getCenterMode() const { return _centerMode; }
|
|
|
|
|
|
|
|
/** Sets the object-space point which defines the center of the osg::LOD.
|
|
|
|
center is affected by any transforms in the hierarchy above the osg::LOD.*/
|
|
|
|
inline void setCenter(const Vec3& center) { _centerMode=USER_DEFINED_CENTER; _userDefinedCenter = center; }
|
2002-02-07 09:07:11 +08:00
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
/** return the LOD center point. */
|
|
|
|
inline const Vec3& getCenter() const { if (_centerMode==USER_DEFINED_CENTER) return _userDefinedCenter; else return getBound().center(); }
|
2002-02-07 09:07:11 +08:00
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
/** Sets the min and max visible ranges of range of specifiec child.
|
|
|
|
Values are floating point distance specified in local objects coordinates.*/
|
|
|
|
void setRange(unsigned int childNo, float min,float max);
|
|
|
|
|
|
|
|
/** returns the min visible range for specified child.*/
|
|
|
|
inline float getMinRange(unsigned int childNo) const { return _rangeList[childNo].first; }
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
/** returns the max visible range for specified child.*/
|
|
|
|
inline float getMaxRange(unsigned int childNo) const { return _rangeList[childNo].second; }
|
|
|
|
|
|
|
|
/** returns the number of ranges currently set.
|
|
|
|
* An LOD which has been fully set up will have getNumChildren()==getNumRanges(). */
|
|
|
|
inline unsigned int getNumRanges() const { return _rangeList.size(); }
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
/** return the list of MinMax ranges for each child.*/
|
|
|
|
inline RangeList& getRangeList() { return _rangeList; }
|
|
|
|
|
|
|
|
/** return the list of MinMax ranges for each child.*/
|
|
|
|
inline const RangeList& getRangeList() const { return _rangeList; }
|
2002-05-29 07:43:22 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
protected :
|
|
|
|
virtual ~LOD() {}
|
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
CenterMode _centerMode;
|
|
|
|
Vec3 _userDefinedCenter;
|
2002-02-07 09:07:11 +08:00
|
|
|
|
2002-10-07 04:33:13 +08:00
|
|
|
RangeList _rangeList;
|
2002-02-07 09:07:11 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
#endif
|