OSG  3.4.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
osgPresentation::AnimationMaterial Class Reference

#include <AnimationMaterial.h>

Inheritance diagram for osgPresentation::AnimationMaterial:
Inheritance graph
[legend]
Collaboration diagram for osgPresentation::AnimationMaterial:
Collaboration graph
[legend]

Public Types

enum  LoopMode { SWING, LOOP, NO_LOOPING }
 
typedef std::map< double,
osg::ref_ptr< osg::Material > > 
TimeControlPointMap
 
- Public Types inherited from osg::Object
enum  DataVariance { DYNAMIC, STATIC, UNSPECIFIED }
 

Public Member Functions

 AnimationMaterial ()
 
 AnimationMaterial (const AnimationMaterial &ap, const osg::CopyOp &copyop=osg::CopyOp::SHALLOW_COPY)
 
 META_Object (osg, AnimationMaterial)
 
bool getMaterial (double time, osg::Material &material) const
 
void insert (double time, osg::Material *material)
 
double getFirstTime () const
 
double getLastTime () const
 
double getPeriod () const
 
void setLoopMode (LoopMode lm)
 
LoopMode getLoopMode () const
 
TimeControlPointMapgetTimeControlPointMap ()
 
const TimeControlPointMapgetTimeControlPointMap () const
 
void read (std::istream &in)
 
void write (std::ostream &out) const
 
bool requiresBlending () const
 
- Public Member Functions inherited from osg::Object
 Object ()
 
 Object (bool threadSafeRefUnref)
 
 Object (const Object &, const CopyOp &copyop=CopyOp::SHALLOW_COPY)
 
virtual ObjectcloneType () const =0
 
virtual Objectclone (const CopyOp &) const =0
 
virtual bool isSameKindAs (const Object *) const
 
virtual const char * libraryName () const =0
 
virtual const char * className () const =0
 
std::string getCompoundClassName () const
 
virtual NodeasNode ()
 
virtual const NodeasNode () const
 
virtual NodeVisitorasNodeVisitor ()
 
virtual const NodeVisitorasNodeVisitor () const
 
virtual StateAttributeasStateAttribute ()
 
virtual const StateAttributeasStateAttribute () const
 
virtual UniformasUniform ()
 
virtual const UniformasUniform () const
 
virtual void setThreadSafeRefUnref (bool threadSafe)
 
virtual void setName (const std::string &name)
 
void setName (const char *name)
 
const std::string & getName () const
 
void setDataVariance (DataVariance dv)
 
DataVariance getDataVariance () const
 
virtual void computeDataVariance ()
 
void setUserDataContainer (osg::UserDataContainer *udc)
 
osg::UserDataContainergetUserDataContainer ()
 
const osg::UserDataContainergetUserDataContainer () const
 
osg::UserDataContainergetOrCreateUserDataContainer ()
 
virtual void setUserData (Referenced *obj)
 
virtual ReferencedgetUserData ()
 
virtual const ReferencedgetUserData () const
 
template<typename T >
bool getUserValue (const std::string &name, T &value) const
 
template<typename T >
void setUserValue (const std::string &name, const T &value)
 
virtual void resizeGLObjectBuffers (unsigned int)
 
virtual void releaseGLObjects (osg::State *=0) const
 
template<typename T >
BoolValueObject
UCharValueObject
UShortValueObject
UIntValueObject
DoubleValueObject
Vec3fValueObject
Vec2dValueObject
Vec4dValueObject
PlaneValueObject
MatrixdValueObject
BoundingBoxdValueObject
BoundingSpheredValueObject
bool 
getUserValue (const std::string &name, T &value) const
 
- Public Member Functions inherited from osg::Referenced
 Referenced ()
 
 Referenced (bool threadSafeRefUnref)
 
 Referenced (const Referenced &)
 
Referencedoperator= (const Referenced &)
 
bool getThreadSafeRefUnref () const
 
OpenThreads::MutexgetRefMutex () const
 
int ref () const
 
int unref () const
 
int unref_nodelete () const
 
int referenceCount () const
 
ObserverSetgetObserverSet () const
 
ObserverSetgetOrCreateObserverSet () const
 
void addObserver (Observer *observer) const
 
void removeObserver (Observer *observer) const
 

Protected Member Functions

virtual ~AnimationMaterial ()
 
void interpolate (osg::Material &material, float r, const osg::Material &lhs, const osg::Material &rhs) const
 
