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_RENDERLEAF
|
|
|
|
#define OSGUTIL_RENDERLEAF 1
|
|
|
|
|
|
|
|
#include <osg/ref_ptr>
|
|
|
|
#include <osg/Matrix>
|
|
|
|
#include <osg/Drawable>
|
|
|
|
#include <osg/State>
|
|
|
|
|
|
|
|
#include <osgUtil/Export>
|
|
|
|
|
|
|
|
namespace osgUtil {
|
|
|
|
|
|
|
|
// forward declare RenderGraph
|
|
|
|
class RenderGraph;
|
|
|
|
|
|
|
|
/** container class for all data required for rendering of drawables.
|
|
|
|
*/
|
|
|
|
class OSGUTIL_EXPORT RenderLeaf : public osg::Referenced
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
2002-04-01 00:40:44 +08:00
|
|
|
inline RenderLeaf(osg::Drawable* drawable,osg::Matrix* projection,osg::Matrix* modelview, float depth=0.0f):
|
2001-09-20 05:19:47 +08:00
|
|
|
_parent(NULL),
|
|
|
|
_drawable(drawable),
|
2002-04-01 00:40:44 +08:00
|
|
|
_projection(projection),
|
|
|
|
_modelview(modelview),
|
2001-09-20 05:19:47 +08:00
|
|
|
_depth(depth) {}
|
|
|
|
|
|
|
|
|
2002-04-01 00:40:44 +08:00
|
|
|
inline void set(osg::Drawable* drawable,osg::Matrix* projection,osg::Matrix* modelview, float depth=0.0f)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
_parent = NULL;
|
|
|
|
_drawable = drawable;
|
2002-04-01 00:40:44 +08:00
|
|
|
_projection = projection,
|
|
|
|
_modelview = modelview,
|
2001-09-20 05:19:47 +08:00
|
|
|
_depth = depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void reset()
|
|
|
|
{
|
|
|
|
_parent = NULL;
|
|
|
|
_drawable = NULL;
|
2002-04-01 00:40:44 +08:00
|
|
|
_projection = NULL;
|
|
|
|
_modelview = NULL;
|
2001-09-20 05:19:47 +08:00
|
|
|
_depth = 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
virtual void render(osg::State& state,RenderLeaf* previous);
|
|
|
|
|
|
|
|
/// allow RenderGraph to change the RenderLeaf's _parent.
|
2002-02-04 03:18:14 +08:00
|
|
|
friend class osgUtil::RenderGraph;
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
RenderGraph* _parent;
|
|
|
|
osg::Drawable* _drawable;
|
2002-04-01 00:40:44 +08:00
|
|
|
osg::ref_ptr<osg::Matrix> _projection;
|
|
|
|
osg::ref_ptr<osg::Matrix> _modelview;
|
2001-09-20 05:19:47 +08:00
|
|
|
float _depth;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/// disallow creation of blank RenderLeaf as this isn't useful.
|
|
|
|
RenderLeaf():
|
|
|
|
_parent(NULL),
|
|
|
|
_drawable(NULL),
|
2002-04-01 00:40:44 +08:00
|
|
|
_projection(NULL),
|
|
|
|
_modelview(NULL),
|
2001-09-20 05:19:47 +08:00
|
|
|
_depth(0.0f) {}
|
|
|
|
|
|
|
|
/// disallow copy construction.
|
|
|
|
RenderLeaf(const RenderLeaf&):osg::Referenced() {}
|
|
|
|
/// disallow copy operator.
|
|
|
|
RenderLeaf& operator = (const RenderLeaf&) { return *this; }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#endif
|