vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
APObjectUtils::Animator Class Reference

#include <Animator.h>

Inheritance diagram for APObjectUtils::Animator:
vrecko::Ability vrecko::BaseClass

Classes

class  AnimationPoint
 

Public Types

enum  AnimationTypes { AnimSRT = 1, AnimAlpha = 2, AnimNodeMask = 4 }
 
enum  LoopType { NoLoop, Simple, BiDi }
 
enum  InterpolationType { Linear, Sine }
 
- Public Types inherited from vrecko::Ability
typedef std::vector
< ParameterStruct
ParameterVector
 Vector of the description of parameters. More...
 
- Public Types inherited from vrecko::BaseClass
enum  NotificationTypes {
  NOTIFICATION_DELETE_CLASS = 1, NOTIFICATION_EO_REGISTERING = 2, NOTIFICATION_EO_UNREGISTERING = 4, NOTIFICATION_PROGRAM_TERMINATION = 8,
  NOTIFICATION_ALL = 0xFFFFFFFF
}
 

Public Member Functions

 Animator ()
 
virtual ~Animator ()
 
virtual void preInitialize ()
 OBSOLETE METHOD, kept for backwards compatibility. More...
 
virtual bool loadXMLParameters (XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *pParametersNode)
 OBSOLETE METHOD, kept for backwards compatibility. More...
 
virtual void update ()
 This method is called periodically in case this instance is registered in Scheduler. More...
 
virtual void clean ()
 
bool removeAnimation ()
 
bool isAnimating ()
 
bool stopAnimation ()
 
bool startAnimation ()
 
bool animateToPoint (int pointIndex)
 
bool resetToPos (float fPos)
 
bool setAnimationPointsNumber (unsigned int number)
 
unsigned int getAnimationPointsNumber ()
 
bool setEnabledAnimations (unsigned long dwAnimations)
 
unsigned long getEnabledAnimations ()
 
bool setTranslation (int pointIndex, const osg::Vec3 &trans)
 
osg::Vec3 & getTranslation (int pointIndex)
 
bool setRotation (int pointIndex, const osg::Quat &rot)
 
osg::Quat & getRotation (int pointIndex)
 
bool setScale (int pointIndex, const osg::Vec3 &scale)
 
osg::Vec3 & getScale (int pointIndex)
 
bool setAlpha (int pointIndex, float alpha)
 
float getAlpha (int pointIndex)
 
bool setNodeMask (int pointIndex, osg::Node::NodeMask nodeMask)
 
osg::Node::NodeMask getNodeMask (int pointIndex)
 
bool setTimePerLoop (float timeInS)
 
float getTimePerLoop ()
 
bool setLoopType (LoopType newType)
 
LoopType getLoopType ()
 
bool setInterpolationType (InterpolationType newType)
 
InterpolationType getInterpolationType ()
 
bool setTransformationFromMatrix (int startPointIndex, int endPointIndex, const osg::Matrix &matrix)
 
bool getAnimMatrix (float fActPos, osg::Matrix &outMatrix)
 
- Public Member Functions inherited from vrecko::Ability
virtual ~Ability ()
 copy constructor More...
 
const std::string & getName () const
 Returns the ability name. More...
 
void setPluginName (const char *pName)
 Sets the plugin name. More...
 
const std::string & getPluginName (void) const
 Returns the plugin name. More...
 
const std::string & getID (void) const
 Returns ability the identification string. More...
 
void setID (const char *pID)
 (Internal usage, most people should not need to use it.) Sets the ability ID. More...
 
void setOwner (BaseClass *owner)
 (Internal usage, most people should not need to use it.) Sets ability owner. *l This method is called automatically in World::createAbility(), so one would (almost?) never want to use it directly. More...
 
BaseClassgetOwner (void)
 Returns the ability owner. More...
 
virtual ParameterVectorgetParameterVector (void)
 Return vector of the parameter description. More...
 
bool isUpdated (void)
 Set update flag. More...
 
virtual const std::string & getSenderString (void)
 Returns the identification string of sender. More...
 
- Public Member Functions inherited from vrecko::BaseClass
 BaseClass (const char *startingSenderString)
 The main constructor. More...
 
 BaseClass (BaseClass &bc)
 Copy constructor. Probably not really used. More...
 