- Protected Member Functions inherited from osg::Object
virtual ~Object ()
 
- Protected Member Functions inherited from osg::Referenced
virtual ~Referenced ()
 
void signalObserversAndDelete (bool signalDelete, bool doDelete) const
 
void deleteUsingDeleteHandler () const
 

Protected Attributes

TimeControlPointMap _timeControlPointMap
 
LoopMode _loopMode
 
- Protected Attributes inherited from osg::Object
std::string _name
 
DataVariance _dataVariance
 
osg::UserDataContainer_userDataContainer
 
- Protected Attributes inherited from osg::Referenced
OpenThreads::AtomicPtr _observerSet
 
OpenThreads::Atomic _refCount
 

Additional Inherited Members

- Static Public Member Functions inherited from osg::Referenced
static OpenThreads::MutexgetGlobalReferencedMutex ()
 
static void setThreadSafeReferenceCounting (bool enableThreadSafeReferenceCounting)
 
static bool getThreadSafeReferenceCounting ()
 
static void setDeleteHandler (DeleteHandler *handler)
 
static DeleteHandlergetDeleteHandler ()
 

Detailed Description

AnimationMaterial for specify the time varying transformation pathway to use when update camera and model objects. Subclassed from Transform::ComputeTransformCallback allows AnimationMaterial to be attached directly to Transform nodes to move subgraphs around the scene.

Definition at line 31 of file AnimationMaterial.h.

Member Typedef Documentation

Definition at line 66 of file AnimationMaterial.h.

Member Enumeration Documentation

Enumerator
SWING 
LOOP 
NO_LOOPING 

Definition at line 54 of file AnimationMaterial.h.

Constructor & Destructor Documentation

osgPresentation::AnimationMaterial::AnimationMaterial ( )
inline

Definition at line 35 of file AnimationMaterial.h.

osgPresentation::AnimationMaterial::AnimationMaterial ( const AnimationMaterial ap,
const osg::CopyOp copyop = osg::CopyOp::SHALLOW_COPY 
)
inline

Definition at line 37 of file AnimationMaterial.h.

virtual osgPresentation::AnimationMaterial::~AnimationMaterial ( )
inlineprotectedvirtual

Definition at line 82 of file AnimationMaterial.h.

Member Function Documentation

double osgPresentation::AnimationMaterial::getFirstTime ( ) const
inline

Definition at line 50 of file AnimationMaterial.h.

double osgPresentation::AnimationMaterial::getLastTime ( ) const
inline

Definition at line 51 of file AnimationMaterial.h.

LoopMode osgPresentation::AnimationMaterial::getLoopMode ( ) const
inline

Definition at line 63 of file AnimationMaterial.h.

bool osgPresentation::AnimationMaterial::getMaterial ( double  time,
osg::Material material 
) const

get the transformation matrix for a point in time.

double osgPresentation::AnimationMaterial::getPeriod ( ) const
inline

Definition at line 52 of file AnimationMaterial.h.

TimeControlPointMap& osgPresentation::AnimationMaterial::getTimeControlPointMap ( )
inline

Definition at line 68 of file AnimationMaterial.h.

const TimeControlPointMap& osgPresentation::AnimationMaterial::getTimeControlPointMap ( ) const
inline

Definition at line 70 of file AnimationMaterial.h.

void osgPresentation::AnimationMaterial::insert ( double  time,
osg::Material material 
)
void osgPresentation::AnimationMaterial::interpolate ( osg::Material material,
float  r,
const osg::Material lhs,
const osg::Material rhs 
) const
protected
osgPresentation::AnimationMaterial::META_Object ( osg  ,
AnimationMaterial   
)
void osgPresentation::AnimationMaterial::read ( std::istream &  in)

read the anumation path from a flat ascii file stream.

bool osgPresentation::AnimationMaterial::requiresBlending ( ) const
void osgPresentation::AnimationMaterial::setLoopMode ( LoopMode  lm)
inline

Definition at line 61 of file AnimationMaterial.h.

void osgPresentation::AnimationMaterial::write ( std::ostream &  out) const

write the anumation path to a flat ascii file stream.

Member Data Documentation

LoopMode osgPresentation::AnimationMaterial::_loopMode
protected

Definition at line 87 of file AnimationMaterial.h.

TimeControlPointMap osgPresentation::AnimationMaterial::_timeControlPointMap
protected

Definition at line 86 of file AnimationMaterial.h.


The documentation for this class was generated from the following file: