TDME2 1.9.121
|
Fog particle system. More...
#include <tdme/engine/subsystems/particlesystem/FogParticleSystemInternal.h>
Public Member Functions | |
FogParticleSystemInternal (const string &id, ParticleEmitter *emitter, int32_t maxPoints, float pointSize, Texture *texture=nullptr, int32_t textureHorizontalSprites=1, int32_t textureVerticalSprites=1, float fps=10.0f) | |
Public constructor. More... | |
virtual | ~FogParticleSystemInternal () |
Destructor. More... | |
void | initialize () |
Initialize. More... | |
ParticleEmitter * | getEmitter () override |
const string & | getId () override |
void | setRenderer (Renderer *renderer) |
Set renderer. More... | |
void | setEngine (Engine *engine) |
Set engine. More... | |
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... | |
float | getPointSize () |
int32_t | getTextureId () |
int32_t | getTextureHorizontalSprites () |
int32_t | getTextureVerticalSprites () |
void | update () override |
Update transformations. More... | |
void | fromTransformations (const Transformations &transformations) override |
Set up this transformations from given transformations. More... | |
void | updateParticles () override |
Updates the particle entity. More... | |
void | dispose () |
int32_t | emitParticles () override |
Adds particles to this particle entity at given position. More... | |
const Transformations & | getLocalTransformations () override |
void | setLocalTransformations (const Transformations &transformations) override |
Set local transformations. More... | |
TransparentRenderPointsPool * | getRenderPointsPool () |
![]() | |
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 bounding volume. More... | |
Protected Attributes | |
string | id |
Engine * | engine { nullptr } |
Renderer * | renderer { nullptr } |
bool | enabled |
bool | active |
ParticleEmitter * | emitter { nullptr } |
vector< Particle > | particles |
int32_t | maxPoints |
float | pointSize |
float | pointSizeScale |
Texture * | texture { nullptr } |
int32_t | textureId |
int32_t | textureHorizontalSprites |
int32_t | textureVerticalSprites |
float | fps |
TransparentRenderPointsPool * | pointsRenderPool { nullptr } |
BoundingBox | boundingBox |
BoundingBox | boundingBoxTransformed |
Color4 | effectColorMul |
Color4 | effectColorAdd |
bool | pickable |
Transformations | localTransformations |
FogParticleSystemInternal | ( | const string & | id, |
ParticleEmitter * | emitter, | ||
int32_t | maxPoints, | ||
float | pointSize, | ||
Texture * | texture = nullptr , |
||
int32_t | textureHorizontalSprites = 1 , |
||
int32_t | textureVerticalSprites = 1 , |
||
float | fps = 10.0f |
||
) |
Public constructor.
id | id |
emitter | emitter |
maxPoints | max points |
pointSize | point size |
texture | texture |
textureHorizontalSprites | texture horizonal sprites |
textureVerticalSprites | texture vertical sprites |
fps | frames per seconds |
Definition at line 45 of file FogParticleSystemInternal.cpp.
|
virtual |
Destructor.
Definition at line 67 of file FogParticleSystemInternal.cpp.
void dispose | ( | ) |
Definition at line 230 of file FogParticleSystemInternal.cpp.
|
inlineoverridevirtual |
Adds particles to this particle entity at given position.
Implements ParticleSystemEntityInternal.
Definition at line 243 of file FogParticleSystemInternal.h.
|
overridevirtual |
Set up this transformations from given transformations.
transformations | transformations |
Implements ParticleSystemEntityInternal.
Definition at line 154 of file FogParticleSystemInternal.cpp.
|
inlineoverridevirtual |
The effect color will be added to fragment color.
Implements ParticleSystemEntityInternal.
Definition at line 156 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
The effect color will be multiplied with fragment color.
Implements ParticleSystemEntityInternal.
Definition at line 148 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 112 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 116 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 246 of file FogParticleSystemInternal.h.
|
inline |
Definition at line 213 of file FogParticleSystemInternal.h.
|
inline |
Definition at line 257 of file FogParticleSystemInternal.h.
|
inline |
Definition at line 227 of file FogParticleSystemInternal.h.
|
inline |
Definition at line 220 of file FogParticleSystemInternal.h.
|
inline |
Definition at line 234 of file FogParticleSystemInternal.h.
void initialize | ( | ) |
Initialize.
Definition at line 71 of file FogParticleSystemInternal.cpp.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 140 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 172 of file FogParticleSystemInternal.h.
|
inline |
Definition at line 183 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 136 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 164 of file FogParticleSystemInternal.h.
|
inline |
Definition at line 198 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Set auto emit.
autoEmit | auto emit |
Implements ParticleSystemEntityInternal.
Definition at line 176 of file FogParticleSystemInternal.h.
|
inline |
Enable/disable contributes shadows.
contributesShadows | contributes shadows |
Definition at line 191 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Set the effect color that will be added to fragment color.
effectColorAdd | effect color |
Implements ParticleSystemEntityInternal.
Definition at line 160 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Set the effect color that will be multiplied with fragment color.
effectColorMul | effect color |
Implements ParticleSystemEntityInternal.
Definition at line 152 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Enable/disable rendering.
enabled | enabled |
Implements ParticleSystemEntityInternal.
Definition at line 144 of file FogParticleSystemInternal.h.
|
inline |
|
inlineoverridevirtual |
Set local transformations.
transformations | local transformations |
Implements ParticleSystemEntityInternal.
Definition at line 249 of file FogParticleSystemInternal.h.
|
inlineoverridevirtual |
Set this object pickable.
pickable | pickable |
Implements ParticleSystemEntityInternal.
Definition at line 168 of file FogParticleSystemInternal.h.
|
inline |
Enable/disable receives shadows.
receivesShadows | receives shadows |
Definition at line 206 of file FogParticleSystemInternal.h.
|
inline |
Set renderer.
renderer | renderer |
Definition at line 124 of file FogParticleSystemInternal.h.
|
overridevirtual |
Update transformations.
Implements ParticleSystemEntityInternal.
Definition at line 160 of file FogParticleSystemInternal.cpp.
|
inlineprotected |
Update bounding volume.
Definition at line 77 of file FogParticleSystemInternal.h.
|
overridevirtual |
Updates the particle entity.
Implements ParticleSystemEntityInternal.
Definition at line 166 of file FogParticleSystemInternal.cpp.
|
protected |
Definition at line 53 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 66 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 67 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 69 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 68 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 54 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 52 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 50 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 63 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 49 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 72 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 56 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 55 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 70 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 57 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 58 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 64 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 51 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 59 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 61 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 60 of file FogParticleSystemInternal.h.
|
protected |
Definition at line 62 of file FogParticleSystemInternal.h.