virtual ~BaseClass ()
 Destructor. More...
 
virtual bool initialize (XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *parameters=NULL)
 Core initialization. More...
 
virtual bool initializeFromString (const char *xmlString)
 Helper method that allows to initialize ability from a XML-formatted string. More...
 
virtual
XERCES_CPP_NAMESPACE_QUALIFIER
DOMNode
saveXMLParameters (XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument *)
 Save current setting into a XML node. More...
 
bool inputPresent (const std::string &name)
 Returns true if input pin (not request inputpin ) with given name is present. More...
 
bool outputPresent (const std::string &name)
 Returns true if output pin (not request output pin) with given name is present. More...
 
void addInputPin (InputPinBase *pin)
 Adds an input pin. More...
 
void removeInputPin (InputPinBase *pin)
 Removes an input pin. More...
 
void addOutputPin (OutputPinBase *pin)
 Adds an output pin. More...
 
void removeOutputPin (OutputPinBase *pin)
 Removes and output pin. More...
 
void addRequestInputPin (RequestInputPinBase *pin)
 Adds a request input pin. More...
 
void removeRequestInputPin (RequestInputPinBase *pin)
 Removes a request input pin. More...
 
void addRequestOutputPin (RequestOutputPinBase *pin)
 Adds a request output pin. More...
 
void removeRequestOutputPin (RequestOutputPinBase *pin)
 Removes a request output pin. More...
 
bool addNotification (BaseClass *receiver, unsigned long notificationTypes)
 Registers an observer that will be notified if a specific change occurs. More...
 
bool removeNotification (BaseClass *receiver, unsigned long notificationTypes=NOTIFICATION_ALL)
 Unregisters a previously registered observer. More...
 
virtual void processEvent (const std::string &input_name, VreckoMessage *pMessage)
 Internal method for processing the events. More...
 
virtual VreckoMessageprocessRequest (const std::string &request_input_name, VreckoMessage *pMessage)
 Internal method for processing the requests. More...
 
void reportError (const std::string &error)
 Print error message. More...
 
void setPriority (long int pr)
 Sets the priority. (Possible problems - read the full description for more info) More...
 
long int getPriority (void) const
 Returns current object priority. More...
 
void setAttribute (const std::string &attr_name, int attr_value)
 Sets an attribute value. More...
 
int getAttribute (const std::string &attr_name)
 Returns attribute value. More...
 
int getAttribute (const char *attr_name)
 Returns attribute value. More...
 
void deleteAttribute (const std::string &attr_name)
 Delete an attribute. More...
 
void setSceneFile (const std::string &sceneFileName)
 Set the name of the file this component was in (and possibly will be saved to). More...
 
const std::string & getSceneFile () const
 Get the name of the file this component was in. More...
 
virtual void postInitialize (void)
 OBSOLETE METHOD, kept for backwards compatibility. More...
 
virtual bool loadXMLParameters (const char *xmlString)
 OBSOLETE METHOD, kept for backwards compatibility. More...
 
InputPinBasegetInputPin (const char *strName)
 Returns pointer to an input pin with specified name. More...
 
OutputPinBasegetOutputPin (const char *strName)
 Returns pointer to an output pin with specified name. More...
 
RequestInputPinBasegetRequestInputPin (const char *strName)
 Returns pointer to an request input pin with specified name. More...
 
RequestOutputPinBasegetRequestOutputPin (const char *strName)
 Returns pointer to an input pin with specified name. More...
 

Static Public Member Functions

static AnimatorgetAnimatorOnObject (vrecko::EnvironmentObject *object)
 
static AnimatoraddAnimatorToObject (vrecko::EnvironmentObject *object, bool bReuseOldIfPossible=true)
 

Protected Member Functions

float convertActTimeToActPos ()
 
float convertActPosToNormPos (float fActPos, int *outPoint1, int *outPoint2)
 
bool updateActTime ()
 
bool updateAnimation (float fActPos)
 
