TDME2 1.9.121
Entity.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
12#include <tdme/math/fwd-tdme.h>
13
14using std::string;
15
24
25/**
26 * TDME engine entity
27 * @author Andreas Drewke
28 * @version $Id$
29 */
31{
32 friend class Engine;
33 friend class EntityHierarchy;
34 friend class ParticleSystemGroup;
35 friend class SceneConnector;
36
37private:
38 /**
39 * @return parent entity
40 */
41 virtual Entity* getParentEntity() = 0;
42
43 /**
44 * Set parent entity, needs to be called before adding to engine
45 * @param entity entity
46 */
47 virtual void setParentEntity(Entity* entity) = 0;
48
49 /**
50 * Apply parent transformations
51 * @param parentTransformations parent transformations
52 */
53 virtual void applyParentTransformations(const Transformations& parentTransformations) = 0;
54
55public:
56 static constexpr int RENDERPASS_MAX { 5 };
57 static constexpr int RENDERPASS_ALL { 1 + 2 + 4 + 8 + 16 };
59
73 };
74
75 /**
76 * @return entity type
77 */
79
80 /**
81 * Set up engine
82 * @param engine engine
83 */
84 virtual void setEngine(Engine* engine) = 0;
85
86 /**
87 * Set up renderer
88 * @param renderer renderer
89 */
90 virtual void setRenderer(Renderer* renderer) = 0;
91
92 /**
93 * @return object id
94 */
95 virtual const string& getId() = 0;
96
97 /**
98 * @return true if enabled to be rendered
99 */
100 virtual bool isEnabled() = 0;
101
102 /**
103 * Enable/disable rendering
104 * @param enabled enabled
105 */
106 virtual void setEnabled(bool enabled) = 0;
107
108 /**
109 * @return if frustum culling is enabled
110 */
111 virtual bool isFrustumCulling() = 0;
112
113 /**
114 * Set frustum culling
115 * @param frustumCulling frustum culling
116 */
117 virtual void setFrustumCulling(bool frustumCulling) = 0;
118
119 /**
120 * @return if object is pickable
121 */
122 virtual bool isPickable() = 0;
123
124 /**
125 * Set this object pickable
126 * @param pickable pickable
127 */
128 virtual void setPickable(bool pickable) = 0;
129
130 /**
131 * @return if entity contributes to shadows
132 */
133 virtual bool isContributesShadows() = 0;
134
135 /**
136 * Enable/disable contributes shadows
137 * @param contributesShadows contributes shadows
138 */
139 virtual void setContributesShadows(bool contributesShadows) = 0;
140
141 /**
142 * @return if entity receives shadows
143 */
144 virtual bool isReceivesShadows() = 0;
145
146 /**
147 * Enable/disable receives shadows
148 * @param receivesShadows receives shadows
149 */
150 virtual void setReceivesShadows(bool receivesShadows) = 0;
151
152 /**
153 * The effect color will be multiplied with fragment color
154 * @return effect color
155 */
156 virtual const Color4& getEffectColorMul() const = 0;
157
158 /**
159 * Set effect color that will be multiplied with fragment color
160 * @param effectColorMul effect color
161 */
162 virtual void setEffectColorMul(const Color4& effectColorMul) = 0;
163
164 /**
165 * The effect color will be added to fragment color
166 * @return effect color
167 */
168 virtual const Color4& getEffectColorAdd() const = 0;
169
170 /**
171 * Set effect color that will be added to fragment color
172 * @return effect color
173 */
174 virtual void setEffectColorAdd(const Color4& effectColorAdd) = 0;
175
176 /**
177 * Initiates this object 3d
178 */
179 virtual void initialize() = 0;
180
181 /**
182 * Dispose this object 3d
183 */
184 virtual void dispose() = 0;
185
186 /**
187 * @return bounding box / in model coordinate space
188 */
190
191 /**
192 * @return bounding box transformed / in world coordinate space
193 */
195
196 /**
197 * @return object translation
198 */
199 virtual const Vector3& getTranslation() const = 0;
200
201 /**
202 * Set translation
203 * @param translation translation
204 */
205 virtual void setTranslation(const Vector3& translation) = 0;
206
207 /**
208 * @return object scale
209 */
210 virtual const Vector3& getScale() const = 0;
211
212 /**
213 * Set scale
214 * @param scale scale
215 */
216 virtual void setScale(const Vector3& scale) = 0;
217
218 /**
219 * @return pivot or center of rotations
220 */
221 virtual const Vector3& getPivot() const = 0;
222
223 /**
224 * Set pivot
225 * @param pivot pivot
226 */
227 virtual void setPivot(const Vector3& pivot) = 0;
228
229 /**
230 * @return rotation count
231 */
232 virtual const int getRotationCount() const = 0;
233
234 /**
235 * Get rotation at given index
236 * @param idx rotation index
237 * @return rotation
238 */
239 virtual Rotation& getRotation(const int idx) = 0;
240
241 /**
242 * Add rotation
243 * @param axis axis
244 * @param angle angle
245 */
246 virtual void addRotation(const Vector3& axis, const float angle) = 0;
247
248 /**
249 * Remove rotation
250 * @param idx index
251 */
252 virtual void removeRotation(int idx) = 0;
253
254 /**
255 * @param idx rotation index
256 * @return rotation axis for rotation with given index
257 */
258 virtual const Vector3& getRotationAxis(const int idx) const = 0;
259
260 /**
261 * Set rotation axis
262 * @param idx rotation index
263 * @param axis rotation axis
264 */
265 virtual void setRotationAxis(const int idx, const Vector3& axis) = 0;
266
267 /**
268 * @param idx rotation index
269 * @return rotation angle for rotation with given index
270 */
271 virtual const float getRotationAngle(const int idx) const = 0;
272
273 /**
274 * @param idx rotation index
275 * @param angle rotation angle
276 * @return rotation angle for rotation with given index
277 */
278 virtual void setRotationAngle(const int idx, const float angle) = 0;
279
280 /**
281 * @return rotations quaternion
282 */
283 virtual const Quaternion& getRotationsQuaternion() const = 0;
284
285 /**
286 * @return this transformations matrix
287 */
288 virtual const Matrix4x4& getTransformationsMatrix() const = 0;
289
290 /**
291 * Set up this transformations from given transformations
292 * @param transformations transformations
293 */
294 virtual void fromTransformations(const Transformations& transformations) = 0;
295
296 /**
297 * Update transformations
298 */
299 virtual void update() = 0;
300
301 /**
302 * @return this transformations
303 */
304 virtual const Transformations& getTransformations() const = 0;
305
306 /**
307 * @return render pass
308 */
309 virtual RenderPass getRenderPass() const = 0;
310
311 /**
312 * Set render pass
313 * @param renderPass render pass
314 */
315 virtual void setRenderPass(RenderPass renderPass) = 0;
316
317 /**
318 * Destructor
319 */
320 virtual ~Entity() {}
321};
Engine main class.
Definition: Engine.h:122
Entity hierarchy to be used with engine class.
TDME engine entity.
Definition: Entity.h:31
virtual void addRotation(const Vector3 &axis, const float angle)=0
Add rotation.
virtual void setScale(const Vector3 &scale)=0
Set scale.
virtual const float getRotationAngle(const int idx) const =0
virtual const Matrix4x4 & getTransformationsMatrix() const =0
virtual const Vector3 & getPivot() const =0
@ RENDERPASS_POST_POSTPROCESSING
Definition: Entity.h:58
@ RENDERPASS_NOFRUSTUMCULLING
Definition: Entity.h:58
virtual bool isEnabled()=0
virtual void setRenderer(Renderer *renderer)=0
Set up renderer.
virtual const int getRotationCount() const =0
virtual const Vector3 & getTranslation() const =0
virtual void setRenderPass(RenderPass renderPass)=0
Set render pass.
virtual const Vector3 & getScale() const =0
virtual bool isContributesShadows()=0
virtual void setRotationAxis(const int idx, const Vector3 &axis)=0
Set rotation axis.
virtual const string & getId()=0
virtual bool isFrustumCulling()=0
virtual void setEngine(Engine *engine)=0
Set up engine.
virtual void setPivot(const Vector3 &pivot)=0
Set pivot.
virtual void setEffectColorMul(const Color4 &effectColorMul)=0
Set 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 setTranslation(const Vector3 &translation)=0
Set translation.
virtual EntityType getEntityType()=0
static constexpr int RENDERPASS_ALL
Definition: Entity.h:57
virtual void fromTransformations(const Transformations &transformations)=0
Set up this transformations from given transformations.
virtual void update()=0
Update transformations.
virtual const Vector3 & getRotationAxis(const int idx) const =0
virtual void setRotationAngle(const int idx, const float angle)=0
virtual void setFrustumCulling(bool frustumCulling)=0
Set frustum culling.
virtual void initialize()=0
Initiates this object 3d.
virtual BoundingBox * getBoundingBox()=0
virtual RenderPass getRenderPass() const =0
virtual void applyParentTransformations(const Transformations &parentTransformations)=0
Apply parent transformations.
static constexpr int RENDERPASS_MAX
Definition: Entity.h:56
virtual void setContributesShadows(bool contributesShadows)=0
Enable/disable contributes shadows.
virtual const Transformations & getTransformations() const =0
virtual Entity * getParentEntity()=0
virtual void dispose()=0
Dispose this object 3d.
@ ENTITYTYPE_LODOBJECT3DIMPOSTER
Definition: Entity.h:66
@ ENTITYTYPE_OBJECT3DRENDERGROUP
Definition: Entity.h:68
@ ENTITYTYPE_IMPOSTEROBJECT3D
Definition: Entity.h:63
@ ENTITYTYPE_LINESOBJECT3D
Definition: Entity.h:64
@ ENTITYTYPE_OBJECTPARTICLESYSTEM
Definition: Entity.h:70
@ ENTITYTYPE_FOGPARTICLESYSTEM
Definition: Entity.h:69
@ ENTITYTYPE_POINTSPARTICLESYSTEM
Definition: Entity.h:72
@ ENTITYTYPE_ENVIRONMENTMAPPING
Definition: Entity.h:62
@ ENTITYTYPE_PARTICLESYSTEMGROUP
Definition: Entity.h:71
@ ENTITYTYPE_ENTITYHIERARCHY
Definition: Entity.h:61
virtual ~Entity()
Destructor.
Definition: Entity.h:320
virtual void setPickable(bool pickable)=0
Set this object pickable.
virtual void setReceivesShadows(bool receivesShadows)=0
Enable/disable receives shadows.
virtual bool isPickable()=0
virtual Rotation & getRotation(const int idx)=0
Get rotation at given index.
virtual BoundingBox * getBoundingBoxTransformed()=0
virtual const Color4 & getEffectColorMul() const =0
The effect color will be multiplied with fragment color.
virtual void setEffectColorAdd(const Color4 &effectColorAdd)=0
Set effect color that will be added to fragment color.
virtual void setEnabled(bool enabled)=0
Enable/disable rendering.
virtual bool isReceivesShadows()=0
virtual const Quaternion & getRotationsQuaternion() const =0
virtual void removeRotation(int idx)=0
Remove rotation.
virtual void setParentEntity(Entity *entity)=0
Set parent entity, needs to be called before adding to engine.
Particle system group, which combines several particle systems into a group, to be used with engine c...
Rotation representation.
Definition: Rotation.h:18
Scene engine/physics connector.
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22