TDME2 1.9.121
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
ObjectParticleSystemInternal Class Reference

Particle system which displays objects as particles. More...

#include <tdme/engine/subsystems/particlesystem/ObjectParticleSystemInternal.h>

Inheritance diagram for ObjectParticleSystemInternal:
Inheritance graph
Collaboration diagram for ObjectParticleSystemInternal:
Collaboration graph

Public Member Functions

 ObjectParticleSystemInternal (const string &id, Model *model, const Vector3 &scale, bool autoEmit, bool contributesShadows, bool receivesShadows, int32_t maxCount, ParticleEmitter *emitter)
 Public constructor. More...
 
virtual ~ObjectParticleSystemInternal ()
 Destructor. More...
 
ParticleEmittergetEmitter () override
 
const string & getId () override
 
void setEngine (Engine *engine)
 
void setRenderer (Renderer *renderer)
 
bool isEnabled () override
 
bool isActive () override
 
void setEnabled (bool enabled) override
 Enable/disable rendering. More...
 
const Color4getEffectColorMul () const override
 The effect color will be multiplied with fragment color. More...
 
void setEffectColorMul (const Color4 &effectColorMul) override
 Set the effect color that will be multiplied with fragment color. More...
 
const Color4getEffectColorAdd () const override
 The effect color will be added to fragment color. More...
 
void setEffectColorAdd (const Color4 &effectColorAdd) override
 Set the effect color that will be added to fragment color. More...
 
bool isPickable () override
 
void setPickable (bool pickable) override
 Set this object pickable. More...
 
bool isAutoEmit () override
 
void setAutoEmit (bool autoEmit) override
 Set auto emit. More...
 
bool isContributesShadows ()
 
void setContributesShadows (bool contributesShadows)
 Enable/disable contributes shadows. More...
 
bool isReceivesShadows ()
 
void setReceivesShadows (bool receivesShadows)
 Enable/disable receives shadows. More...
 
void update () override
 Update transformations. More...
 
void fromTransformations (const Transformations &transformations) override
 Set up this transformations from given transformations. More...
 
int32_t emitParticles () override
 Adds particles to this particle entity at given position. More...
 
void updateParticles () override
 Updates the particle entity. More...
 
void dispose ()
 
const TransformationsgetLocalTransformations () override
 
void setLocalTransformations (const Transformations &transformations) override
 Set local transformations. More...
 
- Public Member Functions inherited from Transformations
 Transformations ()
 Public constructor. More...
 
virtual ~Transformations ()
 Destructor. More...
 
const Vector3getTranslation () const
 
void setTranslation (const Vector3 &translation)
 Set translation. More...
 
const Vector3getScale () const
 
void setScale (const Vector3 &scale)
 Set scale. More...
 
const Vector3getPivot () const
 
void setPivot (const Vector3 &pivot)
 Set pivot. More...
 
const int getRotationCount () const
 
RotationgetRotation (const int idx)
 Get rotation at given index. More...
 
void addRotation (const Vector3 &axis, const float angle)
 Add rotation. More...
 
void removeRotation (const int idx)
 Remove rotation. More...
 
const Vector3getRotationAxis (const int idx) const
 
void setRotationAxis (const int idx, const Vector3 &axis)
 Set rotation axis. More...
 
const float getRotationAngle (const int idx) const
 
void setRotationAngle (const int idx, const float angle)
 
const QuaterniongetRotationsQuaternion () const
 
const Matrix4x4getTransformationsMatrix () const
 
virtual void fromTransformations (const Transformations &transformations)
 Set up this transformations from given transformations. More...
 
virtual void fromMatrix (const Matrix4x4 &matrix, RotationOrder *rotationOrder)
 Set up this transformations from given matrix and rotation order. More...
 
virtual void update ()
 Computes transformation matrix. More...
 
virtual void applyParentTransformations (const Transformations &parentTransformations)
 Apply parent transformations. More...
 
virtual void invert ()
 Invert this transformations. More...
 
- Public Member Functions inherited from ParticleSystemEntityInternal
virtual ~ParticleSystemEntityInternal ()
 Public destructor. More...
 
