TDME2 1.9.121
EntityHierarchy.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11using std::string;
12
18
19EntityHierarchy::EntityHierarchy(const string& id): id(id)
20{
21 this->enabled = true;
22 this->pickable = false;
23 this->contributesShadows = false;
24 this->receivesShadows = false;
25 this->effectColorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
26 this->effectColorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
27}
28
30{
31 for (auto entity: entities) delete entity;
32}
33
35{
36 if (this->engine != nullptr) this->engine->deregisterEntity(this);
37 this->engine = engine;
38 if (engine != nullptr) engine->registerEntity(this);
39 for (auto entity: entities) entity->setEngine(engine);
40}
41
43{
44 this->renderer = renderer;
45 for (auto entity: entities) entity->setRenderer(renderer);
46}
47
49 auto entityHierarchyLevel = getEntityHierarchyLevel(id);
50 if (entityHierarchyLevel == nullptr || entityHierarchyLevel->parent == nullptr) return nullptr;
51 return entityHierarchyLevel->entity;
52}
53
54void EntityHierarchy::addEntity(Entity* entity, const string& parentId) {
55 auto _entity = getEntity(entity->getId());
56 if (_entity == entity) {
57 Console::println("EntityHierarchy::addEntity(): " + entity->getId() + ": entity already added!");
58 return;
59 }
60
61 //
62 removeEntity(entity->getId());
63
64 // base properties
65 entity->setParentEntity(this);
66 entity->setEngine(engine);
67 entity->setRenderer(renderer);
68 entity->setPickable(pickable);
73 if (initialized == true) entity->initialize();
74
75 // add to hierarchy
76 auto parentEntityHierarchyLevel = getEntityHierarchyLevel(parentId);
77 if (parentEntityHierarchyLevel == nullptr) {
78 Console::println("EntityHierarchy::addEntity(): parent '" + parentId + "': not found");
79 return;
80 }
81 EntityHierarchyLevel childEntityHierarchyLevel;
82 childEntityHierarchyLevel.id = entity->getId();
83 childEntityHierarchyLevel.parent = parentEntityHierarchyLevel;
84 childEntityHierarchyLevel.entity = entity;
85 parentEntityHierarchyLevel->children[entity->getId()] = childEntityHierarchyLevel;
86
87 // and entities
88 entities.push_back(entity);
89}
90
91void EntityHierarchy::removeEntity(const string& id) {
92 // remove from hierarchy and entities
93 auto entityHierarchyLevel = getEntityHierarchyLevel(id);
94 if (entityHierarchyLevel == nullptr || entityHierarchyLevel->parent == nullptr) {
95 return;
96 }
97
98 //
99 vector<string> children;
100 for (auto& childIt: entityHierarchyLevel->children) children.push_back(childIt.first);
101 for (auto child: children) removeEntity(child);
102
103 //
104 auto entity = entityHierarchyLevel->entity;
105 entities.erase(remove(entities.begin(), entities.end(), entity), entities.end());
106 entityHierarchyLevel->parent->children.erase(id);
107
108 //
109 if (engine != nullptr) engine->removeEntityFromLists(entity);
110
111 // dispose
112 entity->dispose();
113 delete entity;
114}
115
116const vector<Entity*> EntityHierarchy::query(const string& parentId) {
117 vector<Entity*> entities;
118 auto parentEntityHierarchyLevel = getEntityHierarchyLevel(parentId);
119 if (parentEntityHierarchyLevel == nullptr) {
120 return entities;
121 }
122 for (auto entityIt: parentEntityHierarchyLevel->children) {
123 entities.push_back(entityIt.second.entity);
124 }
125 return entities;
126}
127
128void EntityHierarchy::updateHierarchy(const Transformations& parentTransformations, EntityHierarchyLevel& entityHierarchyLevel, int depth, bool& firstEntity) {
129 for (auto entityIt: entityHierarchyLevel.children) {
130 auto entity = entityIt.second.entity;
131 entity->update();
132 if (firstEntity == true) {
133 boundingBox = entity->getBoundingBoxTransformed();
134 firstEntity = false;
135 } else {
136 boundingBox.extend(entity->getBoundingBoxTransformed());
137 }
138 entity->applyParentTransformations(parentTransformations);
139 }
140 for (auto& childIt: entityHierarchyLevel.children) {
141 updateHierarchy(childIt.second.entity->getTransformations(), childIt.second, depth + 1, firstEntity);
142 }
143 if (depth == 0) {
144 // bounding boxes
147 // update entity
148 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
149 }
150}
151
153{
155 // update hierarchy
156 auto firstEntity = true;
157 updateHierarchy(*this, entityRoot, 0, firstEntity);
158}
159
161{
163 // update hierarchy
164 auto firstEntity = true;
165 updateHierarchy(*this, entityRoot, 0, firstEntity);
166}
167
169{
170 // return if enable state has not changed
171 if (this->enabled == enabled) return;
172 // frustum if root entity
173 if (parentEntity == nullptr) {
174 // frustum culling enabled?
175 if (frustumCulling == true) {
176 // yeo, add or remove from partition
177 if (enabled == true) {
178 if (engine != nullptr) engine->partition->addEntity(this);
179 } else {
180 if (engine != nullptr) engine->partition->removeEntity(this);
181 }
182 }
183 }
184}
185
187 return frustumCulling;
188}
189
190void EntityHierarchy::setFrustumCulling(bool frustumCulling) {
191 // check if enabled and engine attached
192 if (enabled == true && engine != nullptr) {
193 // had frustum culling
194 if (this->frustumCulling == true) {
195 // yep, remove if set to false now
196 if (frustumCulling == false) engine->partition->removeEntity(this);
197 } else {
198 // yep, add if set to true now
199 if (frustumCulling == true) engine->partition->addEntity(this);
200 }
201 }
202 this->frustumCulling = frustumCulling;
203 // delegate change to engine
204 if (engine != nullptr) engine->registerEntity(this);
205}
206
208{
209 //
210 initialized = false;
211 // delegate to objects
212 for (auto entity: entities) entity->dispose();
213}
214
216{
217 //
218 initialized = true;
219 // delegate to objects
220 for (auto entity: entities) entity->initialize();
221}
Engine main class.
Definition: Engine.h:122
void deregisterEntity(Entity *entity)
Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy o...
Definition: Engine.cpp:392
void removeEntityFromLists(Entity *entity)
Remove entity.
Definition: Engine.cpp:615
void registerEntity(Entity *entity)
Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or par...
Definition: Engine.cpp:406
Partition * partition
Definition: Engine.h:255
Entity hierarchy to be used with engine class.
void dispose() override
Dispose this object 3d.
void initialize() override
Initiates this object 3d.
void update() override
Update transformations.
void addEntity(Entity *entity, const string &parentId=string())
Adds a entity to the hierarchy.
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
EntityHierarchyLevel entityRoot
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.
void removeEntity(const string &id)
Removes a entity from hierarchy by given unique entity id.
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
Entity * getEntity(const string &id)
virtual ~EntityHierarchy()
Destructor.
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.
TDME engine entity.
Definition: Entity.h:31
virtual void setRenderer(Renderer *renderer)=0
Set up renderer.
virtual const string & getId()=0
virtual void setEngine(Engine *engine)=0
Set up engine.
virtual void setEffectColorMul(const Color4 &effectColorMul)=0
Set effect color that will be multiplied with fragment color.
virtual void initialize()=0
Initiates this object 3d.
virtual void setContributesShadows(bool contributesShadows)=0
Enable/disable contributes shadows.
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.
virtual void setParentEntity(Entity *entity)=0
Set parent entity, needs to be called before adding to engine.
Object 3D to be used with engine class.
Definition: Object3D.h:60
Transformations which contain scale, rotations and translation.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Definition: BoundingBox.cpp:79
void extend(BoundingBox *boundingBox)
Extend bounding box with given bounding box.
Definition: BoundingBox.h:148
void update()
Updates this bounding box.
map< string, EntityHierarchyLevel > children
Partition interface.
Definition: Partition.h:19
virtual void updateEntity(Entity *entity)=0
Updates a entity.
virtual void addEntity(Entity *entity)=0
Adds a entity.
virtual void removeEntity(Entity *entity)=0
Removes a entity.