TDME2 1.9.121
|
Particle system which displays objects as particles. More...
#include <tdme/engine/subsystems/particlesystem/ObjectParticleSystemInternal.h>
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... | |
ParticleEmitter * | getEmitter () 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 Color4 & | getEffectColorMul () 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 Color4 & | getEffectColorAdd () 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 Transformations & | getLocalTransformations () override |
void | setLocalTransformations (const Transformations &transformations) override |
Set local transformations. More... | |
![]() | |
Transformations () | |
Public constructor. More... | |
virtual | ~Transformations () |
Destructor. More... | |
const Vector3 & | getTranslation () const |
void | setTranslation (const Vector3 &translation) |
Set translation. More... | |
const Vector3 & | getScale () const |
void | setScale (const Vector3 &scale) |
Set scale. More... | |
const Vector3 & | getPivot () const |
void | setPivot (const Vector3 &pivot) |
Set pivot. More... | |
const int | getRotationCount () const |
Rotation & | getRotation (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 Vector3 & | getRotationAxis (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 Quaternion & | getRotationsQuaternion () const |
const Matrix4x4 & | getTransformationsMatrix () 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... | |
![]() | |
virtual | ~ParticleSystemEntityInternal () |
Public destructor. More... | |
virtual ParticleEmitter * | getEmitter ()=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 Color4 & | getEffectColorMul () 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 Color4 & | getEffectColorAdd () 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 Transformations & | getLocalTransformations ()=0 |
virtual void | setLocalTransformations (const Transformations &transformations)=0 |
Set local transformations. More... | |
Protected Member Functions | |
void | updateInternal () |
Update internal. More... | |
Protected Attributes | |
Engine * | engine { nullptr } |
Renderer * | renderer { nullptr } |
string | id |
bool | enabled |
Model * | model { nullptr } |
Vector3 | objectScale |
bool | autoEmit |
bool | contributesShadows |
bool | receivesShadows |
vector< Particle > | particles |
vector< Object3D * > | objects |
vector< Object3D * > | enabledObjects |
BoundingBox | boundingBox |
BoundingBox | boundingBoxTransformed |
Transformations | inverseTransformation |
ParticleEmitter * | emitter { nullptr } |
bool | pickable |
Color4 | effectColorMul |
Color4 | effectColorAdd |
float | particlesToSpawnRemainder |
Transformations | localTransformations |
Particle system which displays objects as particles.
Definition at line 48 of file ObjectParticleSystemInternal.h.
ObjectParticleSystemInternal | ( | const string & | id, |
Model * | model, | ||
const Vector3 & | scale, | ||
bool | autoEmit, | ||
bool | contributesShadows, | ||
bool | receivesShadows, | ||
int32_t | maxCount, | ||
ParticleEmitter * | emitter | ||
) |
Public constructor.
id | id |
model | model |
scale | scale |
autoEmit | auto emit |
contributesShadows | enable contributes shadows |
receivesShadows | enable receives shadows |
maxCount | maxCount |
emitter | emitter |
Definition at line 48 of file ObjectParticleSystemInternal.cpp.
|
virtual |
Destructor.
Definition at line 82 of file ObjectParticleSystemInternal.cpp.
void dispose | ( | ) |
Definition at line 231 of file ObjectParticleSystemInternal.cpp.
|
overridevirtual |
Adds particles to this particle entity at given position.
Implements ParticleSystemEntityInternal.
Definition at line 120 of file ObjectParticleSystemInternal.cpp.
|
overridevirtual |
Set up this transformations from given transformations.
transformations | transformations |
Implements ParticleSystemEntityInternal.
Definition at line 114 of file ObjectParticleSystemInternal.cpp.
|
inlineoverridevirtual |
The effect color will be added to fragment color.
Implements ParticleSystemEntityInternal.
Definition at line 133 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
The effect color will be multiplied with fragment color.
Implements ParticleSystemEntityInternal.
Definition at line 127 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 111 of file ObjectParticleSystemInternal.h.
|
overridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 87 of file ObjectParticleSystemInternal.cpp.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 193 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 121 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 145 of file ObjectParticleSystemInternal.h.
|
inline |
Definition at line 155 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 118 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 139 of file ObjectParticleSystemInternal.h.
|
inline |
Definition at line 171 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Set auto emit.
autoEmit | auto emit |
Implements ParticleSystemEntityInternal.
Definition at line 148 of file ObjectParticleSystemInternal.h.
|
inline |
Enable/disable contributes shadows.
contributesShadows | contributes shadows |
Definition at line 163 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Set the effect color that will be added to fragment color.
effectColorAdd | effect color |
Implements ParticleSystemEntityInternal.
Definition at line 136 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Set the effect color that will be multiplied with fragment color.
effectColorMul | effect color |
Implements ParticleSystemEntityInternal.
Definition at line 130 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Enable/disable rendering.
enabled | enabled |
Implements ParticleSystemEntityInternal.
Definition at line 124 of file ObjectParticleSystemInternal.h.
void setEngine | ( | Engine * | engine | ) |
Definition at line 92 of file ObjectParticleSystemInternal.cpp.
|
inlineoverridevirtual |
Set local transformations.
transformations | local transformations |
Implements ParticleSystemEntityInternal.
Definition at line 196 of file ObjectParticleSystemInternal.h.
|
inlineoverridevirtual |
Set this object pickable.
pickable | pickable |
Implements ParticleSystemEntityInternal.
Definition at line 142 of file ObjectParticleSystemInternal.h.
|
inline |
Enable/disable receives shadows.
receivesShadows | receives shadows |
Definition at line 179 of file ObjectParticleSystemInternal.h.
void setRenderer | ( | Renderer * | renderer | ) |
Definition at line 100 of file ObjectParticleSystemInternal.cpp.
|
overridevirtual |
Update transformations.
Implements ParticleSystemEntityInternal.
Definition at line 108 of file ObjectParticleSystemInternal.cpp.
|
inlineprotected |
Update internal.
Definition at line 78 of file ObjectParticleSystemInternal.h.
|
overridevirtual |
Updates the particle entity.
Implements ParticleSystemEntityInternal.
Definition at line 162 of file ObjectParticleSystemInternal.cpp.
|
protected |
Definition at line 59 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 65 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 66 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 60 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 71 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 70 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 68 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 56 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 64 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 53 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 55 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 67 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 73 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 57 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 63 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 58 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 62 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 72 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 69 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 61 of file ObjectParticleSystemInternal.h.
|
protected |
Definition at line 54 of file ObjectParticleSystemInternal.h.