TDME2 1.9.121
ParticleSystemEntityInternal.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9
10using std::string;
11
15
16/**
17 * Particle system entity internal interface
18 * @author Andreas Drewke
19 * @version $Id$
20 */
22{
23
24 /**
25 * Public destructor
26 */
28
29 /**
30 * @return particle emitter
31 */
33
34 /**
35 * @return object id
36 */
37 virtual const string& getId() = 0;
38
39 /**
40 * @return true if enabled to be rendered
41 */
42 virtual bool isEnabled() = 0;
43
44 /**
45 * @return true if active / particles available
46 */
47 virtual bool isActive() = 0;
48
49 /**
50 * Enable/disable rendering
51 * @param enabled enabled
52 */
53 virtual void setEnabled(bool enabled) = 0;
54
55 /**
56 * @return if object is pickable
57 */
58 virtual bool isPickable() = 0;
59
60 /**
61 * Set this object pickable
62 * @param pickable pickable
63 */
64 virtual void setPickable(bool pickable) = 0;
65
66 /**
67 * @return if auto emit is enabled
68 */
69 virtual bool isAutoEmit() = 0;
70
71 /**
72 * Set auto emit
73 * @param autoEmit auto emit
74 */
75 virtual void setAutoEmit(bool autoEmit) = 0;
76
77 /**
78 * The effect color will be multiplied with fragment color
79 * @return effect color
80 */
81 virtual const Color4& getEffectColorMul() const = 0;
82
83 /**
84 * Set the effect color that will be multiplied with fragment color
85 * @param effectColorMul effect color
86 */
87 virtual void setEffectColorMul(const Color4& effectColorMul) = 0;
88
89 /**
90 * The effect color will be added to fragment color
91 * @return effect color
92 */
93 virtual const Color4& getEffectColorAdd() const = 0;
94
95 /**
96 * Set the effect color that will be added to fragment color
97 * @param effectColorAdd effect color
98 */
99 virtual void setEffectColorAdd(const Color4& effectColorAdd) = 0;
100
101 /**
102 * Updates the particle entity
103 */
104 virtual void updateParticles() = 0;
105
106 /**
107 * Adds particles to this particle entity at given position
108 */
109 virtual int32_t emitParticles() = 0;
110
111 /**
112 * Set up this transformations from given transformations
113 * @param transformations transformations
114 */
115 virtual void fromTransformations(const Transformations& transformations) = 0;
116
117 /**
118 * Update transformations
119 */
120 virtual void update() = 0;
121
122 /**
123 * @return local transformations
124 */
126
127 /**
128 * Set local transformations
129 * @param transformations local transformations
130 */
131 virtual void setLocalTransformations(const Transformations& transformations) = 0;
132};
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
virtual void updateParticles()=0
Updates the particle entity.
virtual void setEffectColorMul(const Color4 &effectColorMul)=0
Set the effect color that will be multiplied with fragment color.
virtual const Color4 & getEffectColorAdd() const =0
The effect color will be added to fragment color.
virtual void fromTransformations(const Transformations &transformations)=0
Set up this transformations from given transformations.
virtual int32_t emitParticles()=0
Adds particles to this particle entity at given position.
virtual void setPickable(bool pickable)=0
Set this object pickable.
virtual void setLocalTransformations(const Transformations &transformations)=0
Set local transformations.
virtual const Color4 & getEffectColorMul() const =0
The effect color will be multiplied with fragment color.
virtual void setEffectColorAdd(const Color4 &effectColorAdd)=0
Set the effect color that will be added to fragment color.
virtual void setEnabled(bool enabled)=0
Enable/disable rendering.