OGRE  1.8
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Ogre::Pose Class Reference

A pose is a linked set of vertex offsets applying to one set of vertex data. More...

#include <OgrePose.h>

+ Inheritance diagram for Ogre::Pose:
+ Collaboration diagram for Ogre::Pose:

Public Types

typedef ConstMapIterator
< NormalsMap
ConstNormalsIterator
 An iterator over the vertex offsets. More...
 
typedef ConstMapIterator
< VertexOffsetMap
ConstVertexOffsetIterator
 An iterator over the vertex offsets. More...
 
typedef MapIterator< NormalsMapNormalsIterator
 An iterator over the vertex offsets. More...
 
typedef map< size_t, Vector3 >
::type 
NormalsMap
 A collection of normals based on the vertex index. More...
 
typedef MapIterator
< VertexOffsetMap
VertexOffsetIterator
 An iterator over the vertex offsets. More...
 
typedef map< size_t, Vector3 >
::type 
VertexOffsetMap
 A collection of vertex offsets based on the vertex index. More...
 

Public Member Functions

 Pose (ushort target, const String &name=StringUtil::BLANK)
 Constructor. More...
 
virtual ~Pose ()
 
const
HardwareVertexBufferSharedPtr
_getHardwareVertexBuffer (const VertexData *origData) const
 Get a hardware vertex buffer version of the vertex offsets. More...
 
void addVertex (size_t index, const Vector3 &offset)
 Adds an offset to a vertex for this pose. More...
 
void addVertex (size_t index, const Vector3 &offset, const Vector3 &normal)
 Adds an offset to a vertex and a new normal for this pose. More...
 
void clearVertices (void)
 Clear all vertices. More...
 
Poseclone (void) const
 Clone this pose and create another one configured exactly the same way (only really useful for cloning holders of this class). More...
 
bool getIncludesNormals () const
 Return whether the pose vertices include normals. More...
 
const StringgetName (void) const
 Return the name of the pose (may be blank) More...
 
const NormalsMapgetNormals (void) const
 Gets a const reference to the vertex offsets. More...
 
ConstNormalsIterator getNormalsIterator (void) const
 Gets an iterator over all the vertex offsets. More...
 
NormalsIterator getNormalsIterator (void)
 Gets an iterator over all the vertex offsets. More...
 
ushort getTarget (void) const
 Return the target geometry index of the pose. More...
 
ConstVertexOffsetIterator getVertexOffsetIterator (void) const
 Gets an iterator over all the vertex offsets. More...
 
VertexOffsetIterator getVertexOffsetIterator (void)
 Gets an iterator over all the vertex offsets. More...
 
const VertexOffsetMapgetVertexOffsets (void) const
 Gets a const reference to the vertex offsets. More...
 
void operator delete (void *ptr)
 
void operator delete (void *ptr, void *)
 
void operator delete (void *ptr, const char *, int, const char *)
 
void operator delete[] (void *ptr)
 
void operator delete[] (void *ptr, const char *, int, const char *)
 
void * operator new (size_t sz, const char *file, int line, const char *func)
 operator new, with debug line info More...
 
void * operator new (size_t sz)
 
void * operator new (size_t sz, void *ptr)
 placement operator new More...
 
void * operator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info More...
 
void * operator new[] (size_t sz)
 
void removeVertex (size_t index)
 Remove a vertex offset. More...
 

Protected Attributes

HardwareVertexBufferSharedPtr mBuffer
 Derived hardware buffer, covers all vertices. More...
 
String mName
 Optional name. More...
 
NormalsMap mNormalsMap
 Primary storage, sparse vertex use. More...
 
ushort mTarget
 Target geometry index. More...
 
VertexOffsetMap mVertexOffsetMap
 Primary storage, sparse vertex use. More...
 

Detailed Description

A pose is a linked set of vertex offsets applying to one set of vertex data.

Remarks
The target index referred to by the pose has a meaning set by the user of this class; but for example when used by Mesh it refers to either the Mesh shared geometry (0) or a SubMesh dedicated geometry (1+). Pose instances can be referred to by keyframes in VertexAnimationTrack in order to animate based on blending poses together.

Definition at line 55 of file OgrePose.h.

Member Typedef Documentation

An iterator over the vertex offsets.

Definition at line 80 of file OgrePose.h.

An iterator over the vertex offsets.

Definition at line 74 of file OgrePose.h.

An iterator over the vertex offsets.

Definition at line 78 of file OgrePose.h.

typedef map<size_t, Vector3>::type Ogre::Pose::NormalsMap