virtual ParticleEmittergetEmitter ()=0
 
virtual const string & getId ()=0
 
virtual bool isEnabled ()=0
 
virtual bool isActive ()=0
 
virtual void setEnabled (bool enabled)=0
 Enable/disable rendering. More...
 
virtual bool isPickable ()=0
 
virtual void setPickable (bool pickable)=0
 Set this object pickable. More...
 
virtual bool isAutoEmit ()=0
 
virtual void setAutoEmit (bool autoEmit)=0
 Set auto emit. More...
 
virtual const Color4getEffectColorMul () const =0
 The effect color will be multiplied with fragment color. More...
 
virtual void setEffectColorMul (const Color4 &effectColorMul)=0
 Set the effect color that will be multiplied with fragment color. More...
 
virtual const Color4getEffectColorAdd () const =0
 The effect color will be added to fragment color. More...
 
virtual void setEffectColorAdd (const Color4 &effectColorAdd)=0
 Set the effect color that will be added to fragment color. More...
 
virtual void updateParticles ()=0
 Updates the particle entity. More...
 
virtual int32_t emitParticles ()=0
 Adds particles to this particle entity at given position. More...
 
virtual void fromTransformations (const Transformations &transformations)=0
 Set up this transformations from given transformations. More...
 
virtual void update ()=0
 Update transformations. More...
 
virtual const TransformationsgetLocalTransformations ()=0
 
virtual void setLocalTransformations (const Transformations &transformations)=0
 Set local transformations. More...
 

Protected Member Functions

void updateInternal ()
 Update internal. More...
 

Protected Attributes

Engineengine { nullptr }
 
Rendererrenderer { nullptr }
 
string id
 
bool enabled
 
Modelmodel { nullptr }
 
Vector3 objectScale
 
bool autoEmit
 
bool contributesShadows
 
bool receivesShadows
 
vector< Particleparticles
 
vector< Object3D * > objects
 
vector< Object3D * > enabledObjects
 
BoundingBox boundingBox
 
BoundingBox boundingBoxTransformed
 
Transformations inverseTransformation
 
ParticleEmitteremitter { nullptr }
 
bool pickable
 
Color4 effectColorMul
 
Color4 effectColorAdd
 
float particlesToSpawnRemainder
 
Transformations localTransformations
 

Detailed Description

Particle system which displays objects as particles.

Author
Andreas Drewke
Version
$Id$

Definition at line 48 of file ObjectParticleSystemInternal.h.

Constructor & Destructor Documentation

◆ ObjectParticleSystemInternal()

ObjectParticleSystemInternal ( const string &  id,
Model model,
const Vector3 scale,
bool  autoEmit,
bool  contributesShadows,
bool  receivesShadows,
int32_t  maxCount,
ParticleEmitter emitter 
)

Public constructor.

Parameters
idid
modelmodel
scalescale
autoEmitauto emit
contributesShadowsenable contributes shadows
receivesShadowsenable receives shadows
maxCountmaxCount
emitteremitter

Definition at line 48 of file ObjectParticleSystemInternal.cpp.

◆ ~ObjectParticleSystemInternal()

Destructor.

Definition at line 82 of file ObjectParticleSystemInternal.cpp.

Member Function Documentation

◆ dispose()

void dispose ( )

Definition at line 231 of file ObjectParticleSystemInternal.cpp.

◆ emitParticles()

int32_t emitParticles ( )
overridevirtual

Adds particles to this particle entity at given position.

Implements ParticleSystemEntityInternal.

Definition at line 120 of file ObjectParticleSystemInternal.cpp.

◆ fromTransformations()

void fromTransformations ( const Transformations transformations)
overridevirtual

Set up this transformations from given transformations.

Parameters
transformationstransformations

Implements ParticleSystemEntityInternal.

Definition at line 114 of file ObjectParticleSystemInternal.cpp.

◆ getEffectColorAdd()

const Color4 & getEffectColorAdd ( ) const
inlineoverridevirtual

The effect color will be added to fragment color.

