TDME2 1.9.121
SceneLibrary.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
11#include <tdme/math/fwd-tdme.h>
13
14using std::map;
15using std::string;
16using std::vector;
17
20
21/**
22 * Scene prototype library definition
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27{
28public:
29 static constexpr int ID_ALLOCATE { -1 };
30
31private:
32 Scene* scene { nullptr };
33 map<int, Prototype*> prototypesById;
34 vector<Prototype*> prototypes;
36
37public:
38 /**
39 * Public constructor
40 * @param scene scene
41 */
43
44 /**
45 * Destructor
46 */
48
49 /**
50 * Allocata a unique prototype index
51 * @return index
52 */
53 inline int allocatePrototypeId() {
54 return prototypeIdx++;
55 }
56
57 /**
58 * Clears this scene prototype library
59 */
60 void clear();
61
62 /**
63 * Add a prototype
64 * @param prototype prototype
65 */
66 void addPrototype(Prototype* prototype);
67
68 /**
69 * Get prototype at given index
70 * @param idx index
71 * @return prototype
72 */
73 inline Prototype* getPrototypeAt(int idx) {
74 return prototypes[idx];
75 }
76
77 /**
78 * Get a prototype by given id
79 * @param id id
80 * @return prototype
81 */
82 Prototype* getPrototype(int id);
83
84 /**
85 * Get a prototype by given name
86 * @param name name
87 * @return prototype
88 */
89 Prototype* getPrototypeByName(const string& name);
90
91 /**
92 * Get a terrain prototype
93 * @return terrain prototype
94 */
96
97 /**
98 * Remove a prototype
99 * @param id id
100 */
101 void removePrototype(int id);
102
103 /**
104 * @return prototype count
105 */
106 inline int getPrototypeCount() {
107 return prototypes.size();
108 }
109
110};
Prototype definition.
Definition: Prototype.h:49
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
SceneLibrary(Scene *scene)
Public constructor.
map< int, Prototype * > prototypesById
Definition: SceneLibrary.h:33
void clear()
Clears this scene prototype library.
void addPrototype(Prototype *prototype)
Add a prototype.
Prototype * getPrototypeAt(int idx)
Get prototype at given index.
Definition: SceneLibrary.h:73
static constexpr int ID_ALLOCATE
Definition: SceneLibrary.h:29
Scene definition.
Definition: Scene.h:41
3D vector 3 class
Definition: Vector3.h:22