Specialisation of PageStrategyData for Grid2DPageStrategy. More...
#include <OgreGrid2DPageStrategy.h>
Public Member Functions | |
Grid2DPageStrategyData () | |
~Grid2DPageStrategyData () | |
virtual void | setMode (Grid2DMode mode) |
Set the grid alignment mode. | |
virtual Grid2DMode | getMode () const |
Set the grid alignment mode. | |
virtual void | setOrigin (const Vector3 &worldOrigin) |
Set the origin of the grid in world space. | |
virtual const Vector3 & | getOrigin (const Vector3 &worldOrigin) |
Get the origin of the grid in world space. | |
virtual void | setCellSize (Real sz) |
Set the size of the cells in the grid. | |
virtual Real | getCellSize () const |
Get the size of the cells in the grid. | |
virtual void | setLoadRadius (Real sz) |
Set the loading radius. | |
virtual Real | getLoadRadius () const |
Get the loading radius. | |
virtual void | setHoldRadius (Real sz) |
Set the Holding radius. | |
virtual Real | getHoldRadius () const |
Get the Holding radius. | |
virtual Real | getLoadRadiusInCells () |
Get the load radius as a multiple of cells. | |
virtual Real | getHoldRadiusInCells () |
Get the Hold radius as a multiple of cells. | |
virtual void | setCellRange (int32 minX, int32 minY, int32 maxX, int32 maxY) |
Set the index range of all cells (values outside this will be ignored). | |
virtual void | setCellRangeMinX (int32 minX) |
Set the index range of all cells (values outside this will be ignored). | |
virtual void | setCellRangeMinY (int32 minY) |
Set the index range of all cells (values outside this will be ignored). | |
virtual void | setCellRangeMaxX (int32 maxX) |
Set the index range of all cells (values outside this will be ignored). | |
virtual void | setCellRangeMaxY (int32 maxY) |
Set the index range of all cells (values outside this will be ignored). | |
virtual int32 | getCellRangeMinX () const |
get the index range of all cells (values outside this will be ignored) | |
virtual int32 | getCellRangeMinY () const |
get the index range of all cells (values outside this will be ignored) | |
virtual int32 | getCellRangeMaxX () const |
get the index range of all cells (values outside this will be ignored) | |
virtual int32 | getCellRangeMaxY () const |
get the index range of all cells (values outside this will be ignored) | |
bool | load (StreamSerialiser &stream) |
Load this data from a stream (returns true if successful). | |
void | save (StreamSerialiser &stream) |
Save this data to a stream. | |
virtual void | convertWorldToGridSpace (const Vector3 &world, Vector2 &grid) |
Convert a world point to grid space (not relative to origin). | |
virtual void | convertGridToWorldSpace (const Vector2 &grid, Vector3 &world) |
Convert a grid point to world space - note only 2 axes populated. | |
virtual void | getMidPointGridSpace (int32 x, int32 y, Vector2 &mid) |
Get the (grid space) mid point of a cell. | |
virtual void | getBottomLeftGridSpace (int32 x, int32 y, Vector2 &bl) |
Get the (grid space) bottom-left of a cell. | |
virtual void | getCornersGridSpace (int32 x, int32 y, Vector2 *pFourPoints) |
Get the (grid space) corners of a cell. | |
void | determineGridLocation (const Vector2 &gridpos, int32 *x, int32 *y) |
Convert a grid position into a row and column index. | |
PageID | calculatePageID (int32 x, int32 y) |
void | calculateCell (PageID inPageID, int32 *x, int32 *y) |
void * | operator new (size_t sz, const char *file, int line, const char *func) |
operator new, with debug line info | |
void * | operator new (size_t sz) |
void * | operator new (size_t sz, void *ptr) |
placement operator new | |
void * | operator new[] (size_t sz, const char *file, int line, const char *func) |
array operator new, with debug line info | |
void * | operator new[] (size_t sz) |
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 *) |
Static Public Attributes | |
static const uint32 | CHUNK_ID |
static const uint16 | CHUNK_VERSION |
Protected Member Functions | |
void | updateDerivedMetrics () |
Protected Attributes | |
Grid2DMode | mMode |
Orientation of the grid. | |
Vector3 | mWorldOrigin |
Origin (world space). | |
Vector2 | mOrigin |
Origin (grid-aligned world space). | |
Real | mCellSize |
Grid cell (page) size. | |
Real | mLoadRadius |
Load radius. | |
Real | mHoldRadius |
Hold radius. | |
Real | mLoadRadiusInCells |
Real | mHoldRadiusInCells |
int32 | mMinCellX |
int32 | mMinCellY |
int32 | mMaxCellX |
int32 | mMaxCellY |
Specialisation of PageStrategyData for Grid2DPageStrategy.
Name | Type | Description |
Grid orientation | uint8 | The orientation of the grid; XZ = 0, XY = 1, YZ = 2 |
Grid origin | Vector3 | World origin of the grid. |
Grid cell size | Real | The size of each cell (page) in the grid |
Grid cell range (minx, maxx, miny, maxy) | int16 * 4 | The extents of the world in cell indexes |
Load radius | Real | The outer radius at which new pages should start loading |
Hold radius | Real | The radius at which existing pages should be held if already loaded but not actively loaded (should be larger than Load radius) |
Definition at line 115 of file OgreGrid2DPageStrategy.h.
Ogre::Grid2DPageStrategyData::Grid2DPageStrategyData | ( | ) |
Ogre::Grid2DPageStrategyData::~Grid2DPageStrategyData | ( | ) |
virtual void Ogre::Grid2DPageStrategyData::convertGridToWorldSpace | ( | const Vector2 & | grid, | |
Vector3 & | world | |||
) | [virtual] |
Convert a grid point to world space - note only 2 axes populated.
virtual void Ogre::Grid2DPageStrategyData::convertWorldToGridSpace | ( | const Vector3 & | world, | |
Vector2 & | grid | |||
) | [virtual] |
Convert a world point to grid space (not relative to origin).
void Ogre::Grid2DPageStrategyData::determineGridLocation | ( | const Vector2 & | gridpos, | |
int32 * | x, | |||
int32 * | y | |||
) |
Convert a grid position into a row and column index.
virtual void Ogre::Grid2DPageStrategyData::getBottomLeftGridSpace | ( | int32 | x, | |
int32 | y, | |||
Vector2 & | bl | |||
) | [virtual] |
Get the (grid space) bottom-left of a cell.
virtual int32 Ogre::Grid2DPageStrategyData::getCellRangeMaxX | ( | ) | const [virtual] |
get the index range of all cells (values outside this will be ignored)
Definition at line 188 of file OgreGrid2DPageStrategy.h.
virtual int32 Ogre::Grid2DPageStrategyData::getCellRangeMaxY | ( | ) | const [virtual] |
get the index range of all cells (values outside this will be ignored)
Definition at line 190 of file OgreGrid2DPageStrategy.h.
virtual int32 Ogre::Grid2DPageStrategyData::getCellRangeMinX | ( | ) | const [virtual] |
get the index range of all cells (values outside this will be ignored)
Definition at line 184 of file OgreGrid2DPageStrategy.h.
virtual int32 Ogre::Grid2DPageStrategyData::getCellRangeMinY | ( | ) | const [virtual] |
get the index range of all cells (values outside this will be ignored)
Definition at line 186 of file OgreGrid2DPageStrategy.h.
virtual Real Ogre::Grid2DPageStrategyData::getCellSize | ( | ) | const [virtual] |
Get the size of the cells in the grid.
Definition at line 159 of file OgreGrid2DPageStrategy.h.
virtual void Ogre::Grid2DPageStrategyData::getCornersGridSpace | ( | int32 | x, | |
int32 | y, | |||
Vector2 * | pFourPoints | |||
) | [virtual] |
Get the (grid space) corners of a cell.
virtual Real Ogre::Grid2DPageStrategyData::getHoldRadius | ( | ) | const [virtual] |
Get the Holding radius.
Definition at line 167 of file OgreGrid2DPageStrategy.h.
virtual Real Ogre::Grid2DPageStrategyData::getHoldRadiusInCells | ( | ) | [virtual] |
Get the Hold radius as a multiple of cells.
Definition at line 171 of file OgreGrid2DPageStrategy.h.
virtual Real Ogre::Grid2DPageStrategyData::getLoadRadius | ( | ) | const [virtual] |
Get the loading radius.
Definition at line 163 of file OgreGrid2DPageStrategy.h.
virtual Real Ogre::Grid2DPageStrategyData::getLoadRadiusInCells | ( | ) | [virtual] |
Get the load radius as a multiple of cells.
Definition at line 169 of file OgreGrid2DPageStrategy.h.
virtual void Ogre::Grid2DPageStrategyData::getMidPointGridSpace | ( | int32 | x, | |
int32 | y, | |||
Vector2 & | mid | |||
) | [virtual] |
Get the (grid space) mid point of a cell.
virtual Grid2DMode Ogre::Grid2DPageStrategyData::getMode | ( | ) | const [virtual] |
Set the grid alignment mode.
Definition at line 150 of file OgreGrid2DPageStrategy.h.
virtual const Vector3& Ogre::Grid2DPageStrategyData::getOrigin | ( | const Vector3 & | worldOrigin | ) | [virtual] |
Get the origin of the grid in world space.
Definition at line 155 of file OgreGrid2DPageStrategy.h.
bool Ogre::Grid2DPageStrategyData::load | ( | StreamSerialiser & | stream | ) | [virtual] |
Load this data from a stream (returns true if successful).
Implements Ogre::PageStrategyData.
void Ogre::AllocatedObject< Alloc >::operator delete | ( | void * | ptr, | |
const char * | , | |||
int | , | |||
const char * | ||||
) | [inherited] |
Definition at line 107 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete | ( | void * | ptr, | |
void * | ||||
) | [inherited] |
Definition at line 101 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete | ( | void * | ptr | ) | [inherited] |
Definition at line 95 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete[] | ( | void * | ptr, | |
const char * | , | |||
int | , | |||
const char * | ||||
) | [inherited] |
Definition at line 118 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete[] | ( | void * | ptr | ) | [inherited] |
Definition at line 112 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new | ( | size_t | sz, | |
void * | ptr | |||
) | [inherited] |
placement operator new
Definition at line 78 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new | ( | size_t | sz | ) | [inherited] |
Definition at line 72 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new | ( | size_t | sz, | |
const char * | file, | |||
int | line, | |||
const char * | func | |||
) | [inherited] |
operator new, with debug line info
Definition at line 67 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new[] | ( | size_t | sz | ) | [inherited] |
Definition at line 90 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new[] | ( | size_t | sz, | |
const char * | file, | |||
int | line, | |||
const char * | func | |||
) | [inherited] |
array operator new, with debug line info
Definition at line 85 of file OgreMemoryAllocatedObject.h.
void Ogre::Grid2DPageStrategyData::save | ( | StreamSerialiser & | stream | ) | [virtual] |
Save this data to a stream.
Implements Ogre::PageStrategyData.
virtual void Ogre::Grid2DPageStrategyData::setCellRange | ( | int32 | minX, | |
int32 | minY, | |||
int32 | maxX, | |||
int32 | maxY | |||
) | [virtual] |
Set the index range of all cells (values outside this will be ignored).
virtual void Ogre::Grid2DPageStrategyData::setCellRangeMaxX | ( | int32 | maxX | ) | [virtual] |
Set the index range of all cells (values outside this will be ignored).
virtual void Ogre::Grid2DPageStrategyData::setCellRangeMaxY | ( | int32 | maxY | ) | [virtual] |
Set the index range of all cells (values outside this will be ignored).
virtual void Ogre::Grid2DPageStrategyData::setCellRangeMinX | ( | int32 | minX | ) | [virtual] |
Set the index range of all cells (values outside this will be ignored).
virtual void Ogre::Grid2DPageStrategyData::setCellRangeMinY | ( | int32 | minY | ) | [virtual] |
Set the index range of all cells (values outside this will be ignored).
virtual void Ogre::Grid2DPageStrategyData::setCellSize | ( | Real | sz | ) | [virtual] |
Set the size of the cells in the grid.
virtual void Ogre::Grid2DPageStrategyData::setHoldRadius | ( | Real | sz | ) | [virtual] |
Set the Holding radius.
virtual void Ogre::Grid2DPageStrategyData::setLoadRadius | ( | Real | sz | ) | [virtual] |
Set the loading radius.
virtual void Ogre::Grid2DPageStrategyData::setMode | ( | Grid2DMode | mode | ) | [virtual] |
Set the grid alignment mode.
virtual void Ogre::Grid2DPageStrategyData::setOrigin | ( | const Vector3 & | worldOrigin | ) | [virtual] |
Set the origin of the grid in world space.
void Ogre::Grid2DPageStrategyData::updateDerivedMetrics | ( | ) | [protected] |
const uint32 Ogre::Grid2DPageStrategyData::CHUNK_ID [static] |
Definition at line 140 of file OgreGrid2DPageStrategy.h.
const uint16 Ogre::Grid2DPageStrategyData::CHUNK_VERSION [static] |
Definition at line 141 of file OgreGrid2DPageStrategy.h.
Real Ogre::Grid2DPageStrategyData::mCellSize [protected] |
Grid cell (page) size.
Definition at line 125 of file OgreGrid2DPageStrategy.h.
Real Ogre::Grid2DPageStrategyData::mHoldRadius [protected] |
Hold radius.
Definition at line 129 of file OgreGrid2DPageStrategy.h.
Real Ogre::Grid2DPageStrategyData::mHoldRadiusInCells [protected] |
Definition at line 131 of file OgreGrid2DPageStrategy.h.
Real Ogre::Grid2DPageStrategyData::mLoadRadius [protected] |
Load radius.
Definition at line 127 of file OgreGrid2DPageStrategy.h.
Real Ogre::Grid2DPageStrategyData::mLoadRadiusInCells [protected] |
Definition at line 130 of file OgreGrid2DPageStrategy.h.
int32 Ogre::Grid2DPageStrategyData::mMaxCellX [protected] |
Definition at line 134 of file OgreGrid2DPageStrategy.h.
int32 Ogre::Grid2DPageStrategyData::mMaxCellY [protected] |
Definition at line 135 of file OgreGrid2DPageStrategy.h.
int32 Ogre::Grid2DPageStrategyData::mMinCellX [protected] |
Definition at line 132 of file OgreGrid2DPageStrategy.h.
int32 Ogre::Grid2DPageStrategyData::mMinCellY [protected] |
Definition at line 133 of file OgreGrid2DPageStrategy.h.
Grid2DMode Ogre::Grid2DPageStrategyData::mMode [protected] |
Orientation of the grid.
Definition at line 119 of file OgreGrid2DPageStrategy.h.
Vector2 Ogre::Grid2DPageStrategyData::mOrigin [protected] |
Origin (grid-aligned world space).
Definition at line 123 of file OgreGrid2DPageStrategy.h.
Vector3 Ogre::Grid2DPageStrategyData::mWorldOrigin [protected] |
Origin (world space).
Definition at line 121 of file OgreGrid2DPageStrategy.h.
Copyright © 2012 Torus Knot Software Ltd
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Last modified Fri May 25 23:41:41 2012