TDME2 1.9.121
|
Points particle system. More...
#include <tdme/engine/subsystems/particlesystem/PointsParticleSystemInternal.h>
Public Member Functions | |
PointsParticleSystemInternal (const string &id, ParticleEmitter *emitter, int32_t maxPoints, float pointSize, bool autoEmit, Texture *texture=nullptr, int32_t textureHorizontalSprites=1, int32_t textureVerticalSprites=1, float fps=10.0f) | |
Public constructor. More... | |
virtual | ~PointsParticleSystemInternal () |
Destructor. More... | |
void | initialize () |
Initialize. More... | |
ParticleEmitter * | getEmitter () override |
const string & | getId () override |
void | setRenderer (Renderer *renderer) |
void | setEngine (Engine *engine) |
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 | autoEmit |
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 |
Transformations | inverseTransformation |
Color4 | effectColorMul |
Color4 | effectColorAdd |
bool | pickable |
float | particlesToSpawnRemainder |
Transformations | localTransformations |
PointsParticleSystemInternal | ( | const string & | id, |
ParticleEmitter * | emitter, | ||
int32_t | maxPoints, | ||
float | pointSize, | ||
bool | autoEmit, | ||
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 |
autoEmit | auto emit |
texture | texture |
textureHorizonalSprites | texture horizonal sprites |
textureVerticalSprites | texture vertical sprites |
fps | frames per seconds |
Definition at line 47 of file PointsParticleSystemInternal.cpp.
|
virtual |
Destructor.
Definition at line 73 of file PointsParticleSystemInternal.cpp.
void dispose | ( | ) |
Definition at line 188 of file PointsParticleSystemInternal.cpp.
|
overridevirtual |
Adds particles to this particle entity at given position.
Implements ParticleSystemEntityInternal.
Definition at line 192 of file PointsParticleSystemInternal.cpp.
|
overridevirtual |
Set up this transformations from given transformations.
transformations | transformations |
Implements ParticleSystemEntityInternal.
Definition at line 90 of file PointsParticleSystemInternal.cpp.
|
inlineoverridevirtual |
The effect color will be added to fragment color.
Implements ParticleSystemEntityInternal.
Definition at line 148 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
The effect color will be multiplied with fragment color.
Implements ParticleSystemEntityInternal.
Definition at line 142 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 120 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 124 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 233 of file PointsParticleSystemInternal.h.
|
inline |
Definition at line 200 of file PointsParticleSystemInternal.h.
TransparentRenderPointsPool * getRenderPointsPool | ( | ) |
Definition at line 242 of file PointsParticleSystemInternal.cpp.
|
inline |
Definition at line 214 of file PointsParticleSystemInternal.h.
|
inline |
Definition at line 207 of file PointsParticleSystemInternal.h.
|
inline |
Definition at line 221 of file PointsParticleSystemInternal.h.
void initialize | ( | ) |
Initialize.
Definition at line 80 of file PointsParticleSystemInternal.cpp.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 136 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 160 of file PointsParticleSystemInternal.h.
|
inline |
Definition at line 170 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 133 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Implements ParticleSystemEntityInternal.
Definition at line 154 of file PointsParticleSystemInternal.h.
|
inline |
Definition at line 185 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Set auto emit.
autoEmit | auto emit |
Implements ParticleSystemEntityInternal.
Definition at line 163 of file PointsParticleSystemInternal.h.
|
inline |
Enable/disable contributes shadows.
contributesShadows | contributes shadows |
Definition at line 178 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Set the effect color that will be added to fragment color.
effectColorAdd | effect color |
Implements ParticleSystemEntityInternal.
Definition at line 151 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Set the effect color that will be multiplied with fragment color.
effectColorMul | effect color |
Implements ParticleSystemEntityInternal.
Definition at line 145 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Enable/disable rendering.
enabled | enabled |
Implements ParticleSystemEntityInternal.
Definition at line 139 of file PointsParticleSystemInternal.h.
|
inline |
Definition at line 130 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Set local transformations.
transformations | local transformations |
Implements ParticleSystemEntityInternal.
Definition at line 236 of file PointsParticleSystemInternal.h.
|
inlineoverridevirtual |
Set this object pickable.
pickable | pickable |
Implements ParticleSystemEntityInternal.
Definition at line 157 of file PointsParticleSystemInternal.h.
|
inline |
Enable/disable receives shadows.
receivesShadows | receives shadows |
Definition at line 193 of file PointsParticleSystemInternal.h.
|
inline |
Definition at line 127 of file PointsParticleSystemInternal.h.
|
overridevirtual |
Update transformations.
Implements ParticleSystemEntityInternal.
Definition at line 84 of file PointsParticleSystemInternal.cpp.
|
inlineprotected |
Update bounding volume.
Definition at line 83 of file PointsParticleSystemInternal.h.
|
overridevirtual |
Updates the particle entity.
Implements ParticleSystemEntityInternal.
Definition at line 96 of file PointsParticleSystemInternal.cpp.
|
protected |
Definition at line 57 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 55 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 70 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 71 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 74 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 73 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 58 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 56 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 53 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 67 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 52 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 72 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 78 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 60 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 59 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 76 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 75 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 61 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 62 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 68 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 54 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 63 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 65 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 64 of file PointsParticleSystemInternal.h.
|
protected |
Definition at line 66 of file PointsParticleSystemInternal.h.