OGRE
13.6
Object-Oriented Graphics Rendering Engine
|
Abstract class defining the interface all renderable objects must implement. More...
#include <OgreRenderable.h>
Classes | |
class | Visitor |
Visitor object that can be used to iterate over a collection of Renderable instances abstractly. More... | |
Public Types | |
enum | { DEFAULT_PRIORITY = 100 } |
Public Member Functions | |
Renderable () | |
virtual | ~Renderable () |
Virtual destructor needed as class has virtual methods. More... | |
virtual void | _updateCustomGpuParameter (const GpuProgramParameters::AutoConstantEntry &constantEntry, GpuProgramParameters *params) const |
Update a custom GpuProgramParameters constant which is derived from information only this Renderable knows. More... | |
virtual bool | getCastsShadows (void) const |
Method which reports whether this renderable would normally cast a shadow. More... | |
const Vector4f & | getCustomParameter (size_t index) const |
Gets the custom value associated with this Renderable at the given index. More... | |
virtual const LightList & | getLights (void) const =0 |
Gets a list of lights, ordered relative to how close they are to this renderable. More... | |
virtual const MaterialPtr & | getMaterial (void) const =0 |
Retrieves a weak reference to the material this renderable object uses. More... | |
virtual uint16 | getNumWorldTransforms (void) const |
Returns the number of world transform matrices this renderable requires. More... | |
bool | getPolygonModeOverrideable (void) const |
Gets whether this renderable's chosen detail level can be overridden (downgraded) by the camera setting. More... | |
virtual void | getRenderOperation (RenderOperation &op)=0 |
Gets the render operation required to send this object to the frame buffer. More... | |
virtual Real | getSquaredViewDepth (const Camera *cam) const =0 |
Returns the squared distance between the camera and this renderable. More... | |
virtual Technique * | getTechnique (void) const |
Retrieves a pointer to the Material Technique this renderable object uses. More... | |
bool | getUseIdentityProjection (void) const |
Returns whether or not to use an 'identity' projection. More... | |
bool | getUseIdentityView (void) const |
Returns whether or not to use an 'identity' view. More... | |
const Any & | getUserAny (void) const |
UserObjectBindings & | getUserObjectBindings () |
Class that provides convenient interface to establish a linkage between custom user application objects and Ogre core classes. More... | |
const UserObjectBindings & | getUserObjectBindings () const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
virtual void | getWorldTransforms (Matrix4 *xform) const =0 |
Gets the world transform matrix / matrices for this renderable object. More... | |
bool | hasCustomParameter (size_t index) const |
Checks whether a custom value is associated with this Renderable at the given index. More... | |
virtual void | postRender (SceneManager *sm, RenderSystem *rsys) |
Called immediately after the Renderable has been rendered. More... | |
virtual bool | preRender (SceneManager *sm, RenderSystem *rsys) |
Called just prior to the Renderable being rendered. More... | |
void | removeCustomParameter (size_t index) |
Removes a custom value which is associated with this Renderable at the given index. More... | |
void | setCustomParameter (size_t index, const Vector4f &value) |
Sets a custom parameter for this Renderable, which may be used to drive calculations for this specific Renderable, like GPU program parameters. More... | |
void | setPolygonModeOverrideable (bool override) |
Sets whether this renderable's chosen detail level can be overridden (downgraded) by the camera setting. More... | |
void | setUseIdentityProjection (bool useIdentityProjection) |
Sets whether or not to use an 'identity' projection. More... | |
void | setUseIdentityView (bool useIdentityView) |
Sets whether or not to use an 'identity' view. More... | |
void | setUserAny (const Any &anything) |
Abstract class defining the interface all renderable objects must implement.
|
inline |
|
inlinevirtual |
Virtual destructor needed as class has virtual methods.
|
pure virtual |
Retrieves a weak reference to the material this renderable object uses.
Implemented in Ogre::BspLevel, Ogre::SubEntity, Ogre::StaticGeometry::GeometryBucket, Ogre::SimpleRenderable, Ogre::ShadowRenderable, Ogre::ManualObject::ManualObjectSection, Ogre::InstanceBatch, Ogre::BillboardSet, Ogre::BillboardChain, Ogre::TextAreaOverlayElement, Ogre::OverlayElement, and Ogre::BorderRenderable.
|
inlinevirtual |
Retrieves a pointer to the Material Technique this renderable object uses.
Reimplemented in Ogre::SubEntity, Ogre::StaticGeometry::GeometryBucket, and Ogre::InstanceBatch.
|
pure virtual |
Gets the render operation required to send this object to the frame buffer.
Implemented in Ogre::BspLevel, Ogre::SubEntity, Ogre::StaticGeometry::GeometryBucket, Ogre::SimpleRenderable, Ogre::ShadowRenderable, Ogre::ManualObject::ManualObjectSection, Ogre::InstanceBatch, Ogre::BillboardSet, Ogre::TextAreaOverlayElement, Ogre::PanelOverlayElement, Ogre::BorderRenderable, and Ogre::BillboardChain.
|
inlinevirtual |
Called just prior to the Renderable being rendered.
Reimplemented in Ogre::BillboardChain.
|
inlinevirtual |
Called immediately after the Renderable has been rendered.
|
pure virtual |
Gets the world transform matrix / matrices for this renderable object.
This method will populate transform with 1 matrix if it does not use GPU vertex blending. If it does use GPU vertex blending it will fill the passed in pointer with an array of matrices, the length being the value returned from getNumWorldTransforms.
Implemented in Ogre::BspLevel, Ogre::SubEntity, Ogre::StaticGeometry::GeometryBucket, Ogre::SimpleRenderable, Ogre::ShadowRenderable, Ogre::ManualObject::ManualObjectSection, Ogre::BaseInstanceBatchVTF, Ogre::InstanceBatchShader, Ogre::InstanceBatchHW, Ogre::BillboardSet, Ogre::OverlayElement, Ogre::BorderRenderable, and Ogre::BillboardChain.
|
inlinevirtual |
Returns the number of world transform matrices this renderable requires.
When a renderable uses GPU vertex blending, it uses multiple world matrices instead of a single one. Each vertex sent to the pipeline can reference one or more matrices in this list with given weights. If a renderable does not use vertex blending this method returns 1, which is the default for simplicity.
Reimplemented in Ogre::SubEntity, Ogre::InstanceBatchShader, and Ogre::BorderRenderable.
|
inline |
Sets whether or not to use an 'identity' projection.
|
inline |
Returns whether or not to use an 'identity' projection.
|
inline |
Sets whether or not to use an 'identity' view.
|
inline |
Returns whether or not to use an 'identity' view.
Returns the squared distance between the camera and this renderable.
Used to sort transparent objects. Squared distance is used to avoid having to perform a square root on the result.
Implemented in Ogre::ManualObject::ManualObjectSection, Ogre::Volume::Chunk, Ogre::BspLevel, Ogre::WireBoundingBox, Ogre::SubEntity, Ogre::StaticGeometry::GeometryBucket, Ogre::Rectangle2D, Ogre::InstanceBatch, Ogre::BillboardSet, Ogre::BillboardChain, Ogre::OverlayElement, Ogre::BorderRenderable, and Ogre::ShadowRenderable.
|
pure virtual |
Gets a list of lights, ordered relative to how close they are to this renderable.
Implemented in Ogre::SubEntity, Ogre::StaticGeometry::GeometryBucket, Ogre::SimpleRenderable, Ogre::ShadowRenderable, Ogre::ManualObject::ManualObjectSection, Ogre::InstanceBatch, Ogre::BillboardSet, Ogre::BillboardChain, Ogre::OverlayElement, Ogre::BorderRenderable, and Ogre::BspLevel.
|
inlinevirtual |
Method which reports whether this renderable would normally cast a shadow.
Reimplemented in Ogre::SubEntity, and Ogre::StaticGeometry::GeometryBucket.
void Ogre::Renderable::setCustomParameter | ( | size_t | index, |
const Vector4f & | value | ||
) |
Sets a custom parameter for this Renderable, which may be used to drive calculations for this specific Renderable, like GPU program parameters.
index | The index with which to associate the value. Note that this does not have to start at 0, and can include gaps. It also has no direct correlation with a GPU program parameter index - the mapping between the two is performed by the ACT_CUSTOM entry, if that is used. |
value | The value to associate. |
void Ogre::Renderable::removeCustomParameter | ( | size_t | index | ) |
Removes a custom value which is associated with this Renderable at the given index.
index | Index of the parameter to remove. |
bool Ogre::Renderable::hasCustomParameter | ( | size_t | index | ) | const |
Checks whether a custom value is associated with this Renderable at the given index.
index | Index of the parameter to check for existence. |
const Vector4f& Ogre::Renderable::getCustomParameter | ( | size_t | index | ) | const |
Gets the custom value associated with this Renderable at the given index.
index | Index of the parameter to retrieve. |
|
virtual |
Update a custom GpuProgramParameters constant which is derived from information only this Renderable knows.
constantEntry | The auto constant entry referring to the parameter being updated |
params | The parameters object which this method should call to set the updated parameters. |
Reimplemented in Ogre::SubEntity.
|
inline |
Sets whether this renderable's chosen detail level can be overridden (downgraded) by the camera setting.
override | true means that a lower camera detail will override this renderables detail level, false means it won't. |
|
inline |
Gets whether this renderable's chosen detail level can be overridden (downgraded) by the camera setting.
Referenced by Ogre::BorderRenderable::BorderRenderable().
|
inline |
|
inline |
|
inline |
Class that provides convenient interface to establish a linkage between custom user application objects and Ogre core classes.
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.