OGRE 2.1
Object-Oriented Graphics Rendering Engine
|
Abstract class defining the interface required to be implemented by classes which provide rendering capability to ParticleSystem instances. More...
#include <OgreParticleSystemRenderer.h>
Public Member Functions | |
ParticleSystemRenderer () | |
Constructor. | |
virtual | ~ParticleSystemRenderer () |
Destructor. | |
virtual ParticleVisualData * | _createVisualData (void) |
Create a new ParticleVisualData instance for attachment to a particle. | |
virtual void | _destroyVisualData (ParticleVisualData *vis) |
Destroy a ParticleVisualData instance. | |
virtual SortMode | _getSortMode (void) const =0 |
Gets the desired particles sort mode of this renderer. | |
virtual void | _notifyAttached (Node *parent)=0 |
Delegated to by ParticleSystem::_notifyAttached. | |
virtual void | _notifyCurrentCamera (const Camera *cam)=0 |
Delegated to by ParticleSystem::_notifyCurrentCamera. | |
virtual void | _notifyDefaultDimensions (Real width, Real height)=0 |
Tells the renderer that the particle default size has changed. | |
virtual void | _notifyParticleCleared (list< Particle * >::type ¤tParticles) |
Optional callback notified when particles cleared. | |
virtual void | _notifyParticleEmitted (Particle *particle) |
Optional callback notified when particle emitted. | |
virtual void | _notifyParticleExpired (Particle *particle) |
Optional callback notified when particle expired. | |
virtual void | _notifyParticleMoved (list< Particle * >::type ¤tParticles) |
Optional callback notified when particles moved. | |
virtual void | _notifyParticleQuota (size_t quota)=0 |
Tells the renderer that the particle quota has changed. | |
virtual void | _notifyParticleResized (void) |
Optional callback notified when particles are resized individually. | |
virtual void | _notifyParticleRotated (void) |
Optional callback notified when particles are rotated. | |
virtual void | _setDatablock (HlmsDatablock *datablock)=0 |
Sets the HLMS material this renderer must use; called by ParticleSystem. | |
virtual void | _setMaterialName (const String &matName, const String &resourceGroup)=0 |
Sets the material this renderer must use; called by ParticleSystem. | |
virtual void | _updateRenderQueue (RenderQueue *queue, Camera *camera, const Camera *lodCamera, list< Particle * >::type ¤tParticles, bool cullIndividually, RenderableArray &outRenderables)=0 |
Delegated to by ParticleSystem::_updateRenderQueue. | |
virtual void | copyParametersTo (StringInterface *dest) const |
Method for copying this object's parameters to another object. | |
ParamDictionary * | getParamDictionary (void) |
Retrieves the parameter dictionary for this class. | |
const ParamDictionary * | getParamDictionary (void) const |
virtual String | getParameter (const String &name) const |
Generic parameter retrieval method. | |
const ParameterList & | getParameters (void) const |
Retrieves a list of parameters valid for this object. | |
virtual const String & | getType (void) const =0 |
Gets the type of this renderer - must be implemented by subclasses. | |
void | operator delete (void *ptr) |
void | operator delete (void *ptr, const char *, int, const char *) |
void | operator delete (void *ptr, void *) |
void | operator delete[] (void *ptr) |
void | operator delete[] (void *ptr, const char *, int, const char *) |
void * | operator new (size_t sz) |
void * | operator new (size_t sz, const char *file, int line, const char *func) |
operator new, with debug line info | |
void * | operator new (size_t sz, void *ptr) |
placement operator new | |
void * | operator new[] (size_t sz) |
void * | operator new[] (size_t sz, const char *file, int line, const char *func) |
array operator new, with debug line info | |
virtual void | setKeepParticlesInLocalSpace (bool keepLocal)=0 |
Setting carried over from ParticleSystem. | |
virtual bool | setParameter (const String &name, const String &value) |
Generic parameter setting method. | |
virtual void | setParameterList (const NameValuePairList ¶mList) |
Generic multiple parameter setting method. | |
virtual void | setRenderQueueGroup (uint8 queueID)=0 |
Sets which render queue group this renderer should target with it's output. | |
virtual void | setRenderQueueSubGroup (uint8 subGroupId)=0 |
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. | |
Abstract class defining the interface required to be implemented by classes which provide rendering capability to ParticleSystem instances.
|
inline |
Constructor.
|
inlinevirtual |
Destructor.
|
inlinevirtual |
Create a new ParticleVisualData instance for attachment to a particle.
|
inlinevirtual |
Destroy a ParticleVisualData instance.
Gets the desired particles sort mode of this renderer.
Implemented in Ogre::v1::BillboardParticleRenderer.
Delegated to by ParticleSystem::_notifyAttached.
Implemented in Ogre::v1::BillboardParticleRenderer.
Delegated to by ParticleSystem::_notifyCurrentCamera.
Implemented in Ogre::v1::BillboardParticleRenderer.
|
pure virtual |
Tells the renderer that the particle default size has changed.
Implemented in Ogre::v1::BillboardParticleRenderer.
|
inlinevirtual |
Optional callback notified when particles cleared.
|
inlinevirtual |
Optional callback notified when particle emitted.
|
inlinevirtual |
Optional callback notified when particle expired.
|
inlinevirtual |
Optional callback notified when particles moved.
Tells the renderer that the particle quota has changed.
Implemented in Ogre::v1::BillboardParticleRenderer.
Optional callback notified when particles are resized individually.
Reimplemented in Ogre::v1::BillboardParticleRenderer.
Optional callback notified when particles are rotated.
Reimplemented in Ogre::v1::BillboardParticleRenderer.
|
pure virtual |
Sets the HLMS material this renderer must use; called by ParticleSystem.
Implemented in Ogre::v1::BillboardParticleRenderer.
|
pure virtual |
Sets the material this renderer must use; called by ParticleSystem.
Implemented in Ogre::v1::BillboardParticleRenderer.
|
pure virtual |
Delegated to by ParticleSystem::_updateRenderQueue.
Implemented in Ogre::v1::BillboardParticleRenderer.
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.
|
inlinevirtualinherited |
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. |
|
inlineinherited |
Retrieves the parameter dictionary for this class.
|
inlineinherited |
|
inlinevirtualinherited |
Generic parameter retrieval method.
name | The name of the parameter to get |
|
inherited |
Retrieves a list of parameters valid for this object.
Gets the type of this renderer - must be implemented by subclasses.
Implemented in Ogre::v1::BillboardParticleRenderer.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
operator new, with debug line info
placement operator new
|
inlineinherited |
|
inlineinherited |
array operator new, with debug line info
|
pure virtual |
Setting carried over from ParticleSystem.
Implemented in Ogre::v1::BillboardParticleRenderer.
|
virtualinherited |
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. |
|
virtualinherited |
Generic multiple parameter setting method.
paramList | Name/value pair list |
Sets which render queue group this renderer should target with it's output.
Implemented in Ogre::v1::BillboardParticleRenderer.
Implemented in Ogre::v1::BillboardParticleRenderer.