PagedGeometry
1.3.0
|
A custom page type designed specifically for use with GrassLoader. More...
#include <GrassLoader.h>
Public Member Functions | |
void | init (PagedGeometry *geom, const Ogre::Any &data) |
Prepare a geometry page for use. More... | |
void | addEntity (Ogre::Entity *ent, const Ogre::Vector3 &position, const Ogre::Quaternion &rotation, const Ogre::Vector3 &scale, const Ogre::ColourValue &color) |
Add an entity to the page, at the specified position, rotation, and scale. More... | |
void | removeEntities () |
Remove all geometry/entities from the page completely. More... | |
void | setFade (bool enabled, Ogre::Real visibleDist, Ogre::Real invisibleDist) |
Sets fade behavior for this page. More... | |
void | setVisible (bool visible) |
Toggle the entire page's visibility. More... | |
![]() | |
void | setQueryFlag (Ogre::uint32 flag) |
bool | hasQueryFlag () |
Ogre::uint32 | getQueryFlag () |
virtual void | setRegion (Ogre::Real left, Ogre::Real top, Ogre::Real right, Ogre::Real bottom) |
Prepare a geometry page for entities. More... | |
virtual void | build () |
Perform any final steps to make added entities appear in the scene. More... | |
virtual void | update () |
Do whatever needs to be done to keep the page geometry up-to-date. More... | |
Ogre::Vector3 & | getCenterPoint () |
Gets the center point of the page. More... | |
bool | isVisible () |
Return the current visibility status of the page. More... | |
virtual const Ogre::AxisAlignedBox & | getBoundingBox () |
Advanced: Return the bounding box computed with addEntityToBoundingBox() More... | |
virtual void | addEntityToBoundingBox (Ogre::Entity *ent, const Ogre::Vector3 &position, const Ogre::Quaternion &rotation, const Ogre::Vector3 &scale) |
Advanced: Expand the current bounding box to include the given entity. More... | |
virtual void | clearBoundingBox () |
Advanced: Reset the bounding box used by addEntityToBoundingBox() More... | |
virtual | ~GeometryPage () |
Destructor This is defined here so the destructors of derived classes are called properly. More... | |
GeometryPage () | |
Constructor Initialise everything to zero, false or NULL except for _trueBoundsUndefined that is set to true. | |
A custom page type designed specifically for use with GrassLoader.
You can use this in your own project if you want, but remember that no optimizations are performed. The given entity is simply cloned and attached to a new scene node as quickly and simply as possible (this means there's no batching overhead as in BatchPage, but it also means potentially poor performance if you don't know what you're doing).
|
virtual |
Prepare a geometry page for use.
geom | The PagedGeometry object that's creating this GeometryPage. |
data | A single parameter of custom data (optional). |
This is called immediately after creating a new GeometryPage. It is never called more than once for a single instance of your geometry page.
The "data" parameter is set for all pages when PagedGeometry::addDetailLevel() is called. This parameter is optional and can be used for whatever you like if you need a constructor parameter of some kind. Be sure to document what kind of variable the user needs to supply and what it's purpose is in your GeometryPage implementation.
Implements Forests::GeometryPage.
References Forests::PagedGeometry::getSceneManager(), and Forests::PagedGeometry::getSceneNode().
|
virtual |
Add an entity to the page, at the specified position, rotation, and scale.
ent | The entity that is being added. Keep in mind that the same entity may be added multiple times. |
position | The position where the entity must be placed. Under normal circumstances, this will never be outside of the bounds supplied to init(). The only exception is when a PageLoader tries to add an entity outside of the bounds it was given. |
rotation | The rotation which should be applied to the entity. |
scale | The scale which should be applied to the entity. |
color | The desired color to apply to the whole entity |
Implements Forests::GeometryPage.
References Ogre::SceneNode::attachObject(), Ogre::SceneNode::createChildSceneNode(), Ogre::MovableObject::getRenderQueueGroup(), Ogre::MovableObject::setCastShadows(), Ogre::Node::setPosition(), Ogre::MovableObject::setQueryFlags(), and Ogre::Entity::setRenderQueueGroup().
|
virtual |
Remove all geometry/entities from the page completely.
Make sure this completely reverses the effects of both build() and addEntity(). This is necessary, because after this is called, the entities will most likely be added again with addEntity() and build().
Do not leave any remains of the entities in memory after this function is called. One of the advantages of using paged geometry is that you can have near-infinite game worlds, which would normally exceed a computer's RAM capacity. This advantage would completely disappear if you did not clean up properly when the page manager calls this function.
Implements Forests::GeometryPage.
References Ogre::SceneNode::getAttachedObject(), Ogre::Entity::getMesh(), Ogre::Resource::getName(), Ogre::MeshManager::getSingleton(), Ogre::SceneNode::numAttachedObjects(), and Ogre::ResourceManager::remove().
|
inlinevirtual |
Sets fade behavior for this page.
enabled | Whether or not to enable fading |
visibleDist | The distance where geometry will be fully opaque (alpha 1) |
invisibleDist | The distance where geometry will be invisible (alpha 0) |
This is called whenever a page needs fading enabled/disabled. The distance ranges given specify how the final alpha values should be calculated - geometry at visibleDist should have alpha values of 1, while geometry at invisibleDist should have alpha values of 0. Important: Distances must be calculated in the xz plane only - the y coordinate should be disregarded when calculating distance.
setFade() won't be called unless the user's computer supports vertex shaders.
Implements Forests::GeometryPage.
|
virtual |
Toggle the entire page's visibility.
visible | Whether or not this page should be visible. |
Implements Forests::GeometryPage.
References Ogre::SceneNode::setVisible().