Returns
effect color

Implements ParticleSystemEntityInternal.

Definition at line 133 of file ObjectParticleSystemInternal.h.

◆ getEffectColorMul()

const Color4 & getEffectColorMul ( ) const
inlineoverridevirtual

The effect color will be multiplied with fragment color.

Returns
effect color

Implements ParticleSystemEntityInternal.

Definition at line 127 of file ObjectParticleSystemInternal.h.

◆ getEmitter()

ParticleEmitter * getEmitter ( )
inlineoverridevirtual
Returns
particle emitter

Implements ParticleSystemEntityInternal.

Definition at line 111 of file ObjectParticleSystemInternal.h.

◆ getId()

const string & getId ( )
overridevirtual
Returns
object id

Implements ParticleSystemEntityInternal.

Definition at line 87 of file ObjectParticleSystemInternal.cpp.

◆ getLocalTransformations()

const Transformations & getLocalTransformations ( )
inlineoverridevirtual
Returns
local transformations

Implements ParticleSystemEntityInternal.

Definition at line 193 of file ObjectParticleSystemInternal.h.

◆ isActive()

bool isActive ( )
inlineoverridevirtual
Returns
true if active / particles available

Implements ParticleSystemEntityInternal.

Definition at line 121 of file ObjectParticleSystemInternal.h.

◆ isAutoEmit()

bool isAutoEmit ( )
inlineoverridevirtual
Returns
if auto emit is enabled

Implements ParticleSystemEntityInternal.

Definition at line 145 of file ObjectParticleSystemInternal.h.

◆ isContributesShadows()

bool isContributesShadows ( )
inline
Returns
if entity contributes to shadows

Definition at line 155 of file ObjectParticleSystemInternal.h.

◆ isEnabled()

bool isEnabled ( )
inlineoverridevirtual
Returns
true if enabled to be rendered

Implements ParticleSystemEntityInternal.

Definition at line 118 of file ObjectParticleSystemInternal.h.

◆ isPickable()

bool isPickable ( )
inlineoverridevirtual
Returns
if object is pickable

Implements ParticleSystemEntityInternal.

Definition at line 139 of file ObjectParticleSystemInternal.h.

◆ isReceivesShadows()

bool isReceivesShadows ( )
inline
Returns
if entity receives shadows

Definition at line 171 of file ObjectParticleSystemInternal.h.

◆ setAutoEmit()

void setAutoEmit ( bool  autoEmit)
inlineoverridevirtual

Set auto emit.

Parameters
autoEmitauto emit

Implements ParticleSystemEntityInternal.

Definition at line 148 of file ObjectParticleSystemInternal.h.

◆ setContributesShadows()

void setContributesShadows ( bool  contributesShadows)
inline

Enable/disable contributes shadows.

Parameters
contributesShadowscontributes shadows

Definition at line 163 of file ObjectParticleSystemInternal.h.

◆ setEffectColorAdd()

void setEffectColorAdd ( const Color4 effectColorAdd)
inlineoverridevirtual

Set the effect color that will be added to fragment color.

Parameters
effectColorAddeffect color

Implements ParticleSystemEntityInternal.

Definition at line 136 of file ObjectParticleSystemInternal.h.

◆ setEffectColorMul()

void setEffectColorMul ( const Color4 effectColorMul)
inlineoverridevirtual

Set the effect color that will be multiplied with fragment color.

Parameters
effectColorMuleffect color

Implements ParticleSystemEntityInternal.

Definition at line 130 of file ObjectParticleSystemInternal.h.

◆ setEnabled()

void setEnabled ( bool  enabled)
inlineoverridevirtual

Enable/disable rendering.

Parameters
enabledenabled

Implements ParticleSystemEntityInternal.

Definition at line 124 of file ObjectParticleSystemInternal.h.

◆ setEngine()

void setEngine ( Engine engine)

Definition at line 92 of file ObjectParticleSystemInternal.cpp.

◆ setLocalTransformations()

void setLocalTransformations ( const Transformations transformations)
inlineoverridevirtual

