TDME2 1.9.121
SceneLibrary.cpp
Go to the documentation of this file.
2
3#include <algorithm>
4#include <string>
5
6#include <tdme/tdme.h>
16#include <tdme/math/Vector3.h>
21
22using std::remove;
23using std::string;
24using std::to_string;
25
27
41
42SceneLibrary::SceneLibrary(Scene* scene)
43{
44 this->scene = scene;
45 this->prototypeIdx = 0;
46}
47
49 for (auto prototype: prototypes) {
50 delete prototype;
51 }
52}
53
55{
56 for (auto prototype: prototypes) {
57 delete prototype;
58 }
59 this->prototypesById.clear();
60 this->prototypes.clear();
61 this->prototypeIdx = 0;
62}
63
65{
66 if (prototype->getId() == SceneLibrary::ID_ALLOCATE) prototype->setId(allocatePrototypeId());
67 auto prototypeByIdIt = prototypesById.find(prototype->getId());
68 if (prototypeByIdIt != prototypesById.end()) {
69 throw ExceptionBase("Prototype id already in use");
70 }
71 prototypes.push_back(prototype);
72 prototypesById[prototype->getId()] = prototype;
73 if (prototype->getId() >= prototypeIdx)
74 prototypeIdx = prototype->getId() + 1;
75
76}
77
79{
80 auto prototypeByIdIt = prototypesById.find(id);
81 if (prototypeByIdIt != prototypesById.end()) {
82 return prototypeByIdIt->second;
83 }
84 return nullptr;
85}
86
88 for (auto prototype: prototypes) {
89 if (prototype->getName() == name) return prototype;
90 }
91 return nullptr;
92}
93
95{
96 for (auto prototype: prototypes) {
97 if (prototype->getType() == Prototype_Type::TERRAIN) return prototype;
98 }
99 return nullptr;
100}
101
103{
104 auto prototypeByIdIt = prototypesById.find(id);
105 if (prototypeByIdIt != prototypesById.end()) {
106 prototypes.erase(remove(prototypes.begin(), prototypes.end(), prototypeByIdIt->second), prototypes.end());
107 delete prototypeByIdIt->second;
108 prototypesById.erase(prototypeByIdIt);
109 }
110}
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
Prototype definition.
Definition: Prototype.h:49
void setId(int id)
Set Id.
Definition: Prototype.h:90
Scene prototype library definition.
Definition: SceneLibrary.h:27
void removePrototype(int id)
Remove a prototype.
Prototype * getPrototype(int id)
Get a prototype by given id.
Prototype * getPrototypeByName(const string &name)
Get a prototype by given name.
Prototype * getTerrainPrototype()
Get a terrain prototype.
int allocatePrototypeId()
Allocata a unique prototype index.
Definition: SceneLibrary.h:53
vector< Prototype * > prototypes
Definition: SceneLibrary.h:34
map< int, Prototype * > prototypesById
Definition: SceneLibrary.h:33
void clear()
Clears this scene prototype library.
void addPrototype(Prototype *prototype)
Add a prototype.
static constexpr int ID_ALLOCATE
Definition: SceneLibrary.h:29
Scene definition.
Definition: Scene.h:41
3D vector 3 class
Definition: Vector3.h:22
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Helper class to create models from physics primitive bounding volumes.
Definition: Primitives.h:34
String tools class.
Definition: StringTools.h:20