123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
- *
- * This library is open source and may be redistributed and/or modified under
- * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
- * (at your option) any later version. The full license is in LICENSE file
- * included with this distribution, and on the openscenegraph.org website.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * OpenSceneGraph Public License for more details.
- */
- #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 {
- #define OSGUTIL_RENDERBACKEND_USE_REF_PTR
- // Forward declare StateGraph
- class StateGraph;
- /** Container class for all data required for rendering of drawables.
- */
- class OSGUTIL_EXPORT RenderLeaf : public osg::Referenced
- {
- public:
- inline RenderLeaf(osg::Drawable* drawable,osg::RefMatrix* projection,osg::RefMatrix* modelview, float depth=0.0f, unsigned int traversalOrderNumber=0):
- osg::Referenced(false),
- _parent(0),
- _drawable(drawable),
- _projection(projection),
- _modelview(modelview),
- _depth(depth),
- _traversalOrderNumber(traversalOrderNumber)
- {
- _dynamic = (drawable->getDataVariance()==osg::Object::DYNAMIC);
- }
- inline void set(osg::Drawable* drawable,osg::RefMatrix* projection,osg::RefMatrix* modelview, float depth=0.0f, unsigned int traversalOrderNumber=0)
- {
- _parent = 0;
- _drawable = drawable;
- _projection = projection;
- _modelview = modelview;
- _depth = depth;
- _dynamic = (drawable->getDataVariance()==osg::Object::DYNAMIC);
- _traversalOrderNumber = traversalOrderNumber;
- }
- inline void reset()
- {
- _parent = 0;
- _drawable = 0;
- _projection = 0;
- _modelview = 0;
- _depth = 0.0f;
- _dynamic = false;
- _traversalOrderNumber = 0;
- }
- virtual void render(osg::RenderInfo& renderInfo,RenderLeaf* previous);
- virtual void resizeGLObjectBuffers(unsigned int maxSize)
- {
- if (_drawable) _drawable->resizeGLObjectBuffers(maxSize);
- }
- virtual void releaseGLObjects(osg::State* state=0) const
- {
- if (_drawable) _drawable->releaseGLObjects(state);
- }
- /// Allow StateGraph to change the RenderLeaf's _parent.
- friend class osgUtil::StateGraph;
- public:
- StateGraph* _parent;
- #ifdef OSGUTIL_RENDERBACKEND_USE_REF_PTR
- osg::ref_ptr<osg::Drawable> _drawable;
- const osg::Drawable* getDrawable() const { return _drawable.get(); }
- #else
- osg::Drawable* _drawable;
- const osg::Drawable* getDrawable() const { return _drawable; }
- #endif
- osg::ref_ptr<osg::RefMatrix> _projection;
- osg::ref_ptr<osg::RefMatrix> _modelview;
- float _depth;
- bool _dynamic;
- unsigned int _traversalOrderNumber;
- private:
- /// disallow creation of blank RenderLeaf as this isn't useful.
- RenderLeaf():
- osg::Referenced(false),
- _parent(0),
- _drawable(0),
- _projection(0),
- _modelview(0),
- _depth(0.0f),
- _traversalOrderNumber(0) {}
- /// disallow copy construction.
- RenderLeaf(const RenderLeaf&):osg::Referenced(false) {}
- /// disallow copy operator.
- RenderLeaf& operator = (const RenderLeaf&) { return *this; }
- };
- }
- #endif
|