bool calcAnimMatrix (float fNormPos, int iPoint1, int iPoint2, osg::Matrix &outMatrix)
 
 DECLARE_INPUT (Trigger, MessageVoid)
 
 DECLARE_INPUT (AnimateToPoint, MessageInt)
 
 DECLARE_OUTPUT (AnimationEnded, MessageBool)
 
- Protected Member Functions inherited from vrecko::Ability
 Ability (const char *theAbilityName)
 
- Protected Member Functions inherited from vrecko::BaseClass
bool sendNotifications (unsigned long notificationType, void *notificationData)
 
virtual int processNotification (BaseClass *sender, unsigned long notificationType, void *notificationData)
 Process an incoming notification. More...
 
IOPinBasefindPinInList (const char *strName, PinList *pinList)
 Internal method to find a given pin in a given list. More...
 

Protected Attributes

EnvironmentObjectowner
 
unsigned int enabledAnimations
 
LoopType loopType
 
InterpolationType interpolationType
 
DynamicArray< AnimationPointpoints
 
osg::ref_ptr< osg::StateSet > stateSet
 
float timePerLoop
 
bool bAnimating
 
float fActTime
 
int iActDir
 
osg::Timer_t lastTimerTick
 
- Protected Attributes inherited from vrecko::Ability
BaseClasspOwner
 Pointer to the owner of this ability. (Almost?) always an EnvironmentObject class. More...
 
std::vector< std::string > parameterString
 
bool updated
 Update flag. It is used for save. More...
 
- Protected Attributes inherited from vrecko::BaseClass
AttributeMap attribute
 
MTReadWriteLock attributeLock
 
std::string senderString
 
MTLock notificationsLock
 
std::vector
< NOTIFICATION_DESCRIPTION
notifications
 
long int priority
 
const std::string * sceneFile
 
PinList inputPinsList
 
PinList outputPinsList
 
PinList requestInputPinsList
 
PinList requestOutputPinsList
 

Additional Inherited Members

- Protected Types inherited from vrecko::BaseClass
typedef std::map< std::string,
int > 
AttributeMap
 Attributes. More...
 
typedef std::vector
< osg::ref_ptr< IOPinBase > > 
PinList
 

Member Enumeration Documentation

Enumerator
AnimSRT 
AnimAlpha 
AnimNodeMask 
Enumerator
Linear 
Sine 
Enumerator
NoLoop 
Simple 
BiDi 

Constructor & Destructor Documentation

ANIMATOR_IMP_EXP APObjectUtils::Animator::Animator ( )
ANIMATOR_IMP_EXP APObjectUtils::Animator::~Animator ( )
virtual

Member Function Documentation

ANIMATOR_IMP_EXP Animator * APObjectUtils::Animator::addAnimatorToObject ( vrecko::EnvironmentObject object,
bool  bReuseOldIfPossible = true 
)
static
bool APObjectUtils::Animator::animateToPoint ( int  pointIndex)
bool APObjectUtils::Animator::calcAnimMatrix ( float  fNormPos,
int  iPoint1,
int  iPoint2,
osg::Matrix &  outMatrix 
)
protected
ANIMATOR_IMP_EXP void APObjectUtils::Animator::clean ( void  )
virtual

Reimplemented from vrecko::Ability.

float APObjectUtils::Animator::convertActPosToNormPos ( float  fActPos,
int *  outPoint1,
int *  outPoint2 
)
protected
ANIMATOR_IMP_EXP float APObjectUtils::Animator::convertActTimeToActPos ( )
protected
APObjectUtils::Animator::DECLARE_INPUT ( Trigger  ,
MessageVoid   
)
protected
APObjectUtils::Animator::DECLARE_INPUT ( AnimateToPoint  ,
MessageInt   
)
protected
APObjectUtils::Animator::DECLARE_OUTPUT ( AnimationEnded  ,
MessageBool   
)
protected
ANIMATOR_IMP_EXP float APObjectUtils::Animator::getAlpha ( int  pointIndex)
unsigned int APObjectUtils::Animator::getAnimationPointsNumber ( )
inline
ANIMATOR_IMP_EXP Animator * APObjectUtils::Animator::getAnimatorOnObject ( vrecko::EnvironmentObject object)
static
bool APObjectUtils::Animator::getAnimMatrix ( float  fActPos,
osg::Matrix &  outMatrix 
)
unsigned long APObjectUtils::Animator::getEnabledAnimations ( )
inline
InterpolationType APObjectUtils::Animator::getInterpolationType ( )
inline
LoopType APObjectUtils::Animator::getLoopType ( )
inline
ANIMATOR_IMP_EXP osg::Node::NodeMask APObjectUtils::Animator::getNodeMask ( int  pointIndex)
ANIMATOR_IMP_EXP osg::Quat & APObjectUtils::Animator::getRotation ( int  pointIndex)
inline
ANIMATOR_IMP_EXP osg::Vec3 & APObjectUtils::Animator::getScale ( int  pointIndex)
float APObjectUtils::Animator::getTimePerLoop ( )
inline
ANIMATOR_IMP_EXP osg::Vec3 & APObjectUtils::Animator::getTranslation ( int  pointIndex)
bool APObjectUtils::Animator::isAnimating ( )
inline
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::loadXMLParameters ( XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *  )
virtual

