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

Fog particle system. More...

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

Inheritance diagram for FogParticleSystemInternal:
Inheritance graph
Collaboration diagram for FogParticleSystemInternal:
Collaboration graph

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...
 
ParticleEmittergetEmitter () 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 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...
 
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 TransformationsgetLocalTransformations () override
 
void setLocalTransformations (const Transformations &transformations) override
 Set local transformations. More...
 
TransparentRenderPointsPoolgetRenderPointsPool ()
 
- 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 bounding volume. More...
 

Protected Attributes

string id
 
Engineengine { nullptr }
 
Rendererrenderer { nullptr }
 
bool enabled
 
bool active
 
ParticleEmitteremitter { nullptr }
 
vector< Particleparticles
 
int32_t maxPoints
 
float pointSize
 
float pointSizeScale
 
Texturetexture { nullptr }
 
int32_t textureId
 
int32_t textureHorizontalSprites
 
int32_t textureVerticalSprites
 
float fps
 
TransparentRenderPointsPoolpointsRenderPool { nullptr }
 
BoundingBox boundingBox
 
BoundingBox boundingBoxTransformed
 
Color4 effectColorMul
 
Color4 effectColorAdd
 
bool pickable
 
Transformations localTransformations
 

Detailed Description

Fog particle system.

Author
Andreas Drewke
Version
$Id$

Definition at line 43 of file FogParticleSystemInternal.h.

Constructor & Destructor Documentation

◆ FogParticleSystemInternal()

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.

Parameters
idid
emitteremitter
maxPointsmax points
pointSizepoint size
texturetexture
textureHorizontalSpritestexture horizonal sprites
textureVerticalSpritestexture vertical sprites
fpsframes per seconds

Definition at line 45 of file FogParticleSystemInternal.cpp.

◆ ~FogParticleSystemInternal()

Destructor.

Definition at line 67 of file FogParticleSystemInternal.cpp.

Member Function Documentation

◆ dispose()

void dispose ( )

Definition at line 230 of file FogParticleSystemInternal.cpp.

◆ emitParticles()

int32_t emitParticles ( )
inlineoverridevirtual

Adds particles to this particle entity at given position.

Implements ParticleSystemEntityInternal.

Definition at line 243 of file FogParticleSystemInternal.h.

◆ fromTransformations()

void fromTransformations ( const Transformations transformations)
overridevirtual

Set up this transformations from given transformations.

Parameters
transformationstransformations

Implements ParticleSystemEntityInternal.

Definition at line 154 of file FogParticleSystemInternal.cpp.

◆ getEffectColorAdd()

const Color4 & getEffectColorAdd ( ) const
inlineoverridevirtual

The effect color will be added to fragment color.

Returns
effect color

Implements ParticleSystemEntityInternal.

Definition at line 156 of file FogParticleSystemInternal.h.

◆ getEffectColorMul()

const Color4 & getEffectColorMul ( ) const
inlineoverridevirtual

The effect color will be multiplied with fragment color.

Returns
effect color

Implements ParticleSystemEntityInternal.

Definition at line 148 of file FogParticleSystemInternal.h.

◆ getEmitter()

ParticleEmitter * getEmitter ( )
inlineoverridevirtual
Returns
particle emitter

Implements ParticleSystemEntityInternal.

Definition at line 112 of file FogParticleSystemInternal.h.

◆ getId()

const string & getId ( )
inlineoverridevirtual
Returns
object id

Implements ParticleSystemEntityInternal.

Definition at line 116 of file FogParticleSystemInternal.h.

◆ getLocalTransformations()

const Transformations & getLocalTransformations ( )
inlineoverridevirtual
Returns
local transformations

Implements ParticleSystemEntityInternal.

Definition at line 246 of file FogParticleSystemInternal.h.

◆ getPointSize()

float getPointSize ( )
inline
Returns
point size

Definition at line 213 of file FogParticleSystemInternal.h.

◆ getRenderPointsPool()

TransparentRenderPointsPool * getRenderPointsPool ( )
inline
Returns
render points pool

Definition at line 257 of file FogParticleSystemInternal.h.

◆ getTextureHorizontalSprites()

int32_t getTextureHorizontalSprites ( )
inline
Returns
texture horizontal sprites

Definition at line 227 of file FogParticleSystemInternal.h.

◆ getTextureId()

int32_t getTextureId ( )
inline
Returns
texture id

Definition at line 220 of file FogParticleSystemInternal.h.

◆ getTextureVerticalSprites()

int32_t getTextureVerticalSprites ( )
inline
Returns
texture vertical sprites

Definition at line 234 of file FogParticleSystemInternal.h.

◆ initialize()

void initialize ( )

Initialize.

Definition at line 71 of file FogParticleSystemInternal.cpp.

◆ isActive()

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

Implements ParticleSystemEntityInternal.

Definition at line 140 of file FogParticleSystemInternal.h.

◆ isAutoEmit()

bool isAutoEmit ( )
inlineoverridevirtual
Returns
if auto emit is enabled

Implements ParticleSystemEntityInternal.

Definition at line 172 of file FogParticleSystemInternal.h.

◆ isContributesShadows()

bool isContributesShadows ( )
inline
Returns
if entity contributes to shadows

Definition at line 183 of file FogParticleSystemInternal.h.

◆ isEnabled()

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

Implements ParticleSystemEntityInternal.

Definition at line 136 of file FogParticleSystemInternal.h.

◆ isPickable()

bool isPickable ( )
inlineoverridevirtual
Returns
if object is pickable

