OGRE
1.11.6
Object-Oriented Graphics Rendering Engine
|
Specialisation of ParticleSystemRenderer to render particles using a BillboardSet. More...
#include <OgreBillboardParticleRenderer.h>
Classes | |
class | CmdAccurateFacing |
Command object for accurate facing(see ParamCommand). More... | |
class | CmdBillboardOrigin |
Command object for billboard origin (see ParamCommand). More... | |
class | CmdBillboardRotationType |
Command object for billboard rotation type (see ParamCommand). More... | |
class | CmdBillboardType |
Command object for billboard type (see ParamCommand). More... | |
class | CmdCommonDirection |
Command object for common direction (see ParamCommand). More... | |
class | CmdCommonUpVector |
Command object for common up-vector (see ParamCommand). More... | |
class | CmdPointRendering |
Command object for point rendering (see ParamCommand). More... | |
Public Member Functions | |
BillboardParticleRenderer () | |
~BillboardParticleRenderer () | |
virtual ParticleVisualData * | _createVisualData (void) |
Create a new ParticleVisualData instance for attachment to a particle. More... | |
virtual void | _destroyVisualData (ParticleVisualData *vis) |
Destroy a ParticleVisualData instance. More... | |
SortMode | _getSortMode (void) const |
Gets the desired particles sort mode of this renderer. More... | |
void | _notifyAttached (Node *parent, bool isTagPoint=false) |
Delegated to by ParticleSystem::_notifyAttached. More... | |
void | _notifyCurrentCamera (Camera *cam) |
Delegated to by ParticleSystem::_notifyCurrentCamera. More... | |
void | _notifyDefaultDimensions (Real width, Real height) |
Tells the renderer that the particle default size has changed. More... | |
virtual void | _notifyParticleCleared (std::list< Particle *> ¤tParticles) |
Optional callback notified when particles cleared. More... | |
virtual void | _notifyParticleEmitted (Particle *particle) |
Optional callback notified when particle emitted. More... | |
virtual void | _notifyParticleExpired (Particle *particle) |
Optional callback notified when particle expired. More... | |
virtual void | _notifyParticleMoved (std::list< Particle *> ¤tParticles) |
Optional callback notified when particles moved. More... | |
void | _notifyParticleQuota (size_t quota) |
Tells the renderer that the particle quota has changed. More... | |
void | _notifyParticleResized (void) |
Optional callback notified when particles are resized individually. More... | |
void | _notifyParticleRotated (void) |
Optional callback notified when particles are rotated. More... | |
void | _setMaterial (MaterialPtr &mat) |
Sets the material this renderer must use; called by ParticleSystem. More... | |
void | _updateRenderQueue (RenderQueue *queue, std::list< Particle *> ¤tParticles, bool cullIndividually) |
Delegated to by ParticleSystem::_updateRenderQueue. More... | |
void | copyParametersTo (StringInterface *dest) const |
Method for copying this object's parameters to another object. More... | |
BillboardOrigin | getBillboardOrigin (void) const |
Gets the point which acts as the origin point for all billboards in this set. More... | |
BillboardRotationType | getBillboardRotationType (void) const |
Gets billboard rotation type. More... | |
BillboardSet * | getBillboardSet (void) const |
Access BillboardSet in use. More... | |
BillboardType | getBillboardType (void) const |
Returns the billboard type in use. More... | |
const Vector3 & | getCommonDirection (void) const |
Gets the common direction for all billboards (BBT_ORIENTED_COMMON) More... | |
const Vector3 & | getCommonUpVector (void) const |
Gets the common up-vector for all billboards (BBT_PERPENDICULAR_SELF) More... | |
ParamDictionary * | getParamDictionary (void) |
Retrieves the parameter dictionary for this class. More... | |
const ParamDictionary * | getParamDictionary (void) const |
String | getParameter (const String &name) const |
Generic parameter retrieval method. More... | |
const ParameterList & | getParameters (void) const |
Retrieves a list of parameters valid for this object. More... | |
const String & | getType (void) const |
Gets the type of this renderer - must be implemented by subclasses. More... | |
bool | getUseAccurateFacing (void) const |
Gets whether or not billboards use an 'accurate' facing model based on the vector from each billboard to the camera, rather than an optimised version using just the camera direction. More... | |
bool | isPointRenderingEnabled (void) const |
Returns whether point rendering is enabled. More... | |
void | setBillboardOrigin (BillboardOrigin origin) |
Sets the point which acts as the origin point for all billboards in this set. More... | |
void | setBillboardRotationType (BillboardRotationType rotationType) |
Sets billboard rotation type. More... | |
void | setBillboardType (BillboardType bbt) |
Sets the type of billboard to render. More... | |
void | setCommonDirection (const Vector3 &vec) |
Use this to specify the common direction given to billboards of type BBT_ORIENTED_COMMON. More... | |
void | setCommonUpVector (const Vector3 &vec) |
Use this to specify the common up-vector given to billboards of type BBT_PERPENDICULAR_SELF. More... | |
void | setKeepParticlesInLocalSpace (bool keepLocal) |
Setting carried over from ParticleSystem. More... | |
bool | setParameter (const String &name, const String &value) |
Generic parameter setting method. More... | |
void | setParameterList (const NameValuePairList ¶mList) |
Generic multiple parameter setting method. More... | |
void | setPointRenderingEnabled (bool enabled) |
Set whether or not the BillboardSet will use point rendering rather than manually generated quads. More... | |
void | setRenderQueueGroup (uint8 queueID) |
Sets which render queue group this renderer should target with it's output. More... | |
void | setRenderQueueGroupAndPriority (uint8 queueID, ushort priority) |
Sets the render queue group and group priority this entity will be rendered through. More... | |
void | setUseAccurateFacing (bool acc) |
Sets whether or not billboards should use an 'accurate' facing model based on the vector from each billboard to the camera, rather than an optimised version using just the camera direction. More... | |
void | visitRenderables (Renderable::Visitor *visitor, bool debugRenderables=false) |
Required method to allow the renderer to communicate the Renderables it will be using to render the system to a visitor. More... | |
Static Public Member Functions | |
static void | cleanupDictionary () |
Cleans up the static 'msDictionary' required to reset Ogre, otherwise the containers are left with invalid pointers, which will lead to a crash as soon as one of the ResourceManager implementers (e.g. More... | |
Specialisation of ParticleSystemRenderer to render particles using a BillboardSet.
Ogre::BillboardParticleRenderer::BillboardParticleRenderer | ( | ) |
Ogre::BillboardParticleRenderer::~BillboardParticleRenderer | ( | ) |
void Ogre::BillboardParticleRenderer::setBillboardType | ( | BillboardType | bbt | ) |
Sets the type of billboard to render.
bbt | The type of billboard to render |
BillboardType Ogre::BillboardParticleRenderer::getBillboardType | ( | void | ) | const |
Returns the billboard type in use.
void Ogre::BillboardParticleRenderer::setUseAccurateFacing | ( | bool | acc | ) |
Sets whether or not billboards should use an 'accurate' facing model based on the vector from each billboard to the camera, rather than an optimised version using just the camera direction.
acc | True to use the slower but more accurate model. Default is false. |
bool Ogre::BillboardParticleRenderer::getUseAccurateFacing | ( | void | ) | const |
Gets whether or not billboards use an 'accurate' facing model based on the vector from each billboard to the camera, rather than an optimised version using just the camera direction.
|
inline |
Sets the point which acts as the origin point for all billboards in this set.
origin | A member of the BillboardOrigin enum specifying the origin for all the billboards in this set. |
References Ogre::BillboardSet::setBillboardOrigin().
|
inline |
Gets the point which acts as the origin point for all billboards in this set.
References Ogre::BillboardSet::getBillboardOrigin().
void Ogre::BillboardParticleRenderer::setBillboardRotationType | ( | BillboardRotationType | rotationType | ) |
Sets billboard rotation type.
rotationType | A member of the BillboardRotationType enum specifying the rotation type for all the billboards in this set. |
BillboardRotationType Ogre::BillboardParticleRenderer::getBillboardRotationType | ( | void | ) | const |
Gets billboard rotation type.
void Ogre::BillboardParticleRenderer::setCommonDirection | ( | const Vector3 & | vec | ) |
Use this to specify the common direction given to billboards of type BBT_ORIENTED_COMMON.
vec | The direction for all billboards. |
const Vector3& Ogre::BillboardParticleRenderer::getCommonDirection | ( | void | ) | const |
Gets the common direction for all billboards (BBT_ORIENTED_COMMON)
void Ogre::BillboardParticleRenderer::setCommonUpVector | ( | const Vector3 & | vec | ) |
Use this to specify the common up-vector given to billboards of type BBT_PERPENDICULAR_SELF.
vec | The up-vector for all billboards. |
const Vector3& Ogre::BillboardParticleRenderer::getCommonUpVector | ( | void | ) | const |
Gets the common up-vector for all billboards (BBT_PERPENDICULAR_SELF)
void Ogre::BillboardParticleRenderer::setPointRenderingEnabled | ( | bool | enabled | ) |
Set whether or not the BillboardSet will use point rendering rather than manually generated quads.
enabled | True to enable point rendering, false otherwise |
bool Ogre::BillboardParticleRenderer::isPointRenderingEnabled | ( | void | ) | const |
Returns whether point rendering is enabled.
|
virtual |
Gets the type of this renderer - must be implemented by subclasses.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Delegated to by ParticleSystem::_updateRenderQueue.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Required method to allow the renderer to communicate the Renderables it will be using to render the system to a visitor.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Sets the material this renderer must use; called by ParticleSystem.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Delegated to by ParticleSystem::_notifyCurrentCamera.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Optional callback notified when particles are rotated.
Reimplemented from Ogre::ParticleSystemRenderer.
|
virtual |
Optional callback notified when particles are resized individually.
Reimplemented from Ogre::ParticleSystemRenderer.
|
virtual |
Tells the renderer that the particle quota has changed.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Delegated to by ParticleSystem::_notifyAttached.
Implements Ogre::ParticleSystemRenderer.
Tells the renderer that the particle default size has changed.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Sets which render queue group this renderer should target with it's output.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Sets the render queue group and group priority this entity will be rendered through.
queueID | Enumerated value of the queue group to use. See the enum RenderQueueGroupID for what kind of values can be used here. |
priority | The priority within a group to use. |
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Setting carried over from ParticleSystem.
Implements Ogre::ParticleSystemRenderer.
|
virtual |
Gets the desired particles sort mode of this renderer.
Implements Ogre::ParticleSystemRenderer.
|
inline |
Access BillboardSet in use.
|
inlinevirtualinherited |
Optional callback notified when particle emitted.
|
inlinevirtualinherited |
Optional callback notified when particle expired.
|
inlinevirtualinherited |
Optional callback notified when particles moved.
|
inlinevirtualinherited |
Optional callback notified when particles cleared.
|
inlinevirtualinherited |
Create a new ParticleVisualData instance for attachment to a particle.
|
inlinevirtualinherited |
Destroy a ParticleVisualData instance.
|
inlineinherited |
Retrieves the parameter dictionary for this class.
|
inlineinherited |
|
inherited |
Retrieves a list of parameters valid for this object.
Generic parameter setting method.
name | The name of the parameter to set |
value | String value. Must be in the right format for the type specified in the parameter definition. See the StringConverter class for more information. |
Referenced by Ogre::StringInterface::copyParametersTo().
|
inherited |
Generic multiple parameter setting method.
paramList | Name/value pair list |
Generic parameter retrieval method.
name | The name of the parameter to get |
References Ogre::ParamCommand::doGet().
|
inlineinherited |
Method for copying this object's parameters to another object.
dest | Pointer to object to have it's parameters set the same as this object. |
References Ogre::StringInterface::setParameter().
|
staticinherited |
Cleans up the static 'msDictionary' required to reset Ogre, otherwise the containers are left with invalid pointers, which will lead to a crash as soon as one of the ResourceManager implementers (e.g.
MaterialManager) initializes.