Set local transformations.

Parameters
transformationslocal transformations

Implements ParticleSystemEntityInternal.

Definition at line 196 of file ObjectParticleSystemInternal.h.

◆ setPickable()

void setPickable ( bool  pickable)
inlineoverridevirtual

Set this object pickable.

Parameters
pickablepickable

Implements ParticleSystemEntityInternal.

Definition at line 142 of file ObjectParticleSystemInternal.h.

◆ setReceivesShadows()

void setReceivesShadows ( bool  receivesShadows)
inline

Enable/disable receives shadows.

Parameters
receivesShadowsreceives shadows

Definition at line 179 of file ObjectParticleSystemInternal.h.

◆ setRenderer()

void setRenderer ( Renderer renderer)

Definition at line 100 of file ObjectParticleSystemInternal.cpp.

◆ update()

void update ( )
overridevirtual

Update transformations.

Implements ParticleSystemEntityInternal.

Definition at line 108 of file ObjectParticleSystemInternal.cpp.

◆ updateInternal()

void updateInternal ( )
inlineprotected

Update internal.

Definition at line 78 of file ObjectParticleSystemInternal.h.

◆ updateParticles()

void updateParticles ( )
overridevirtual

Updates the particle entity.

Implements ParticleSystemEntityInternal.

Definition at line 162 of file ObjectParticleSystemInternal.cpp.

Member Data Documentation

◆ autoEmit

bool autoEmit
protected

Definition at line 59 of file ObjectParticleSystemInternal.h.

◆ boundingBox

BoundingBox boundingBox
protected

Definition at line 65 of file ObjectParticleSystemInternal.h.

◆ boundingBoxTransformed

BoundingBox boundingBoxTransformed
protected

Definition at line 66 of file ObjectParticleSystemInternal.h.

◆ contributesShadows

bool contributesShadows
protected

Definition at line 60 of file ObjectParticleSystemInternal.h.

◆ effectColorAdd

Color4 effectColorAdd
protected

Definition at line 71 of file ObjectParticleSystemInternal.h.

◆ effectColorMul

Color4 effectColorMul
protected

Definition at line 70 of file ObjectParticleSystemInternal.h.

◆ emitter

ParticleEmitter* emitter { nullptr }
protected

Definition at line 68 of file ObjectParticleSystemInternal.h.

◆ enabled

bool enabled
protected

Definition at line 56 of file ObjectParticleSystemInternal.h.

◆ enabledObjects

vector<Object3D*> enabledObjects
protected

Definition at line 64 of file ObjectParticleSystemInternal.h.

◆ engine

Engine* engine { nullptr }
protected

Definition at line 53 of file ObjectParticleSystemInternal.h.

◆ id

string id
protected

Definition at line 55 of file ObjectParticleSystemInternal.h.

◆ inverseTransformation

Transformations inverseTransformation
protected

Definition at line 67 of file ObjectParticleSystemInternal.h.

◆ localTransformations

Transformations localTransformations
protected

Definition at line 73 of file ObjectParticleSystemInternal.h.

◆ model

Model* model { nullptr }
protected

Definition at line 57 of file ObjectParticleSystemInternal.h.

◆ objects

vector<Object3D*> objects
protected

Definition at line 63 of file ObjectParticleSystemInternal.h.

◆ objectScale

Vector3 objectScale
protected

Definition at line 58 of file ObjectParticleSystemInternal.h.

◆ particles

vector<Particle> particles
protected

Definition at line 62 of file ObjectParticleSystemInternal.h.

◆ particlesToSpawnRemainder

float particlesToSpawnRemainder
protected

Definition at line 72 of file ObjectParticleSystemInternal.h.

◆ pickable

bool pickable
protected

Definition at line 69 of file ObjectParticleSystemInternal.h.

◆ receivesShadows

bool receivesShadows
protected

Definition at line 61 of file ObjectParticleSystemInternal.h.

◆ renderer

Renderer* renderer { nullptr }
protected

Definition at line 54 of file ObjectParticleSystemInternal.h.


The documentation for this class was generated from the following files: