OGRE 2.1
Object-Oriented Graphics Rendering Engine
|
#include <OgreRenderable.h>
Public Types | |
typedef map< size_t, Vector4 >::type | CustomParameterMap |
typedef FastArray< unsigned short > | IndexMap |
Public Member Functions | |
RenderableAnimated () | |
virtual void | _setHlmsHashes (uint32 hash, uint32 casterHash) |
Manually sets the hlms hashes. Don't call this directly. | |
virtual void | _setNullDatablock (void) |
Sets the datablock to a null pointer. | |
virtual void | _updateCustomGpuParameter (const GpuProgramParameters::AutoConstantEntry &constantEntry, GpuProgramParameters *params) const |
Update a custom GpuProgramParameters constant which is derived from information only this Renderable knows. | |
void | addPoseWeight (size_t index, float w) |
const IndexMap * | getBlendIndexToBoneIndexMap (void) const |
virtual bool | getCastsShadows (void) const |
Method which reports whether this renderable would normally cast a shadow. | |
uint8 | getCurrentMaterialLod (void) const |
const Vector4 & | getCustomParameter (size_t index) const |
Gets the custom value associated with this Renderable at the given index. | |
const CustomParameterMap & | getCustomParameters (void) const |
HlmsDatablock * | getDatablock (void) const |
uint32 | getHlmsCasterHash (void) const |
uint32 | getHlmsHash (void) const |
virtual const LightList & | getLights (void) const =0 |
Gets a list of lights, ordered relative to how close they are to this renderable. | |
MaterialPtr | getMaterial (void) const |
Retrieves the material this renderable object uses. | |
unsigned short | getNumPoses (void) const |
virtual unsigned short | getNumWorldTransforms (void) const |
Returns the number of world transform matrices this renderable requires. | |
virtual bool | getPolygonModeOverrideable (void) const |
Gets whether this renderable's chosen detail level can be overridden (downgraded) by the camera setting. | |
bool | getPoseHalfPrecision () const |
bool | getPoseNormals () const |
TexBufferPacked * | getPoseTexBuffer () const |
float | getPoseWeight (size_t index) const |
float * | getPoseWeights () const |
virtual void | getRenderOperation (v1::RenderOperation &op, bool casterPass)=0 |
Gets the render operation required to send this object to the frame buffer. | |
uint8 | getRenderQueueSubGroup (void) const |
bool | getUseIdentityProjection (void) const |
Returns whether or not to use an 'identity' projection. | |
bool | getUseIdentityView (void) const |
Returns whether or not to use an 'identity' view. | |
virtual bool | getUseIdentityViewProjMatrixIsDynamic (void) const |
Returns whether the Hlms implementation should evaluate getUseIdentityProjection per object at runtime, or if it can assume the Renderable will remain with the same setting until the datablock is flushed (performance optimization) | |
virtual bool | getUseIdentityWorldMatrix (void) const |
Returns whether the world matrix is an identity matrix. | |
virtual OGRE_DEPRECATED const Any & | getUserAny (void) const |
UserObjectBindings & | getUserObjectBindings () |
Return an instance of user objects binding associated with this class. | |
const UserObjectBindings & | getUserObjectBindings () const |
Return an instance of user objects binding associated with this class. | |
const VertexArrayObjectArray & | getVaos (VertexPass vertexPass) const |
virtual void | getWorldTransforms (Matrix4 *xform) const =0 |
Gets the world transform matrix / matrices for this renderable object. | |
bool | hasCustomParameter (size_t index) const |
Checks whether a custom value is associated with this Renderable at the given index. | |
bool | hasSkeletonAnimation (void) const |
virtual void | postRender (SceneManager *sm, RenderSystem *rsys) |
Called immediately after the Renderable has been rendered. | |
virtual bool | preRender (SceneManager *sm, RenderSystem *rsys) |
Called just prior to the Renderable being rendered. | |
void | removeCustomParameter (size_t index) |
Removes a custom value which is associated with this Renderable at the given index. | |
void | setCustomParameter (size_t index, const Vector4 &value) |
Sets a custom parameter for this Renderable, which may be used to drive calculations for this specific Renderable, like GPU program parameters. | |
virtual void | setDatablock (HlmsDatablock *datablock) |
Assigns a datablock (i.e. HLMS Material) to this renderable. | |
void | setDatablock (IdString datablockName) |
Assigns a datablock (i.e. | |
void | setDatablockOrMaterialName (String materialName, String groupName) |
First tries to see if an HLMS datablock exist with the given name, if not, tries to search among low level materials. | |
virtual void | setMaterial (const MaterialPtr &material) |
Sets the given material. Overrides HLMS materials. | |
void | setMaterialName (const String &name, const String &groupName) |
Sets the name of the Material to be used. Prefer using HLMS @See setHlms. | |
virtual void | setPolygonModeOverrideable (bool override) |
Sets whether this renderable's chosen detail level can be overridden (downgraded) by the camera setting. | |
void | setPoseWeight (size_t index, float w) |
void | setRenderQueueSubGroup (uint8 subGroup) |
Sets the render queue sub group. | |
void | setUseIdentityProjection (bool useIdentityProjection) |
Sets whether or not to use an 'identity' projection. | |
void | setUseIdentityView (bool useIdentityView) |
Sets whether or not to use an 'identity' view. | |
virtual OGRE_DEPRECATED void | setUserAny (const Any &anything) |
Public Attributes | |
uint8 | mCustomParameter |
Only valid when using low level materials. | |
uint32 | mHlmsGlobalIndex |
Index in the vector holding this Rendrable reference in the HLMS datablock. | |
|
inherited |
Ogre::RenderableAnimated::RenderableAnimated | ( | ) |
Manually sets the hlms hashes. Don't call this directly.
Reimplemented in Ogre::SubItem.
Sets the datablock to a null pointer.
Use case: If you will be destroying an HlmsDatablock and all Renderables associated by it; it makes no sense to change the Renderable's datablock to a default one, only to be destroyed immediately after (you pay an unnecessary performance price).
Reimplemented in Ogre::v1::BillboardSet, and Ogre::v1::SubEntity.
|
inlinevirtualinherited |
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::v1::SubEntity.
Method which reports whether this renderable would normally cast a shadow.
Reimplemented in Ogre::v1::StaticGeometry::GeometryBucket, Ogre::v1::SubEntity, Ogre::SubItem, Ogre::WireAabb, and Ogre::ManualObject::ManualObjectSection.
Gets the custom value associated with this Renderable at the given index.
index | Index of the parameter to retrieve. |
References Ogre::Exception::ERR_ITEM_NOT_FOUND, and OGRE_EXCEPT.
|
inlineinherited |
|
inlineinherited |
Gets a list of lights, ordered relative to how close they are to this renderable.
Implemented in Ogre::v1::BorderRenderable, Ogre::v1::OverlayElement, Ogre::v1::BillboardChain, Ogre::v1::BillboardSet, Ogre::Frustum, Ogre::v1::InstanceBatch, Ogre::v1::ManualObject::ManualObjectSection, Ogre::v1::Rectangle2D, Ogre::v1::SimpleRenderable, Ogre::v1::StaticGeometry::GeometryBucket, Ogre::v1::SubEntity, Ogre::SubItem, Ogre::WireAabb, and Ogre::ManualObject::ManualObjectSection.
|
inherited |
Retrieves the material this renderable object uses.
It may be null if it's using the HLMS. @See getDatablock
|
inlinevirtualinherited |
Returns the number of world transform matrices this renderable requires.
Reimplemented in Ogre::v1::BorderRenderable, Ogre::v1::InstanceBatchHW, Ogre::v1::InstanceBatchShader, Ogre::v1::BaseInstanceBatchVTF, and Ogre::v1::SubEntity.
Gets whether this renderable's chosen detail level can be overridden (downgraded) by the camera setting.
Reimplemented in Ogre::v1::BorderRenderable.
Referenced by Ogre::v1::BorderRenderable::getPolygonModeOverrideable().
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
pure virtualinherited |
Gets the render operation required to send this object to the frame buffer.
Implemented in Ogre::v1::BillboardChain, Ogre::v1::BillboardSet, Ogre::v1::InstanceBatch, Ogre::v1::ManualObject::ManualObjectSection, Ogre::v1::Rectangle2D, Ogre::v1::SimpleRenderable, Ogre::v1::StaticGeometry::GeometryBucket, Ogre::v1::SubEntity, Ogre::v1::BorderRenderable, Ogre::v1::PanelOverlayElement, Ogre::v1::TextAreaOverlayElement, Ogre::Frustum, Ogre::SubItem, Ogre::WireAabb, and Ogre::ManualObject::ManualObjectSection.
Returns whether or not to use an 'identity' projection.
Returns whether or not to use an 'identity' view.
|
inlinevirtualinherited |
Returns whether the Hlms implementation should evaluate getUseIdentityProjection per object at runtime, or if it can assume the Renderable will remain with the same setting until the datablock is flushed (performance optimization)
Returns whether the world matrix is an identity matrix.
Reimplemented in Ogre::v1::BillboardSet.
|
inlinevirtualinherited |
Reimplemented in Ogre::v1::InstanceBatch.
|
inlineinherited |
Return an instance of user objects binding associated with this class.
You can use it to associate one or more custom objects with this class instance.
|
inlineinherited |
Return an instance of user objects binding associated with this class.
You can use it to associate one or more custom objects with this class instance.
|
inlineinherited |
Gets the world transform matrix / matrices for this renderable object.
Implemented in Ogre::v1::BillboardChain, Ogre::Camera, Ogre::v1::BorderRenderable, Ogre::v1::OverlayElement, Ogre::v1::BillboardSet, Ogre::Frustum, Ogre::v1::InstanceBatchHW, Ogre::v1::InstanceBatchShader, Ogre::v1::BaseInstanceBatchVTF, Ogre::v1::ManualObject::ManualObjectSection, Ogre::v1::Rectangle2D, Ogre::v1::SimpleRenderable, Ogre::v1::StaticGeometry::GeometryBucket, Ogre::v1::SubEntity, Ogre::SubItem, Ogre::WireAabb, and Ogre::ManualObject::ManualObjectSection.
Checks whether a custom value is associated with this Renderable at the given index.
index | Index of the parameter to check for existence. |
|
inlinevirtualinherited |
Called immediately after the Renderable has been rendered.
|
inlinevirtualinherited |
Called just prior to the Renderable being rendered.
Reimplemented in Ogre::v1::BillboardChain.
Removes a custom value which is associated with this Renderable at the given index.
index | Index of the parameter to remove. |
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. |
|
virtualinherited |
Assigns a datablock (i.e. HLMS Material) to this renderable.
Reimplemented in Ogre::v1::BillboardSet, Ogre::v1::SubEntity, and Ogre::v1::SubEntity.
Assigns a datablock (i.e.
HLMS material) based on its unique name.
|
inherited |
First tries to see if an HLMS datablock exist with the given name, if not, tries to search among low level materials.
|
virtualinherited |
Sets the given material. Overrides HLMS materials.
Reimplemented in Ogre::v1::SimpleRenderable, Ogre::v1::BillboardSet, and Ogre::v1::SubEntity.
Sets the name of the Material to be used. Prefer using HLMS @See setHlms.
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. |
Sets the render queue sub group.
subGroup | The sub group. This value can't exceed OGRE_MAKE_MASK( SubRqIdBits ) @See RenderQueue |
Sets whether or not to use an 'identity' projection.
Sets whether or not to use an 'identity' view.
|
inlinevirtualinherited |
Reimplemented in Ogre::v1::InstanceBatch.
|
inherited |
Only valid when using low level materials.
|
inherited |
Index in the vector holding this Rendrable reference in the HLMS datablock.
Used for O(1) removals.