OBSOLETE METHOD, kept for backwards compatibility.

The preInitialize(), loadXMLParameters() and postInitialize() methods were replaced in 2011 by a single method initialize().

Parameters
*(XERCES_CPP_NAMESPACE_QUALIFIER DOMNode)
Returns
(bool)

Reimplemented from vrecko::BaseClass.

ANIMATOR_IMP_EXP void APObjectUtils::Animator::preInitialize ( void  )
virtual

OBSOLETE METHOD, kept for backwards compatibility.

The preInitialize(), loadXMLParameters() and postInitialize() methods were replaced in 2011 by a single method initialize().

Reimplemented from vrecko::BaseClass.

bool APObjectUtils::Animator::removeAnimation ( )
bool APObjectUtils::Animator::resetToPos ( float  fPos)
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::setAlpha ( int  pointIndex,
float  alpha 
)
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::setAnimationPointsNumber ( unsigned int  number)
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::setEnabledAnimations ( unsigned long  dwAnimations)
bool APObjectUtils::Animator::setInterpolationType ( InterpolationType  newType)
inline
bool APObjectUtils::Animator::setLoopType ( LoopType  newType)
inline
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::setNodeMask ( int  pointIndex,
osg::Node::NodeMask  nodeMask 
)
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::setRotation ( int  pointIndex,
const osg::Quat &  rot 
)
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::setScale ( int  pointIndex,
const osg::Vec3 &  scale 
)
bool APObjectUtils::Animator::setTimePerLoop ( float  timeInS)
inline
bool APObjectUtils::Animator::setTransformationFromMatrix ( int  startPointIndex,
int  endPointIndex,
const osg::Matrix &  matrix 
)
ANIMATOR_IMP_EXP bool APObjectUtils::Animator::setTranslation ( int  pointIndex,
const osg::Vec3 &  trans 
)
bool APObjectUtils::Animator::startAnimation ( )
bool APObjectUtils::Animator::stopAnimation ( )
ANIMATOR_IMP_EXP void APObjectUtils::Animator::update ( void  )
virtual

This method is called periodically in case this instance is registered in Scheduler.

The method is called periodically at specified frequency or every frame. Use the Scheduler::addEntity() method to register your class and set the frequency.

Reimplemented from vrecko::BaseClass.

bool APObjectUtils::Animator::updateActTime ( )
protected
bool APObjectUtils::Animator::updateAnimation ( float  fActPos)
protected

Member Data Documentation

bool APObjectUtils::Animator::bAnimating
protected
unsigned int APObjectUtils::Animator::enabledAnimations
protected
float APObjectUtils::Animator::fActTime
protected
int APObjectUtils::Animator::iActDir
protected
InterpolationType APObjectUtils::Animator::interpolationType
protected
osg::Timer_t APObjectUtils::Animator::lastTimerTick
protected
LoopType APObjectUtils::Animator::loopType
protected
EnvironmentObject* APObjectUtils::Animator::owner
protected
DynamicArray<AnimationPoint> APObjectUtils::Animator::points
protected
osg::ref_ptr<osg::StateSet> APObjectUtils::Animator::stateSet
protected
float APObjectUtils::Animator::timePerLoop
protected

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