Implementation to create the Transform variables needed by Bones.
More...
#include <OgreBoneArrayMemoryManager.h>
|
enum | MemoryTypes {
Owner = 0
, Position
, Orientation
, Scale
,
ParentMat
, ParentNode
, WorldMat
, FinalMat
,
InheritOrientation
, InheritScale
, NumMemoryTypes
} |
|
typedef std::vector< ptrdiff_t > | PtrdiffVec |
|
Implementation to create the Transform variables needed by Bones.
- Author
- Matias N. Goldberg
- Version
- 1.0
◆ PtrdiffVec
◆ MemoryTypes
Enumerator |
---|
Owner | |
Position | |
Orientation | |
Scale | |
ParentMat | |
ParentNode | |
WorldMat | |
FinalMat | |
InheritOrientation | |
InheritScale | |
NumMemoryTypes | |
◆ BoneArrayMemoryManager()
Constructor.
@See intialize. @See destroy.
- Parameters
-
elementsMemSize | Array containing the size in bytes of each element type (i.e. NodeElementsMemSize) |
initRoutines | Array containing the cleanup function that will be called when default initializing memory. Unlike cleanupRoutines, just leave the function pointer null if all you want is just to initialize to 0. |
cleanupRoutines | Array containing the cleanup function that will be called when performing cleanups. Many pointers can use the flatCleaner and is the fastest. However Array variables (i.e. ArrayVector3) have a layout where flatCleaner won't work correctly because the data is interleaved (rather than flat). |
numElementsSize | Number of entries in elementsMemSize |
depthLevel | Value only used to pass to the listener. Identifies to which hierarchy depth level this memory manager belongs to. |
hintMaxNodes | Hint on how many SceneNodes we'll be creating. |
cleanupThreshold | The threshold at which a cleanup is triggered after too many nodes have been destroyed in a non-LIFO order or without being created again. -1 to disable cleanups. |
maxHardLimit | Maximum amount of SceneNodes. The manager is not allowed to grow and consume more memory past that limit. MAX_MEMORY_SLOTS for no limit. This is useful when target architecture has much less memory than the dev machine. |
- Note that if hintMaxNodes < maxHardLimit, the manager may be forced to do temporary allocations (to do the reallocs) thus during a brief perdiod of time it may consume more memory than the established hard limit (up to 2x).
- Parameters
-
rebaseListener | The listener to be called when cleaning up or growing the memory pool. If null, cleanupThreshold is set to -1 & maxHardLimit will be set to hintMaxNodes |
◆ createNewNode()
Requests memory for a new Bone (for the Array vectors & matrices) May be also be used for a new Entity, etc.
- Parameters
-
outTransform | Out: The transform with filled memory pointers |
◆ destroy()
void Ogre::ArrayMemoryManager::destroy |
( |
| ) |
|
|
inherited |
Destroys the memory ptrs.
@See initialize
◆ destroyNode()
Releases memory acquired through.
- See also
- createNewNode
- Parameters
-
inOutTransform | Out: Transform to destroy. Pointers are nullified |
◆ getAllMemory()
size_t Ogre::ArrayMemoryManager::getAllMemory |
( |
| ) |
const |
|
inherited |
Gets all memory reserved for this manager.
◆ getFirstNode()
Retrieves a BoneTransform pointing to the first Bone.
- Parameters
-
outTransform | [out] Transform with filled pointers to the first Node in this depth |
- Returns
- Number of Nodes in this depth level
◆ getFreeMemory()
size_t Ogre::ArrayMemoryManager::getFreeMemory |
( |
| ) |
const |
|
inherited |
Gets available memory in bytes.
◆ getNumUsedSlotsIncludingFragmented()
size_t Ogre::ArrayMemoryManager::getNumUsedSlotsIncludingFragmented |
( |
| ) |
const |
|
inherited |
Returns mUsedMemory.
When ARRAY_PACKED_REALS = 4, and 4 objects have been created but the 2nd one has been deleted, getNumUsedSlotsIncludingFragmented will still return 4 until the 4th object is removed or a cleanup is performed
◆ getUsedMemory()
size_t Ogre::ArrayMemoryManager::getUsedMemory |
( |
| ) |
const |
|
inherited |
Gets used memory in bytes (not including waste)
◆ getWastedMemory()
size_t Ogre::ArrayMemoryManager::getWastedMemory |
( |
| ) |
const |
|
inherited |
Gets wasted memory (perform a cleanup to fix)
◆ initialize()
void Ogre::ArrayMemoryManager::initialize |
( |
| ) |
|
|
inherited |
Initializes mMemoryPools.
Once it has been called, destroy() must be called. @See destroy
◆ BoneCleanupRoutines
◆ BoneInitRoutines
◆ ElementsMemSize
◆ MAX_MEMORY_SLOTS
const size_t Ogre::ArrayMemoryManager::MAX_MEMORY_SLOTS |
|
staticinherited |
The documentation for this class was generated from the following file: