TDME2 1.9.121
Scene.cpp
Go to the documentation of this file.
2
3#include <algorithm>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
21#include <tdme/math/Vector3.h>
22#include <tdme/math/Vector4.h>
24
25using std::map;
26using std::remove;
27using std::string;
28using std::vector;
29
46
47Scene::Scene(const string& name, const string& description): BaseProperties(name, description)
48{
50 fileName = "untitled.tscene";
51 rotationOrder = RotationOrder::XYZ;
52 lights.push_back(new SceneLight(0));
53 auto light = lights[0];
54 light->setAmbient(Color4(0.7f, 0.7f, 0.7f, 1.0f));
55 light->setDiffuse(Color4(0.3f, 0.3f, 0.3f, 1.0f));
56 light->setSpecular(Color4(1.0f, 1.0f, 1.0f, 1.0f));
57 light->setPosition(Vector4(0.0f, 20000.0f, 0.0f, 1.0f));
58 light->setSpotDirection(Vector3(0.0f, 0.0f, 0.0f).sub(Vector3(light->getPosition().getX(), light->getPosition().getY(), light->getPosition().getZ())));
59 light->setConstantAttenuation(0.5f);
60 light->setLinearAttenuation(0.0f);
61 light->setQuadraticAttenuation(0.0f);
62 light->setSpotExponent(0.0f);
63 light->setSpotCutOff(180.0f);
64 light->setEnabled(true);
65 library = new SceneLibrary(this);
66 entityIdx = 0;
67 skyModelScale = Vector3(1.0f, 1.0f, 1.0f);
68}
69
71 for (auto light: lights) {
72 delete light;
73 }
74 for (auto entity: entities) {
75 delete entity;
76 }
77 delete library;
78}
79
81{
82 dimension.set(0.0f, 0.0f, 0.0f);
83 auto haveDimension = false;
84 auto levelLeft = 0.0f;
85 auto levelRight = 0.0f;
86 auto levelNear = 0.0f;
87 auto levelFar = 0.0f;
88 auto levelTop = 0.0f;
89 auto levelBottom = 0.0f;
90 Vector3 sideVector(1.0f, 0.0f, 0.0f);
91 Vector3 upVector(0.0f, 1.0f, 0.0f);
92 Vector3 forwardVector(0.0f, 0.0f, 1.0f);
93 Vector3 bbDimension;
94 Vector3 bbMin;
95 Vector3 bbMax;
96 for (auto sceneEntity: entities) {
97 BoundingBox cbv;
98 // TODO: Implement me 100%
99 if (sceneEntity->getPrototype()->getType() == Prototype_Type::MODEL) {
100 cbv.fromBoundingVolumeWithTransformations(sceneEntity->getPrototype()->getModel()->getBoundingBox(), sceneEntity->getTransformations());
101 } else {
102 continue;
103 }
104
105 //
106 bbDimension.set(
107 cbv.getDimensions().getX(),
108 cbv.getDimensions().getY(),
109 cbv.getDimensions().getZ()
110 );
111 bbDimension.scale(0.5f);
112 bbMin.set(cbv.getCenter());
113 bbMin.sub(bbDimension);
114 bbMax.set(cbv.getCenter());
115 bbMax.add(bbDimension);
116 auto entityLeft = bbMin.getX();
117 auto entityRight = bbMax.getX();
118 auto entityNear = bbMin.getZ();
119 auto entityFar = bbMax.getZ();
120 auto entityBottom = bbMin.getY();
121 auto entityTop = bbMax.getY();
122 if (haveDimension == false) {
123 levelLeft = entityLeft;
124 levelRight = entityRight;
125 levelNear = entityNear;
126 levelFar = entityFar;
127 levelTop = entityTop;
128 levelBottom = entityBottom;
129 haveDimension = true;
130 } else {
131 if (entityLeft < levelLeft) levelLeft = entityLeft;
132 if (entityRight > levelRight) levelRight = entityRight;
133 if (entityNear < levelNear) levelNear = entityNear;
134 if (entityFar > levelFar) levelFar = entityFar;
135 if (entityTop > levelTop) levelTop = entityTop;
136 if (entityBottom < levelBottom) levelBottom = entityBottom;
137 }
138 }
139 for (auto i = 0; i < library->getPrototypeCount(); i++) {
140 auto prototype = library->getPrototypeAt(i);
141 if (prototype->getType() != Prototype_Type::TERRAIN) continue;
142 auto terrain = prototype->getTerrain();
143 auto entityLeft = 0.0f;
144 auto entityRight = terrain->getWidth();
145 auto entityNear = 0.0f;
146 auto entityFar = terrain->getDepth();
147 if (entityLeft < levelLeft) levelLeft = entityLeft;
148 if (entityRight > levelRight) levelRight = entityRight;
149 if (entityNear < levelNear) levelNear = entityNear;
150 if (entityFar > levelFar) levelFar = entityFar;
151 for (auto terrainHeight: terrain->getHeightVector()) {
152 auto entityTop = terrainHeight;
153 auto entityBottom = terrainHeight;
154 if (entityTop > levelTop) levelTop = entityTop;
155 if (entityBottom < levelBottom) levelBottom = entityBottom;
156 }
157 // one terrain only, so break here
158 break;
159 }
160 boundingBox.getMin().set(levelLeft, levelBottom, levelNear);
161 boundingBox.getMax().set(levelRight, levelTop, levelFar);
163 dimension.setX(levelRight - levelLeft);
164 dimension.setZ(levelFar - levelNear);
165 dimension.setY(levelTop - levelBottom);
166}
167
169{
171}
172
174{
175 entitiesById.clear();
176 entities.clear();
177 environmentMappingIds.clear();
178 entityIdx = 0;
179}
180
181void Scene::getEntitiesByPrototypeId(int prototypeId, vector<string>& entitiesByPrototypeId) {
182 for (auto entity: entities) {
183 if (entity->getPrototype()->getId() == prototypeId) {
184 entitiesByPrototypeId.push_back(entity->getId());
185 }
186 }
187}
188
190{
191 vector<string> entitiesToRemove;
192 getEntitiesByPrototypeId(prototypeId, entitiesToRemove);
193 for (auto entityId: entitiesToRemove) {
194 removeEntity(entityId);
195 }
196}
197
198void Scene::replacePrototypeByIds(int searchPrototypeId, int newEntityId)
199{
200 auto replaceEntity = getLibrary()->getPrototype(newEntityId);
201 if (replaceEntity == nullptr)
202 return;
203
204 for (auto entity: entities) {
205 if (entity->getPrototype()->getId() == searchPrototypeId) {
206 entity->setPrototype(replaceEntity);
207 }
208 }
209}
210
212{
213 auto _entity = getEntity(entity->getId());
214 if (_entity != nullptr) {
215 removeEntity(entity->getId());
216 Console::println(
217 "Scene::addEntity():: entity with id '" +
218 entity->getId() +
219 "' already exists. Removing it!"
220 );
221 }
222 entitiesById[entity->getId()] = entity;
223 entities.push_back(entity);
224 if (entity->getPrototype()->getType() == Prototype_Type::ENVIRONMENTMAPPING) environmentMappingIds.insert(entity->getId());
225}
226
227bool Scene::removeEntity(const string& id)
228{
229 auto entityByIdIt = entitiesById.find(id);
230 if (entityByIdIt != entitiesById.end()) {
231 auto entity = entityByIdIt->second;
232 entitiesById.erase(entityByIdIt);
233 entities.erase(remove(entities.begin(), entities.end(), entity), entities.end());
234 if (entity->getPrototype()->getType() == Prototype_Type::ENVIRONMENTMAPPING) environmentMappingIds.erase(entity->getId());
235 delete entity;
236 return true;
237 } else {
238 return false;
239 }
240}
241
242bool Scene::renameEntity(const string& id, const string& newId) {
243 if (id == newId) return true;
244 if (getEntity(newId) != nullptr) return false;
245 auto entityByIdIt = entitiesById.find(id);
246 if (entityByIdIt != entitiesById.end()) {
247 auto entity = entityByIdIt->second;
248 entitiesById.erase(entityByIdIt);
249 if (entity->getPrototype()->getType() == Prototype_Type::ENVIRONMENTMAPPING) environmentMappingIds.erase(entity->getId());
250 entity->setName(newId);
251 entitiesById[entity->getId()] = entity;
252 if (entity->getPrototype()->getType() == Prototype_Type::ENVIRONMENTMAPPING) environmentMappingIds.insert(entity->getId());
253 return true;
254 } else {
255 return false;
256 }
257}
258
260{
261 auto entityByIdIt = entitiesById.find(id);
262 if (entityByIdIt != entitiesById.end()) {
263 return entityByIdIt->second;
264 }
265 return nullptr;
266}
267
269 if (this->skyModel== model) return;
270 delete this->skyModel;
271 this->skyModel = model;
272}
273
277}
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
Represents rotation orders of a model.
Definition: RotationOrder.h:23
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
const Vector3 & getCenter() const
Definition: BoundingBox.h:120
void update()
Updates this bounding box.
const Vector3 & getDimensions() const
Definition: BoundingBox.h:127
Prototype definition.
Definition: Prototype.h:49
PrototypeTerrain * getTerrain()
Definition: Prototype.h:561
Scene entity definition.
Definition: SceneEntity.h:24
Scene prototype library definition.
Definition: SceneLibrary.h:27
Prototype * getPrototype(int id)
Get a prototype by given id.
Prototype * getPrototypeAt(int idx)
Get prototype at given index.
Definition: SceneLibrary.h:73
Scene light definition.
Definition: SceneLight.h:21
Scene definition.
Definition: Scene.h:41
map< string, SceneEntity * > entitiesById
Definition: Scene.h:48
vector< SceneEntity * > entities
Definition: Scene.h:49
bool removeEntity(const string &id)
Removes an entity from scene.
Definition: Scene.cpp:227
SceneLibrary * getLibrary()
Definition: Scene.h:168
void replacePrototypeByIds(int searchPrototypeId, int newPrototypeId)
Replace prototype of given search prototype with new prototype.
Definition: Scene.cpp:198
~Scene()
Destructor.
Definition: Scene.cpp:70
void removeEntitiesByPrototypeId(int prototypeId)
Remove entities with given prototype id.
Definition: Scene.cpp:189
SceneLibrary * library
Definition: Scene.h:47
void getEntitiesByPrototypeId(int prototypeId, vector< string > &entitiesByPrototypeId)
Get entities with given prototype id.
Definition: Scene.cpp:181
RotationOrder * rotationOrder
Definition: Scene.h:45
vector< SceneLight * > lights
Definition: Scene.h:46
void setSkyModel(Model *model)
Set sky model.
Definition: Scene.cpp:268
bool renameEntity(const string &id, const string &newId)
Rename an entity from scene.
Definition: Scene.cpp:242
SceneEntity * getEntity(const string &id)
Returns scene entity by id.
Definition: Scene.cpp:259
void addEntity(SceneEntity *entity)
Adds an entity to scene.
Definition: Scene.cpp:211
set< string > environmentMappingIds
Definition: Scene.h:50
string applicationRootPathName
Definition: Scene.h:43
void update()
Update scene dimension, bounding box, center.
Definition: Scene.cpp:274
void clearEntities()
Clears all scene entities.
Definition: Scene.cpp:173
BoundingBox boundingBox
Definition: Scene.h:52
void computeBoundingBox()
Computes scene bounding box.
Definition: Scene.cpp:80
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & setZ(float z)
Set Z.
Definition: Vector3.h:145
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & setX(float x)
Set X.
Definition: Vector3.h:111
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349
Vector3 & setY(float y)
Set Y.
Definition: Vector3.h:128
3D vector 4 class
Definition: Vector4.h:19
Console class.
Definition: Console.h:26