OpenSceneGraph/include/osg/Object

129 lines
5.0 KiB
Plaintext
Raw Normal View History

/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 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.
*/
2001-01-11 00:32:10 +08:00
#ifndef OSG_OBJECT
#define OSG_OBJECT 1
#include <osg/Referenced>
#include <osg/CopyOp>
#include <osg/ref_ptr>
2001-01-11 00:32:10 +08:00
namespace osg {
2001-09-22 10:42:08 +08:00
/** META_Object macro define the standard clone, isSameKindAs and className methods.
* Use when subclassing from Object to make it more convenient to define
2001-09-22 10:42:08 +08:00
* the standard pure virtual clone, isSameKindAs and className methods
* which are required for all Object subclasses.*/
#define META_Object(library,name) \
virtual osg::Object* cloneType() const { return new name (); } \
virtual osg::Object* clone(const osg::CopyOp& copyop) const { return new name (*this,copyop); } \
virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const name *>(obj)!=NULL; } \
virtual const char* libraryName() const { return #library; }\
virtual const char* className() const { return #name; }
2001-09-22 10:42:08 +08:00
2001-01-11 00:32:10 +08:00
/** Base class/standard interface for objects which require IO support,
cloning and reference counting.
Based on GOF Composite, Prototype and Template Method patterns.
*/
class SG_EXPORT Object : public Referenced
{
public:
2001-01-11 00:32:10 +08:00
/** Construct an object. Note Object is a pure virtual base class
and therefore cannot be constructed on its own, only derived
classes which override the clone and className methods are
2001-01-11 00:32:10 +08:00
concrete classes and can be constructed.*/
inline Object():Referenced(),_dataVariance(DYNAMIC) {}
2001-01-11 00:32:10 +08:00
/** Copy constructor, optional CopyOp object can be used to control
* shallow vs deep copying of dynamic data.*/
Object(const Object&,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
/** Clone the type of an object, with Object* return type.
Must be defined by derived classes.*/
virtual Object* cloneType() const = 0;
/** Clone an object, with Object* return type.
2001-01-11 00:32:10 +08:00
Must be defined by derived classes.*/
virtual Object* clone(const CopyOp&) const = 0;
2001-01-11 00:32:10 +08:00
virtual bool isSameKindAs(const Object*) const { return true; }
2001-01-11 00:32:10 +08:00
/** return the name of the object's library. Must be defined
by derived classes. The OpenSceneGraph convention is that the
namespace of a library is the same as the library name.*/
virtual const char* libraryName() const = 0;
2001-01-11 00:32:10 +08:00
/** return the name of the object's class type. Must be defined
by derived classes.*/
virtual const char* className() const = 0;
enum DataVariance
{
DYNAMIC,
STATIC
};
/** Set the data variance of this object.
* Can be set to either STATIC for values that do not change over the lifetime of the object,
* or DYNAMIC for values that vary over the lifetime of the object. The DataVariance value
* can be used by routines such as optimzation codes that wish to share static data.*/
2002-11-11 16:04:40 +08:00
inline void setDataVariance(DataVariance dv) { _dataVariance = dv; }
/** Get the data variance of this object.*/
2002-11-11 16:04:40 +08:00
inline DataVariance getDataVariance() const { return _dataVariance; }
2001-01-11 00:32:10 +08:00
/**
* Set user data, data must be subclassed from Referenced to allow
* automatic memory handling. If your own data isn't directly
* subclassed from Referenced then create an adapter object
* which points to your own object and handles the memory addressing.
*/
inline void setUserData(Referenced* obj) { _userData = obj; }
/** Get user data.*/
inline Referenced* getUserData() { return _userData.get(); }
/** Get const user data.*/
inline const Referenced* getUserData() const { return _userData.get(); }
2001-01-11 00:32:10 +08:00
protected:
/** Object destructor. Note, is protected so that Objects cannot
be deleted other than by being dereferenced and the reference
2001-01-11 00:32:10 +08:00
count being zero (see osg::Referenced), preventing the deletion
of nodes which are still in use. This also means that
Nodes cannot be created on stack i.e Node node will not compile,
2001-01-11 00:32:10 +08:00
forcing all nodes to be created on the heap i.e Node* node
= new Node().*/
virtual ~Object() {}
2002-11-22 16:23:54 +08:00
DataVariance _dataVariance;
2001-01-11 00:32:10 +08:00
ref_ptr<Referenced> _userData;
2001-01-11 00:32:10 +08:00
private:
/** disallow any copy operator.*/
2001-01-11 00:32:10 +08:00
Object& operator = (const Object&) { return *this; }
};
}
2001-01-11 00:32:10 +08:00
#endif