![]() |
OGRE
1.11.6
Object-Oriented Graphics Rendering Engine
|
A node in a quad tree used to store a patch of terrain. More...
#include <OgreTerrainQuadTreeNode.h>
Classes | |
struct | LodLevel |
Public Types | |
typedef std::vector< LodLevel * > | LodLevelList |
Public Member Functions | |
TerrainQuadTreeNode (Terrain *terrain, TerrainQuadTreeNode *parent, uint16 xoff, uint16 yoff, uint16 size, uint16 lod, uint16 depth, uint16 quadrant) | |
Constructor. More... | |
virtual | ~TerrainQuadTreeNode () |
Renderable * | _getRenderable () |
Returns the internal renderable object for this node. More... | |
void | assignVertexData (uint16 treeDepthStart, uint16 treeDepthEnd, uint16 resolution, uint sz) |
Assign vertex data to the tree, from a depth and at a given resolution. More... | |
bool | calculateCurrentLod (const Camera *cam, Real cFactor) |
Calculate appropriate LOD for this node and children. More... | |
void | finaliseDeltaValues (const Rect &rect) |
Promote the delta values calculated to the runtime ones (this must be called in the main thread). More... | |
const AxisAlignedBox & | getAABB () const |
Get the AABB (local coords) of this node. More... | |
uint16 | getBaseLod () const |
Get the base LOD level this node starts at (the highest LOD it handles) More... | |
Real | getBoundingRadius () const |
Get the bounding radius of this node. More... | |
TerrainQuadTreeNode * | getChild (unsigned short child) const |
Get child node. More... | |
int | getCurrentLod () const |
Get the current LOD index (only valid after calculateCurrentLod) More... | |
const Vector3 & | getLocalCentre () const |
Get the local centre of this node, relative to parent terrain centre. More... | |
uint16 | getLodCount () const |
Get the number of LOD levels this node can represent itself (only > 1 for leaf nodes) More... | |
const LodLevel * | getLodLevel (uint16 lod) |
Get the LodLevel information for a given lod. More... | |
float | getLodTransition () const |
Get the transition state between the current LOD and the next lower one (only valid after calculateCurrentLod) More... | |
Real | getMaxHeight () const |
Get the maximum height of the node. More... | |
Real | getMinHeight () const |
Get the minimum height of the node. More... | |
TerrainQuadTreeNode * | getParent () const |
Get parent node. More... | |
Terrain * | getTerrain () const |
Get ultimate parent terrain. More... | |
uint16 | getXOffset () const |
Get the horizontal offset into the main terrain data of this node. More... | |
uint16 | getYOffset () const |
Get the vertical offset into the main terrain data of this node. More... | |
bool | isLeaf () const |
Is this a leaf node (no children) More... | |
bool | isRenderedAtCurrentLod () const |
Returns whether this node is rendering itself at the current LOD level. More... | |
bool | isSelfOrChildRenderedAtCurrentLod () const |
Returns whether this node or its children are being rendered at the current LOD level. More... | |
void | load () |
Load node and children (perform GPU tasks, will be render thread) More... | |
void | load (uint16 depthStart, uint16 depthEnd) |
Load node and children in a depth range (perform GPU tasks, will be render thread) More... | |
void | loadSelf () |
void | mergeIntoBounds (long x, long y, const Vector3 &pos) |
Merge a point (relative to terrain node) into the local bounds, and that of children if applicable. More... | |
void | notifyDelta (uint16 x, uint16 y, uint16 lod, Real delta) |
Notify the node (and children) of a height delta value. More... | |
bool | pointIntersectsNode (long x, long y) |
Returns true if the given point is in the terrain area that this node references. More... | |
void | postDeltaCalculation (const Rect &rect) |
Notify the node (and children) that deltas have finished being calculated. More... | |
void | preDeltaCalculation (const Rect &rect) |
Notify the node (and children) that deltas are going to be calculated for a given range. More... | |
void | prepare () |
Prepare node and children (perform CPU tasks, may be background thread) More... | |
void | prepare (StreamSerialiser &stream) |
Prepare node from a stream. More... | |
bool | rectContainsNode (const Rect &rect) |
Returns true if the given rectangle completely contains the terrain area that this node references. More... | |
bool | rectIntersectsNode (const Rect &rect) |
Returns true if the given rectangle overlaps the terrain area that this node references. More... | |
void | resetBounds (const Rect &rect) |
Reset the bounds of this node and all its children for the region given. More... | |
void | save (StreamSerialiser &stream) |
Save node to a stream. More... | |
void | setCurrentLod (int lod) |
Manually set the current LOD, intended for internal use only. More... | |
void | setLodTransition (float t) |
Manually set the current LOD transition state, intended for internal use only. More... | |
void | unload () |
Unload node and children (perform GPU tasks, will be render thread) More... | |
void | unload (uint16 depthStart, uint16 depthEnd) |
Unload node and children in a depth range (perform GPU tasks, will be render thread) More... | |
void | unprepare () |
Unprepare node and children (perform CPU tasks, may be background thread) More... | |
void | updateVertexData (bool positions, bool deltas, const Rect &rect, bool cpuData) |
Tell the node to update its vertex data for a given region. More... | |
void | useAncestorVertexData (TerrainQuadTreeNode *owner, uint16 treeDepthEnd, uint16 resolution) |
Tell a node that it should use an anscestor's vertex data. More... | |
Static Public Attributes | |
static unsigned short | DELTA_BUFFER |
Buffer binding used for holding delta values. More... | |
static unsigned short | POSITION_BUFFER |
Buffer binding used for holding positions. More... | |
Friends | |
class | Movable |
class | Rend |
A node in a quad tree used to store a patch of terrain.
typedef std::vector<LodLevel*> Ogre::TerrainQuadTreeNode::LodLevelList |
Ogre::TerrainQuadTreeNode::TerrainQuadTreeNode | ( | Terrain * | terrain, |
TerrainQuadTreeNode * | parent, | ||
uint16 | xoff, | ||
uint16 | yoff, | ||
uint16 | size, | ||
uint16 | lod, | ||
uint16 | depth, | ||
uint16 | quadrant | ||
) |
Constructor.
terrain | The ultimate parent terrain |
parent | Optional parent node (in which case xoff, yoff are 0 and size must be entire terrain) |
xoff,yoff | Offsets from the start of the terrain data in 2D |
size | The size of the node in vertices at the highest LOD |
lod | The base LOD level |
depth | The depth that this node is at in the tree (or convenience) |
quadrant | The index of the quadrant (0, 1, 2, 3) |
|
virtual |
|
inline |
Get the horizontal offset into the main terrain data of this node.
|
inline |
Get the vertical offset into the main terrain data of this node.
bool Ogre::TerrainQuadTreeNode::isLeaf | ( | ) | const |
Is this a leaf node (no children)
|
inline |
Get the base LOD level this node starts at (the highest LOD it handles)
uint16 Ogre::TerrainQuadTreeNode::getLodCount | ( | ) | const |
Get the number of LOD levels this node can represent itself (only > 1 for leaf nodes)
TerrainQuadTreeNode* Ogre::TerrainQuadTreeNode::getChild | ( | unsigned short | child | ) | const |
Get child node.
TerrainQuadTreeNode* Ogre::TerrainQuadTreeNode::getParent | ( | ) | const |
Get parent node.
Terrain* Ogre::TerrainQuadTreeNode::getTerrain | ( | ) | const |
Get ultimate parent terrain.
void Ogre::TerrainQuadTreeNode::prepare | ( | ) |
Prepare node and children (perform CPU tasks, may be background thread)
void Ogre::TerrainQuadTreeNode::prepare | ( | StreamSerialiser & | stream | ) |
Prepare node from a stream.
void Ogre::TerrainQuadTreeNode::load | ( | ) |
Load node and children (perform GPU tasks, will be render thread)
Load node and children in a depth range (perform GPU tasks, will be render thread)
void Ogre::TerrainQuadTreeNode::loadSelf | ( | ) |
void Ogre::TerrainQuadTreeNode::unload | ( | ) |
Unload node and children (perform GPU tasks, will be render thread)
Unload node and children in a depth range (perform GPU tasks, will be render thread)
void Ogre::TerrainQuadTreeNode::unprepare | ( | ) |
Unprepare node and children (perform CPU tasks, may be background thread)
void Ogre::TerrainQuadTreeNode::save | ( | StreamSerialiser & | stream | ) |
Save node to a stream.
Get the LodLevel information for a given lod.
lod | The lod level index relative to this classes own list; if you want to use a global lod level, subtract getBaseLod() first. Higher LOD levels are lower detail. |
void Ogre::TerrainQuadTreeNode::preDeltaCalculation | ( | const Rect & | rect | ) |
Notify the node (and children) that deltas are going to be calculated for a given range.
Notify the node (and children) of a height delta value.
void Ogre::TerrainQuadTreeNode::postDeltaCalculation | ( | const Rect & | rect | ) |
Notify the node (and children) that deltas have finished being calculated.
void Ogre::TerrainQuadTreeNode::finaliseDeltaValues | ( | const Rect & | rect | ) |
Promote the delta values calculated to the runtime ones (this must be called in the main thread).
void Ogre::TerrainQuadTreeNode::assignVertexData | ( | uint16 | treeDepthStart, |
uint16 | treeDepthEnd, | ||
uint16 | resolution, | ||
uint | sz | ||
) |
Assign vertex data to the tree, from a depth and at a given resolution.
treeDepthStart | The first depth of tree that should use this data, owns the data |
treeDepthEnd | The end of the depth that should use this data (exclusive) |
resolution | The resolution of the data to use (compared to full terrain) |
sz | The size of the data along one edge |
void Ogre::TerrainQuadTreeNode::useAncestorVertexData | ( | TerrainQuadTreeNode * | owner, |
uint16 | treeDepthEnd, | ||
uint16 | resolution | ||
) |
Tell a node that it should use an anscestor's vertex data.
treeDepthEnd | The end of the depth that should use this data (exclusive) |
resolution | The resolution of the data to use |
void Ogre::TerrainQuadTreeNode::updateVertexData | ( | bool | positions, |
bool | deltas, | ||
const Rect & | rect, | ||
bool | cpuData | ||
) |
Tell the node to update its vertex data for a given region.
void Ogre::TerrainQuadTreeNode::mergeIntoBounds | ( | long | x, |
long | y, | ||
const Vector3 & | pos | ||
) |
Merge a point (relative to terrain node) into the local bounds, and that of children if applicable.
x,y | The point on the terrain to which this position corresponds (affects which nodes update their bounds) |
pos | The position relative to the terrain centre |
void Ogre::TerrainQuadTreeNode::resetBounds | ( | const Rect & | rect | ) |
Reset the bounds of this node and all its children for the region given.
rect | The region for which bounds should be reset, in top-level terrain coords |
bool Ogre::TerrainQuadTreeNode::rectIntersectsNode | ( | const Rect & | rect | ) |
Returns true if the given rectangle overlaps the terrain area that this node references.
rect | The region in top-level terrain coords |
bool Ogre::TerrainQuadTreeNode::rectContainsNode | ( | const Rect & | rect | ) |
Returns true if the given rectangle completely contains the terrain area that this node references.
rect | The region in top-level terrain coords |
bool Ogre::TerrainQuadTreeNode::pointIntersectsNode | ( | long | x, |
long | y | ||
) |
Returns true if the given point is in the terrain area that this node references.
x,y | The point in top-level terrain coords |
const AxisAlignedBox& Ogre::TerrainQuadTreeNode::getAABB | ( | ) | const |
Get the AABB (local coords) of this node.
Real Ogre::TerrainQuadTreeNode::getBoundingRadius | ( | ) | const |
Get the bounding radius of this node.
|
inline |
Get the local centre of this node, relative to parent terrain centre.
Real Ogre::TerrainQuadTreeNode::getMinHeight | ( | ) | const |
Get the minimum height of the node.
Real Ogre::TerrainQuadTreeNode::getMaxHeight | ( | ) | const |
Get the maximum height of the node.
Calculate appropriate LOD for this node and children.
cam | The camera to be used (this should already be the LOD camera) |
cFactor | The cFactor which incorporates the viewport size, max pixel error and lod bias |
|
inline |
Get the current LOD index (only valid after calculateCurrentLod)
bool Ogre::TerrainQuadTreeNode::isRenderedAtCurrentLod | ( | ) | const |
Returns whether this node is rendering itself at the current LOD level.
bool Ogre::TerrainQuadTreeNode::isSelfOrChildRenderedAtCurrentLod | ( | ) | const |
Returns whether this node or its children are being rendered at the current LOD level.
void Ogre::TerrainQuadTreeNode::setCurrentLod | ( | int | lod | ) |
Manually set the current LOD, intended for internal use only.
|
inline |
Get the transition state between the current LOD and the next lower one (only valid after calculateCurrentLod)
void Ogre::TerrainQuadTreeNode::setLodTransition | ( | float | t | ) |
Manually set the current LOD transition state, intended for internal use only.
Renderable* Ogre::TerrainQuadTreeNode::_getRenderable | ( | ) |
Returns the internal renderable object for this node.
|
friend |
|
friend |
|
static |
Buffer binding used for holding positions.
|
static |
Buffer binding used for holding delta values.