Implements ParticleSystemEntityInternal.

Definition at line 164 of file FogParticleSystemInternal.h.

◆ isReceivesShadows()

bool isReceivesShadows ( )
inline
Returns
if entity receives shadows

Definition at line 198 of file FogParticleSystemInternal.h.

◆ setAutoEmit()

void setAutoEmit ( bool  autoEmit)
inlineoverridevirtual

Set auto emit.

Parameters
autoEmitauto emit

Implements ParticleSystemEntityInternal.

Definition at line 176 of file FogParticleSystemInternal.h.

◆ setContributesShadows()

void setContributesShadows ( bool  contributesShadows)
inline

Enable/disable contributes shadows.

Parameters
contributesShadowscontributes shadows

Definition at line 191 of file FogParticleSystemInternal.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 160 of file FogParticleSystemInternal.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 152 of file FogParticleSystemInternal.h.

◆ setEnabled()

void setEnabled ( bool  enabled)
inlineoverridevirtual

Enable/disable rendering.

Parameters
enabledenabled

Implements ParticleSystemEntityInternal.

Definition at line 144 of file FogParticleSystemInternal.h.

◆ setEngine()

void setEngine ( Engine engine)
inline

Set engine.

Parameters
engineengine

Definition at line 132 of file FogParticleSystemInternal.h.

◆ setLocalTransformations()

void setLocalTransformations ( const Transformations transformations)
inlineoverridevirtual

Set local transformations.

Parameters
transformationslocal transformations

Implements ParticleSystemEntityInternal.

Definition at line 249 of file FogParticleSystemInternal.h.

◆ setPickable()

void setPickable ( bool  pickable)
inlineoverridevirtual

Set this object pickable.

Parameters
pickablepickable

Implements ParticleSystemEntityInternal.

Definition at line 168 of file FogParticleSystemInternal.h.

◆ setReceivesShadows()

void setReceivesShadows ( bool  receivesShadows)
inline

Enable/disable receives shadows.

Parameters
receivesShadowsreceives shadows

Definition at line 206 of file FogParticleSystemInternal.h.

◆ setRenderer()

void setRenderer ( Renderer renderer)
inline

Set renderer.

Parameters
rendererrenderer

Definition at line 124 of file FogParticleSystemInternal.h.

◆ update()

void update ( )
overridevirtual

Update transformations.

Implements ParticleSystemEntityInternal.

Definition at line 160 of file FogParticleSystemInternal.cpp.

◆ updateInternal()

void updateInternal ( )
inlineprotected

Update bounding volume.

Definition at line 77 of file FogParticleSystemInternal.h.

◆ updateParticles()

void updateParticles ( )
overridevirtual

Updates the particle entity.

Implements ParticleSystemEntityInternal.

Definition at line 166 of file FogParticleSystemInternal.cpp.

Member Data Documentation

◆ active

bool active
protected

Definition at line 53 of file FogParticleSystemInternal.h.

◆ boundingBox

BoundingBox boundingBox
protected

Definition at line 66 of file FogParticleSystemInternal.h.

◆ boundingBoxTransformed

BoundingBox boundingBoxTransformed
protected

Definition at line 67 of file FogParticleSystemInternal.h.

◆ effectColorAdd

Color4 effectColorAdd
protected

Definition at line 69 of file FogParticleSystemInternal.h.

◆ effectColorMul

Color4 effectColorMul
protected

Definition at line 68 of file FogParticleSystemInternal.h.

◆ emitter

ParticleEmitter* emitter { nullptr }
protected

Definition at line 54 of file FogParticleSystemInternal.h.

◆ enabled

bool enabled
protected

Definition at line 52 of file FogParticleSystemInternal.h.

◆ engine

Engine* engine { nullptr }
protected

Definition at line 50 of file FogParticleSystemInternal.h.

◆ fps

float fps
protected

Definition at line 63 of file FogParticleSystemInternal.h.

◆ id

string id
protected

Definition at line 49 of file FogParticleSystemInternal.h.

◆ localTransformations

Transformations localTransformations
protected

Definition at line 72 of file FogParticleSystemInternal.h.

◆ maxPoints

int32_t maxPoints
protected

Definition at line 56 of file FogParticleSystemInternal.h.

◆ particles

vector<Particle> particles
protected

Definition at line 55 of file FogParticleSystemInternal.h.

◆ pickable

bool pickable
protected

Definition at line 70 of file FogParticleSystemInternal.h.

◆ pointSize

float pointSize
protected

Definition at line 57 of file FogParticleSystemInternal.h.

◆ pointSizeScale

float pointSizeScale
protected

Definition at line 58 of file FogParticleSystemInternal.h.

◆ pointsRenderPool

TransparentRenderPointsPool* pointsRenderPool { nullptr }
protected

Definition at line 64 of file FogParticleSystemInternal.h.

◆ renderer

Renderer* renderer { nullptr }
protected

Definition at line 51 of file FogParticleSystemInternal.h.

◆ texture

Texture* texture { nullptr }
protected

Definition at line 59 of file FogParticleSystemInternal.h.

◆ textureHorizontalSprites

int32_t textureHorizontalSprites
protected

Definition at line 61 of file FogParticleSystemInternal.h.

◆ textureId

int32_t textureId
protected

Definition at line 60 of file FogParticleSystemInternal.h.

◆ textureVerticalSprites

int32_t textureVerticalSprites
protected

Definition at line 62 of file FogParticleSystemInternal.h.


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