A collection of normals based on the vertex index.

Definition at line 76 of file OgrePose.h.

An iterator over the vertex offsets.

Definition at line 72 of file OgrePose.h.

typedef map<size_t, Vector3>::type Ogre::Pose::VertexOffsetMap

A collection of vertex offsets based on the vertex index.

Definition at line 70 of file OgrePose.h.

Constructor & Destructor Documentation

Ogre::Pose::Pose ( ushort  target,
const String name = StringUtil::BLANK 
)

Constructor.

Parameters
targetThe target vertexdata index (0 for shared, 1+ for dedicated at the submesh index + 1)
nameOptional name
virtual Ogre::Pose::~Pose ( )
virtual

Member Function Documentation

const HardwareVertexBufferSharedPtr& Ogre::Pose::_getHardwareVertexBuffer ( const VertexData origData) const

Get a hardware vertex buffer version of the vertex offsets.

void Ogre::Pose::addVertex ( size_t  index,
const Vector3 offset 
)

Adds an offset to a vertex for this pose.

Parameters
indexThe vertex index
offsetThe position offset for this pose
void Ogre::Pose::addVertex ( size_t  index,
const Vector3 offset,
const Vector3 normal 
)

Adds an offset to a vertex and a new normal for this pose.

Parameters
indexThe vertex index
offsetThe position offset for this pose
void Ogre::Pose::clearVertices ( void  )

Clear all vertices.

Pose* Ogre::Pose::clone ( void  ) const

Clone this pose and create another one configured exactly the same way (only really useful for cloning holders of this class).

bool Ogre::Pose::getIncludesNormals ( ) const
inline

Return whether the pose vertices include normals.

Definition at line 82 of file OgrePose.h.

const String& Ogre::Pose::getName ( void  ) const
inline

Return the name of the pose (may be blank)

Definition at line 66 of file OgrePose.h.

const NormalsMap& Ogre::Pose::getNormals ( void  ) const
inline

Gets a const reference to the vertex offsets.

Definition at line 114 of file OgrePose.h.

ConstNormalsIterator Ogre::Pose::getNormalsIterator ( void  ) const

Gets an iterator over all the vertex offsets.

NormalsIterator Ogre::Pose::getNormalsIterator ( void  )

Gets an iterator over all the vertex offsets.

ushort Ogre::Pose::getTarget ( void  ) const
inline

Return the target geometry index of the pose.

Definition at line 68 of file OgrePose.h.

ConstVertexOffsetIterator Ogre::Pose::getVertexOffsetIterator ( void  ) const

Gets an iterator over all the vertex offsets.

VertexOffsetIterator Ogre::Pose::getVertexOffsetIterator ( void  )

Gets an iterator over all the vertex offsets.

const VertexOffsetMap& Ogre::Pose::getVertexOffsets ( void  ) const
inline

Gets a const reference to the vertex offsets.

Definition at line 107 of file OgrePose.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr)
inlineinherited

Definition at line 95 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
void *   
)
inlineinherited

Definition at line 101 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
const char *  ,
int  ,
const char *   
)
inlineinherited

Definition at line 107 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr)
inlineinherited

Definition at line 112 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr,
const char *  ,
int  ,
const char *   
)
inlineinherited

Definition at line 118 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
const char *  file,
int  line,
const char *  func 
)
inlineinherited

operator new, with debug line info

Definition at line 67 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz)
inlineinherited

Definition at line 72 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
void *  ptr 
)
inlineinherited

placement operator new

Definition at line 78 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz,
const char *  file,
int  line,
const char *  func 
)
inlineinherited

array operator new, with debug line info

Definition at line 85 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz)
inlineinherited

Definition at line 90 of file OgreMemoryAllocatedObject.h.

void Ogre::Pose::removeVertex ( size_t  index)

Remove a vertex offset.

Member Data Documentation

HardwareVertexBufferSharedPtr Ogre::Pose::mBuffer
mutableprotected

Derived hardware buffer, covers all vertices.

Definition at line 133 of file OgrePose.h.

String Ogre::Pose::mName
protected

Optional name.

Definition at line 127 of file OgrePose.h.

NormalsMap Ogre::Pose::mNormalsMap
protected

Primary storage, sparse vertex use.

Definition at line 131 of file OgrePose.h.

ushort Ogre::Pose::mTarget
protected

Target geometry index.

Definition at line 125 of file OgrePose.h.

VertexOffsetMap Ogre::Pose::mVertexOffsetMap
protected

Primary storage, sparse vertex use.

Definition at line 129 of file OgrePose.h.


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