2001-10-04 23:12:57 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2001 Robert Osfield
|
|
|
|
//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 OSG_DRAWABLE
|
|
|
|
#define OSG_DRAWABLE 1
|
|
|
|
|
|
|
|
#include <osg/BoundingBox>
|
|
|
|
#include <osg/StateSet>
|
|
|
|
#include <osg/State>
|
|
|
|
#include <osg/Types>
|
2001-10-13 04:05:55 +08:00
|
|
|
#include <osg/Vec2>
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2001-10-11 04:20:14 +08:00
|
|
|
class Statistics;
|
|
|
|
class Vec2;
|
|
|
|
class Vec3;
|
|
|
|
class Vec4;
|
|
|
|
|
2001-11-02 20:26:33 +08:00
|
|
|
// this is define to alter the way display lists are compiled inside the
|
|
|
|
// the draw method, it has been found that the NVidia drivers fail completely
|
|
|
|
// to optimize COMPILE_AND_EXECUTE in fact make it go slower than for no display
|
|
|
|
// lists, but optimize a seperate COMPILE very well?! Define it as default
|
|
|
|
// the use of a sperate COMPILE, then glCallList rather than use COMPILE_AND_EXECUTE.
|
2001-10-11 04:20:14 +08:00
|
|
|
|
2001-11-02 20:26:33 +08:00
|
|
|
#define USE_SEPERATE_COMPILE_AND_EXECUTE
|
2001-10-11 04:20:14 +08:00
|
|
|
|
2001-09-29 04:10:41 +08:00
|
|
|
/** Pure virtual base class for drawable Geometry. Contains no drawing primitives
|
2001-09-20 05:19:47 +08:00
|
|
|
directly, these are provided by subclasses such as GeoSet. State attributes
|
|
|
|
for a Drawable are maintained in StateSet which the Drawable maintains
|
|
|
|
a referenced counted pointer to. Both Drawable's and StateSet's can
|
|
|
|
be shared for optimal memory usage and graphics performance.
|
2001-10-23 06:02:47 +08:00
|
|
|
|
|
|
|
Subclasses should provide an instance of getStats(Statistics *st) if the subclass
|
|
|
|
contains drawing primitives. This member function should add the primitives it
|
|
|
|
draws into the Statistics class; for example add the number of quads, triangles etc
|
|
|
|
created. For an example see GeoSet.cpp:
|
|
|
|
getStats(osgUtil::Statistics *stat).
|
|
|
|
Failure to implement this routine will only result in the stats displayed for
|
|
|
|
your drawable being wrong.
|
|
|
|
Another example is in the InfinitePlane class- this draws a normal geoset AND
|
|
|
|
its own special set of quads, so this case of getPrims calls:
|
|
|
|
the normal geoset stats gs->getStats(..), and then adds the number of quads
|
|
|
|
rendered directly (it is rendered in a display list, but we do know how many
|
|
|
|
quads are in the display list).
|
2001-09-20 05:19:47 +08:00
|
|
|
*/
|
|
|
|
class SG_EXPORT Drawable : public Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Drawable();
|
|
|
|
|
2002-01-29 22:04:06 +08:00
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
|
|
|
|
Drawable(const Drawable& drawable,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
|
|
|
Object(drawable,copyop),
|
|
|
|
_dstate(copyop(drawable._dstate.get())),
|
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
|
|
|
_supportsDisplayList(drawable._supportsDisplayList),
|
|
|
|
_useDisplayList(drawable._useDisplayList),
|
|
|
|
_globjList(drawable._globjList),
|
|
|
|
_bbox(drawable._bbox),
|
|
|
|
_bbox_computed(drawable._bbox_computed) {}
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
virtual bool isSameKindAs(const Object* obj) const { return dynamic_cast<const Drawable*>(obj)!=NULL; }
|
|
|
|
virtual const char* className() const { return "Drawable"; }
|
|
|
|
|
|
|
|
/** Set the StateSet attached to the Drawable.
|
|
|
|
Previously attached StateSet are automatically unreferenced on
|
|
|
|
assignment of a new drawstate.*/
|
|
|
|
inline void setStateSet(StateSet *state) { _dstate = state; }
|
|
|
|
|
|
|
|
/** Get the attached StateSet.*/
|
|
|
|
inline StateSet* getStateSet() { return _dstate.get();}
|
|
|
|
|
|
|
|
/** Get the attached const StateSet.*/
|
|
|
|
inline const StateSet* getStateSet() const { return _dstate.get();}
|
|
|
|
|
|
|
|
|
2001-09-29 04:10:41 +08:00
|
|
|
/** Set the drawable to it can or cannot be used in conjunction with OpenGL
|
2001-09-20 05:19:47 +08:00
|
|
|
* display lists. With set to true, calls to Drawable::setUseDisplayList,
|
|
|
|
* whereas when set to false, no display lists can be created and calls
|
|
|
|
* to setUseDisplayList are ignored, and a warning is produced. The later
|
|
|
|
* is typically used to guard against the switching on of display lists
|
|
|
|
* on objects with dynamic internal data such as continuous Level of Detail
|
|
|
|
* algorithms.*/
|
|
|
|
void setSupportsDisplayList(const bool flag);
|
|
|
|
|
2001-09-29 04:10:41 +08:00
|
|
|
/** Get whether display lists are supported for this drawable instance.*/
|
2001-09-20 05:19:47 +08:00
|
|
|
inline const bool getSupportsDisplayList() const { return _supportsDisplayList; }
|
|
|
|
|
|
|
|
|
|
|
|
/** When set to true, force the draw method to use OpenGL Display List for rendering.
|
|
|
|
If false rendering directly. If the display list has not been already
|
|
|
|
compile the next call to draw will automatically create the display list.*/
|
|
|
|
void setUseDisplayList(const bool flag);
|
|
|
|
|
|
|
|
/** Return whether OpenGL display lists are being used for rendering.*/
|
|
|
|
inline const bool getUseDisplayList() const { return _useDisplayList; }
|
|
|
|
|
|
|
|
/** Force a recompile on next draw() of any OpenGL display list associated with this geoset.*/
|
|
|
|
void dirtyDisplayList();
|
|
|
|
|
2001-10-11 04:20:14 +08:00
|
|
|
|
2001-10-13 04:05:55 +08:00
|
|
|
/** Dirty the bounding box, forcing a computeBound() on the next call
|
|
|
|
* to getBound(). Should be called in the internal geometry of the Drawable
|
|
|
|
* is modified.*/
|
2001-09-20 05:19:47 +08:00
|
|
|
inline void dirtyBound() { _bbox_computed = false; }
|
|
|
|
|
|
|
|
/** get bounding box of geoset.
|
|
|
|
* Note, now made virtual to make it possible to implement user-drawn
|
|
|
|
* objects albeit so what crudely, to be improved later.
|
|
|
|
*/
|
|
|
|
inline const BoundingBox& getBound() const
|
|
|
|
{
|
|
|
|
if( !_bbox_computed)
|
|
|
|
computeBound();
|
|
|
|
return _bbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** draw OpenGL primitives.
|
|
|
|
* If the drawable has _useDisplayList set to true then use an OpenGL display
|
|
|
|
* list, automatically compiling one if required.
|
|
|
|
* Otherwise call drawImmediateMode().
|
2001-10-11 04:20:14 +08:00
|
|
|
* Note, draw method should *not* be overridden in subclasses as it
|
2001-09-20 05:19:47 +08:00
|
|
|
* manages the optional display list.
|
|
|
|
*/
|
2001-10-11 04:20:14 +08:00
|
|
|
inline void draw(State& state);
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
/** Immediately compile this drawable into an OpenGL Display List.
|
2001-09-29 04:10:41 +08:00
|
|
|
Note I, operation is ignored if _useDisplayList to false.
|
|
|
|
Note II, compile is not intended to be overridden in subclasses.*/
|
2001-09-20 05:19:47 +08:00
|
|
|
void compile(State& state);
|
|
|
|
|
|
|
|
/** draw directly ignoring an OpenGL display list which could be attached.
|
|
|
|
* This is the internal draw method which does the drawing itself,
|
|
|
|
* and is the method to override when deriving from Drawable.
|
|
|
|
*/
|
|
|
|
virtual void drawImmediateMode(State& state) = 0;
|
|
|
|
|
|
|
|
/** use deleteDisplayList instead of glDeleteList to allow
|
|
|
|
* OpenGL display list to cached until they can be deleted
|
|
|
|
* by the OpenGL context in which they were created, specified
|
|
|
|
* by contextID.*/
|
|
|
|
static void deleteDisplayList(uint contextID,uint globj);
|
|
|
|
|
|
|
|
/** flush all the cached display list which need to be deleted
|
|
|
|
* in the OpenGL context related to contextID.*/
|
|
|
|
static void flushDeletedDisplayLists(uint contextID);
|
2001-10-11 04:20:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
/** Collect Stistics count from Drawable.*/
|
|
|
|
virtual bool getStats(Statistics&) { return false; }
|
|
|
|
|
|
|
|
|
2001-10-13 04:05:55 +08:00
|
|
|
typedef uint AttributeBitMask;
|
|
|
|
|
|
|
|
enum AttributeBitMaskValues
|
2001-10-11 04:20:14 +08:00
|
|
|
{
|
|
|
|
COORDS = 0x1,
|
|
|
|
NORMALS = 0x2,
|
|
|
|
COLORS = 0x4,
|
|
|
|
TEXTURE_COORDS = 0x8,
|
|
|
|
TEXTURE_COORDS_0 = TEXTURE_COORDS,
|
2001-10-14 14:01:31 +08:00
|
|
|
TEXTURE_COORDS_1 = 0x10,
|
|
|
|
TEXTURE_COORDS_2 = 0x20,
|
|
|
|
TEXTURE_COORDS_3 = 0x40
|
2001-10-11 04:20:14 +08:00
|
|
|
};
|
|
|
|
|
2001-10-13 19:16:10 +08:00
|
|
|
class AttributeFunctor
|
2001-10-11 04:20:14 +08:00
|
|
|
{
|
2001-10-13 19:16:10 +08:00
|
|
|
public:
|
|
|
|
|
|
|
|
AttributeFunctor(AttributeBitMask abm):_abm(abm) {}
|
|
|
|
virtual ~AttributeFunctor() {}
|
|
|
|
|
|
|
|
void setAttributeBitMask(AttributeBitMask abm) { _abm=abm; }
|
|
|
|
AttributeBitMask getAttributeBitMask() const { return _abm; }
|
|
|
|
|
2001-10-13 04:05:55 +08:00
|
|
|
virtual bool apply(AttributeBitMask,Vec2*,Vec2*) { return false; }
|
|
|
|
virtual bool apply(AttributeBitMask,Vec3*,Vec3*) { return false; }
|
|
|
|
virtual bool apply(AttributeBitMask,Vec4*,Vec4*) { return false; }
|
2001-10-13 19:16:10 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
AttributeBitMask _abm;
|
2001-10-11 04:20:14 +08:00
|
|
|
};
|
|
|
|
|
2001-10-13 19:16:10 +08:00
|
|
|
/** return the attributes supported by applyAttrbuteOperation() as an AttributeBitMask.*/
|
|
|
|
virtual AttributeBitMask suppportsAttributeOperation() const { return (AttributeBitMask)0; }
|
2001-10-11 04:20:14 +08:00
|
|
|
|
2001-10-13 04:05:55 +08:00
|
|
|
/** return the attributes successully applied in applyAttributeUpdate.*/
|
2001-10-13 19:16:10 +08:00
|
|
|
virtual AttributeBitMask applyAttributeOperation(AttributeFunctor&) { return 0; }
|
2001-10-11 04:20:14 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
Drawable& operator = (const Drawable&) { return *this;}
|
|
|
|
|
|
|
|
virtual ~Drawable();
|
|
|
|
|
|
|
|
/** compute the bounding box of the drawable. Method must be
|
2001-09-29 04:10:41 +08:00
|
|
|
implemented by subclasses.*/
|
2001-09-20 05:19:47 +08:00
|
|
|
virtual const bool computeBound() const = 0;
|
|
|
|
|
|
|
|
ref_ptr<StateSet> _dstate;
|
|
|
|
|
|
|
|
bool _supportsDisplayList;
|
|
|
|
bool _useDisplayList;
|
|
|
|
|
|
|
|
typedef std::vector<uint> GLObjectList;
|
|
|
|
mutable GLObjectList _globjList;
|
|
|
|
|
|
|
|
mutable BoundingBox _bbox;
|
|
|
|
mutable bool _bbox_computed;
|
|
|
|
|
|
|
|
// static cache of deleted display lists which can only
|
|
|
|
// by completely deleted once the appropriate OpenGL context
|
|
|
|
// is set.
|
|
|
|
typedef std::map<uint,std::set<uint> > DeletedDisplayListCache;
|
|
|
|
static DeletedDisplayListCache s_deletedDisplayListCache;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2001-10-11 04:20:14 +08:00
|
|
|
inline void Drawable::draw(State& state)
|
|
|
|
{
|
|
|
|
if (_useDisplayList)
|
|
|
|
{
|
|
|
|
|
|
|
|
// get the contextID (user defined ID of 0 upwards) for the
|
|
|
|
// current OpenGL context.
|
|
|
|
uint contextID = state.getContextID();
|
|
|
|
|
|
|
|
// fill in array if required.
|
|
|
|
while (_globjList.size()<=contextID) _globjList.push_back(0);
|
|
|
|
|
|
|
|
// get the globj for the current contextID.
|
|
|
|
uint& globj = _globjList[contextID];
|
|
|
|
|
|
|
|
// call the globj if already set otherwise compile and execute.
|
|
|
|
if( globj != 0 )
|
|
|
|
{
|
|
|
|
glCallList( globj );
|
|
|
|
}
|
|
|
|
else if (_useDisplayList)
|
|
|
|
{
|
2001-11-02 20:26:33 +08:00
|
|
|
#ifdef USE_SEPERATE_COMPILE_AND_EXECUTE
|
|
|
|
globj = glGenLists( 1 );
|
|
|
|
glNewList( globj, GL_COMPILE );
|
|
|
|
drawImmediateMode(state);
|
|
|
|
glEndList();
|
|
|
|
|
|
|
|
glCallList( globj);
|
|
|
|
#else
|
2001-10-11 04:20:14 +08:00
|
|
|
globj = glGenLists( 1 );
|
|
|
|
glNewList( globj, GL_COMPILE_AND_EXECUTE );
|
|
|
|
drawImmediateMode(state);
|
|
|
|
glEndList();
|
2001-11-02 20:26:33 +08:00
|
|
|
#endif
|
2001-10-11 04:20:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// draw object as nature intended..
|
|
|
|
drawImmediateMode(state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
#endif
|