TDME2 1.9.121
Scene.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <set>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
16#include <tdme/math/fwd-tdme.h>
17#include <tdme/math/Vector3.h>
19
20using std::map;
21using std::set;
22using std::string;
23using std::vector;
24
33
34/**
35 * Scene definition
36 * @author Andreas Drewke
37 * @version $Id$
38 */
40 : public BaseProperties
41{
42private:
44 string fileName;
46 vector<SceneLight*> lights;
47 SceneLibrary* library { nullptr };
48 map<string, SceneEntity*> entitiesById;
49 vector<SceneEntity*> entities;
56 Model* skyModel { nullptr };
58
59 /**
60 * Computes scene bounding box
61 * @return dimension
62 */
63 void computeBoundingBox();
64
65 /**
66 * @return scene center
67 */
68 void computeCenter();
69
70public:
71 /**
72 * Public constructor
73 * @param name name
74 * @param description description
75 */
76 Scene(const string& name, const string& description);
77
78 /**
79 * Destructor
80 */
81 ~Scene();
82
83 /**
84 * @return application root path name
85 */
86 inline const string& getApplicationRootPathName() {
88 }
89
90 /**
91 * Set application root path name
92 * @param applicationRootPathName application root path name
93 */
95 this->applicationRootPathName = applicationRootPathName;
96 }
97
98 /**
99 * @return scene file name including relative path
100 */
101 inline const string& getFileName() {
102 return fileName;
103 }
104
105 /**
106 * Set up scene file name including relative path
107 * @param fileName scene file name including relative path
108 */
109 inline void setFileName(const string& fileName) {
110 this->fileName = fileName;
111 }
112
113 /**
114 * @return rotation order
115 */
117 return rotationOrder;
118 }
119
120 /**
121 * Set rotation order
122 * @param rotationOrder rotation order
123 */
125 this->rotationOrder = rotationOrder;
126 }
127
128 /**
129 * @return number of lights
130 */
131 inline int getLightCount() {
132 return lights.size();
133 }
134
135 /**
136 * Get light at given index
137 * @param i index
138 * @return light
139 */
140 inline SceneLight* getLightAt(int i) {
141 if (i < 0 || i >= lights.size()) return nullptr;
142 return lights[i];
143 }
144
145 /**
146 * Add light
147 * @return light
148 */
150 lights.push_back(new SceneLight(lights.size()));
151 return lights[lights.size() - 1];
152 }
153
154 /**
155 * Remove light at given index i
156 * @param i index
157 * @return success
158 */
159 bool removeLightAt(int i) {
160 if (i < 0 || i >= lights.size()) return false;
161 lights.erase(lights.begin() + i);
162 return true;
163 }
164
165 /**
166 * @return scene prototype library
167 */
169 return library;
170 }
171
172 /**
173 * @return dimension
174 */
175 inline const Vector3& getDimension() {
176 return dimension;
177 }
178
179 /**
180 * @return scene bounding box
181 */
183 return &boundingBox;
184 }
185
186 /**
187 * @return scene center
188 */
189 inline const Vector3& getCenter() {
190 return center;
191 }
192
193 /**
194 * @return new entity id
195 */
196 inline int allocateEntityId() {
197 return entityIdx++;
198 }
199
200 /**
201 * @return entity idx
202 */
203 inline int getEntityIdx() {
204 return entityIdx;
205 }
206
207 /**
208 * Set entity idx
209 * @param entityIdx objectIdx
210 */
211 inline void setEntityIdx(int entityIdx) {
212 this->entityIdx = entityIdx;
213 }
214
215 /**
216 * Clears all scene entities
217 */
218 void clearEntities();
219
220 /**
221 * Get entities with given prototype id
222 * @param prototypeId prototype id
223 * @param entitiesByPrototypeId entities by prototype id
224 */
225 void getEntitiesByPrototypeId(int prototypeId, vector<string>& entitiesByPrototypeId);
226
227 /**
228 * Remove entities with given prototype id
229 * @param prototypeId prototype id
230 */
231 void removeEntitiesByPrototypeId(int prototypeId);
232
233 /**
234 * Replace prototype of given search prototype with new prototype
235 * @param searchPrototypeId search prototype id
236 * @param newPrototypeId new prototype id
237 */
238 void replacePrototypeByIds(int searchPrototypeId, int newPrototypeId);
239
240 /**
241 * @return environment mapping object ids
242 */
243 inline set<string> getEnvironmentMappingIds() {
245 }
246
247 /**
248 * Adds an entity to scene
249 * @param object object
250 */
251 void addEntity(SceneEntity* entity);
252
253 /**
254 * Removes an entity from scene
255 * @param id id
256 * @return success
257 */
258 bool removeEntity(const string& id);
259
260 /**
261 * Rename an entity from scene
262 * @param id id
263 * @param newId new id
264 * @return success
265 */
266 bool renameEntity(const string& id, const string& newId);
267
268 /**
269 * Returns scene entity by id
270 * @param id id
271 * @return scene entity
272 */
273 SceneEntity* getEntity(const string& id);
274
275 /**
276 * @return number of entities
277 */
278 inline int getEntityCount() {
279 return entities.size();
280 }
281
282 /**
283 * Returns entity at given index
284 * @param idx index
285 * @return scene entity
286 */
287 inline SceneEntity* getEntityAt(int idx) {
288 return entities[idx];
289 }
290
291 /**
292 * @return sky model file name
293 */
294 inline const string& getSkyModelFileName() {
295 return skyModelFileName;
296 }
297
298 /**
299 * Set sky model file name
300 * @param skyModelFileName sky model file name
301 */
302 inline void setSkyModelFileName(const string& skyModelFileName) {
303 this->skyModelFileName = skyModelFileName;
304 }
305
306 /**
307 * @return sky model
308 */
309 inline Model* getSkyModel() {
310 return skyModel;
311 }
312
313 /**
314 * Set sky model
315 */
316 void setSkyModel(Model* model);
317
318 /**
319 * @return sky model scale
320 */
321 inline const Vector3& getSkyModelScale() {
322 return skyModelScale;
323 }
324
325 /**
326 * Set sky model scale
327 */
329 this->skyModelScale = skyModelScale;
330 }
331
332 /**
333 * Update scene dimension, bounding box, center
334 */
335 void update();
336
337};
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
Scene entity definition.
Definition: SceneEntity.h:24
Scene prototype library definition.
Definition: SceneLibrary.h:27
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
const Vector3 & getSkyModelScale()
Definition: Scene.h:321
void setFileName(const string &fileName)
Set up scene file name including relative path.
Definition: Scene.h:109
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
RotationOrder * getRotationOrder()
Definition: Scene.h:116
SceneLibrary * library
Definition: Scene.h:47
void setSkyModelFileName(const string &skyModelFileName)
Set sky model file name.
Definition: Scene.h:302
SceneLight * getLightAt(int i)
Get light at given index.
Definition: Scene.h:140
void setRotationOrder(RotationOrder *rotationOrder)
Set rotation order.
Definition: Scene.h:124
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
const string & getFileName()
Definition: Scene.h:101
set< string > getEnvironmentMappingIds()
Definition: Scene.h:243
void setSkyModelScale(const Vector3 &skyModelScale)
Set sky model scale.
Definition: Scene.h:328
void setSkyModel(Model *model)
Set sky model.
Definition: Scene.cpp:268
void setEntityIdx(int entityIdx)
Set entity idx.
Definition: Scene.h:211
void setApplicationRootPathName(const string &applicationRootPathName)
Set application root path name.
Definition: Scene.h:94
bool renameEntity(const string &id, const string &newId)
Rename an entity from scene.
Definition: Scene.cpp:242
bool removeLightAt(int i)
Remove light at given index i.
Definition: Scene.h:159
Scene(const string &name, const string &description)
Public constructor.
Definition: Scene.cpp:47
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
SceneEntity * getEntityAt(int idx)
Returns entity at given index.
Definition: Scene.h:287
const string & getApplicationRootPathName()
Definition: Scene.h:86
BoundingBox boundingBox
Definition: Scene.h:52
const Vector3 & getCenter()
Definition: Scene.h:189
BoundingBox * getBoundingBox()
Definition: Scene.h:182
SceneLight * addLight()
Add light.
Definition: Scene.h:149
const string & getSkyModelFileName()
Definition: Scene.h:294
void computeBoundingBox()
Computes scene bounding box.
Definition: Scene.cpp:80
const Vector3 & getDimension()
Definition: Scene.h:175
3D vector 3 class
Definition: Vector3.h:22