TDME2 1.9.121
EntityHierarchy.h
Go to the documentation of this file.
1#pragma once
2
3#include <algorithm>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
16#include <tdme/engine/Camera.h>
17#include <tdme/engine/Entity.h>
21#include <tdme/math/fwd-tdme.h>
23
24using std::map;
25using std::remove;
26using std::string;
27using std::to_string;
28using std::vector;
29
43
44/**
45 * Entity hierarchy to be used with engine class
46 * @author Andreas Drewke
47 * @version $Id$
48 */
50 public Transformations,
51 public Entity
52{
53private:
55 string id;
57 Entity* entity { nullptr };
58 // TODO: change to unordered_map and pointers to EntityHierarchyLevel
59 map<string, EntityHierarchyLevel> children;
60 };
61 Engine* engine { nullptr };
62 Renderer* renderer { nullptr };
63 Entity* parentEntity { nullptr };
64 bool frustumCulling { true };
65 bool initialized { false };
66
67 string id;
68 bool enabled;
76 vector<Entity*> entities;
78
80
81 // overridden methods
82 inline void setParentEntity(Entity* entity) override {
83 this->parentEntity = entity;
84 }
85 inline Entity* getParentEntity() override {
86 return parentEntity;
87 }
88 inline void applyParentTransformations(const Transformations& parentTransformations) override {
91 }
92
93 /**
94 * Get entity hierarchy level by given entity id
95 */
97 if (id.empty()) return &entityRoot;
99 }
100
101 /**
102 * Retrieve entity hierarchy level by given entity id or nullptr if not found
103 * @param entityHierarchyLevel entity hierarchy level
104 * @param id entity id
105 * @return entity hierarchy level by given entity id or nullptr if not found
106 */
107 inline EntityHierarchyLevel* getEntityHierarchyLevel(EntityHierarchyLevel* entityHierarchyLevel, const string& id) {
108 if (id == entityHierarchyLevel->id) return entityHierarchyLevel;
109 for (auto& it: entityHierarchyLevel->children) {
110 auto childEntityHierarchyLevel = getEntityHierarchyLevel(&it.second, id);
111 if (childEntityHierarchyLevel != nullptr) return childEntityHierarchyLevel;
112 }
113 return nullptr;
114 }
115
116 /**
117 * Update hierarchy from given entity hierarchy level ongoing
118 * @param parentTransformations parent transformations
119 * @param entityHierarchyLevel entity hierarchy level
120 * @param depth depth
121 * @param firstEntity first entity
122 */
123 void updateHierarchy(const Transformations& parentTransformations, EntityHierarchyLevel& entityHierarchyLevel, int depth, bool& firstEntity);
124
125public:
126 /**
127 * Public constructor
128 * @param id id
129 */
130 EntityHierarchy(const string& id);
131
132 /**
133 * Destructor
134 */
135 virtual ~EntityHierarchy();
136
137 // overridden method
138 inline EntityType getEntityType() override {
140 }
141
142 /**
143 * @return entity from hierarchy by given unique id
144 */
145 Entity* getEntity(const string& id);
146
147 /**
148 * Adds a entity to the hierarchy
149 * @param entity entity to add
150 * @param parentId parent entity id to add entity to
151 */
152 void addEntity(Entity* entity, const string& parentId = string());
153
154 /**
155 * Removes a entity from hierarchy by given unique entity id
156 */
157 void removeEntity(const string& id);
158
159 /**
160 * Query direct sub entities for given parent entity id
161 * @param parentId parent id to entities from
162 * @return entities
163 */
164 const vector<Entity*> query(const string& parentId = string());
165
166 /**
167 * @return entities
168 */
169 inline const vector<Entity*>& getEntities() {
170 return entities;
171 }
172
173 /**
174 * Returns first found entity with given entity type
175 * @param entityType entity type
176 * @return entity
177 */
178 inline Entity* getEntityByType(EntityType entityType) {
179 for (auto entity: entities) {
180 if (entity->getEntityType() == entityType) {
181 return entity;
182 }
183 }
184 return nullptr;
185 }
186
187 /**
188 * Return entities with given entity type
189 * @param entityType entity type
190 * @return entities by type
191 */
192 inline vector<Entity*> getEntitiesByType(EntityType entityType) {
193 vector<Entity*> entitiesByType;
194 for (auto entity: entities) {
195 if (entity->getEntityType() == entityType) {
196 entitiesByType.push_back(entity);
197 }
198 }
199 return entitiesByType;
200 }
201
202 // overridden methods
203 void setEngine(Engine* engine) override;
204 void setRenderer(Renderer* renderer) override;
205 void initialize() override;
206 void dispose() override;
207
208 inline bool isEnabled() override {
209 return enabled;
210 }
211
212 void setEnabled(bool enabled) override;
213 bool isFrustumCulling() override;
214 void setFrustumCulling(bool frustumCulling) override;
215 void fromTransformations(const Transformations& transformations) override;
216 void update() override;
217
218 inline BoundingBox* getBoundingBox() override {
219 return &boundingBox;
220 }
221
224 }
225
226 inline const Color4& getEffectColorMul() const override {
227 return effectColorMul;
228 }
229
230 inline void setEffectColorMul(const Color4& effectColorMul) override {
231 this->effectColorMul = effectColorMul;
232 for (auto entity: entities) entity->setEffectColorMul(effectColorMul);
233 }
234
235 inline const Color4& getEffectColorAdd() const override {
236 return effectColorAdd;
237 }
238
239 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
240 this->effectColorAdd = effectColorAdd;
241 for (auto entity: entities) entity->setEffectColorAdd(effectColorAdd);
242 }
243
244 inline const string& getId() override {
245 return id;
246 }
247
248 inline bool isContributesShadows() override {
249 return contributesShadows;
250 }
251
252 inline void setContributesShadows(bool contributesShadows) override {
253 this->contributesShadows = contributesShadows;
254 for (auto entity: entities) entity->setContributesShadows(contributesShadows);
255 }
256
257 inline bool isReceivesShadows() override {
258 return receivesShadows;
259 }
260
261 inline void setReceivesShadows(bool receivesShadows) override {
262 this->receivesShadows = receivesShadows;
263 for (auto entity: entities) entity->setReceivesShadows(receivesShadows);
264 }
265
266 inline bool isPickable() override {
267 return pickable;
268 }
269
270 inline void setPickable(bool pickable) override {
271 this->pickable = pickable;
272 for (auto entity: entities) entity->setPickable(pickable);
273 }
274
275 inline const Vector3& getTranslation() const override {
277 }
278
279 inline void setTranslation(const Vector3& translation) override {
281 }
282
283 inline const Vector3& getScale() const override {
285 }
286
287 inline void setScale(const Vector3& scale) override {
289 }
290
291 inline const Vector3& getPivot() const override {
293 }
294
295 inline void setPivot(const Vector3& pivot) override {
297 }
298
299 inline const int getRotationCount() const override {
301 }
302
303 inline Rotation& getRotation(const int idx) override {
305 }
306
307 inline void addRotation(const Vector3& axis, const float angle) override {
308 Transformations::addRotation(axis, angle);
309 }
310
311 inline void removeRotation(const int idx) override {
313 }
314
315 inline const Vector3& getRotationAxis(const int idx) const override {
317 }
318
319 inline void setRotationAxis(const int idx, const Vector3& axis) override {
321 }
322
323 inline const float getRotationAngle(const int idx) const override {
325 }
326
327 inline void setRotationAngle(const int idx, const float angle) override {
329 }
330
331 inline const Quaternion& getRotationsQuaternion() const override {
333 }
334
335 inline const Matrix4x4& getTransformationsMatrix() const override {
337 }
338
339 inline const Transformations& getTransformations() const override {
340 return *this;
341 }
342
343 inline RenderPass getRenderPass() const override {
344 return renderPass;
345 }
346
347 inline void setRenderPass(RenderPass renderPass) override {
348 this->renderPass = renderPass;
349 }
350
351};
Engine main class.
Definition: Engine.h:122
Entity hierarchy to be used with engine class.
const Matrix4x4 & getTransformationsMatrix() const override
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
RenderPass getRenderPass() const override
void dispose() override
Dispose this object 3d.
void setTranslation(const Vector3 &translation) override
Set translation.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
void removeRotation(const int idx) override
Remove rotation.
const vector< Entity * > & getEntities()
void setPivot(const Vector3 &pivot) override
Set pivot.
const int getRotationCount() const override
const Quaternion & getRotationsQuaternion() const override
void initialize() override
Initiates this object 3d.
BoundingBox * getBoundingBox() override
void setRenderPass(RenderPass renderPass) override
Set render pass.
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
void addRotation(const Vector3 &axis, const float angle) override
Add rotation.
void update() override
Update transformations.
const string & getId() override
EntityHierarchyLevel * getEntityHierarchyLevel(EntityHierarchyLevel *entityHierarchyLevel, const string &id)
Retrieve entity hierarchy level by given entity id or nullptr if not found.
void setPickable(bool pickable) override
Set this object pickable.
Entity * getParentEntity() override
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
void addEntity(Entity *entity, const string &parentId=string())
Adds a entity to the hierarchy.
const Vector3 & getTranslation() const override
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
const Vector3 & getScale() const override
const Vector3 & getPivot() const override
EntityHierarchyLevel entityRoot
vector< Entity * > getEntitiesByType(EntityType entityType)
Return entities with given entity type.
BoundingBox * getBoundingBoxTransformed() override
void setScale(const Vector3 &scale) override
Set scale.
bool isContributesShadows() override
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
EntityHierarchyLevel * getEntityHierarchyLevel(const string &id)
Get entity hierarchy level by given entity id.
const vector< Entity * > query(const string &parentId=string())
Query direct sub entities for given parent entity id.
const float getRotationAngle(const int idx) const override
void removeEntity(const string &id)
Removes a entity from hierarchy by given unique entity id.
const Transformations & getTransformations() const override
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
Entity * getEntityByType(EntityType entityType)
Returns first found entity with given entity type.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
Entity * getEntity(const string &id)
EntityType getEntityType() override
const Vector3 & getRotationAxis(const int idx) const override
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
void setRotationAxis(const int idx, const Vector3 &axis) override
Set rotation axis.
Rotation & getRotation(const int idx) override
Get rotation at given index.
virtual ~EntityHierarchy()
Destructor.
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
void updateHierarchy(const Transformations &parentTransformations, EntityHierarchyLevel &entityHierarchyLevel, int depth, bool &firstEntity)
Update hierarchy from given entity hierarchy level ongoing.
void setRenderer(Renderer *renderer) override
Set up renderer.
void setRotationAngle(const int idx, const float angle) override
TDME engine entity.
Definition: Entity.h:31
virtual void setEffectColorMul(const Color4 &effectColorMul)=0
Set effect color that will be multiplied with fragment color.
virtual EntityType getEntityType()=0
virtual void setContributesShadows(bool contributesShadows)=0
Enable/disable contributes shadows.
friend class EntityHierarchy
Definition: Entity.h:33
@ ENTITYTYPE_ENTITYHIERARCHY
Definition: Entity.h:61
virtual void setPickable(bool pickable)=0
Set this object pickable.
virtual void setReceivesShadows(bool receivesShadows)=0
Enable/disable receives shadows.
virtual void setEffectColorAdd(const Color4 &effectColorAdd)=0
Set effect color that will be added to fragment color.
Object 3D to be used with engine class.
Definition: Object3D.h:60
Rotation representation.
Definition: Rotation.h:18
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
Rotation & getRotation(const int idx)
Get rotation at given index.
void setRotationAngle(const int idx, const float angle)
void setRotationAxis(const int idx, const Vector3 &axis)
Set rotation axis.
void setTranslation(const Vector3 &translation)
Set translation.
void removeRotation(const int idx)
Remove rotation.
const Quaternion & getRotationsQuaternion() const
virtual void applyParentTransformations(const Transformations &parentTransformations)
Apply parent transformations.
const Vector3 & getScale() const
void setScale(const Vector3 &scale)
Set scale.
const Vector3 & getRotationAxis(const int idx) const
const int getRotationCount() const
const Vector3 & getPivot() const
const Vector3 & getTranslation() const
void setPivot(const Vector3 &pivot)
Set pivot.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
const float getRotationAngle(const int idx) const
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Definition: BoundingBox.cpp:79
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
Console class.
Definition: Console.h:26
map< string, EntityHierarchyLevel > children