TDME2 1.9.121
PrototypeTerrainBrush.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
9
10using std::string;
11using std::vector;
12
14
15/**
16 * Prototype terrain brush prototype definition
17 * @author Andreas Drewke
18 * @version $Id$
19 */
21{
22private:
23 float size { 1.0f };
24 float density { 1.0f };
25 string fileName { "resources/engine/textures/terrain_brush.png" };
26 vector<PrototypeTerrainBrushPrototype*> prototypes;
27
28public:
29
30 /**
31 * Public constructor
32 */
34 }
35
36 /**
37 * Destructor
38 */
40 for (auto prototype: prototypes) delete prototype;
41 }
42
43 /**
44 * @return size
45 */
46 inline float getSize() const {
47 return size;
48 }
49
50 /**
51 * Set size
52 * @param size size
53 */
54 inline void setSize(float size) {
55 this->size = size;
56 }
57
58 /**
59 * @return density
60 */
61 inline float getDensity() const {
62 return density;
63 }
64
65 /**
66 * Set density
67 * @param density density
68 */
69 inline void setDensity(float density){
70 this->density = density;
71 }
72
73 /**
74 * @return texture file name
75 */
76 inline const string& getFileName() const {
77 return fileName;
78 }
79
80 /**
81 * Set texture file name
82 * @param textureFileName texture file name
83 */
84 void setFileName(const string &fileName) {
85 this->fileName = fileName;
86 }
87
88 /**
89 * @return prototypes
90 */
91 inline const vector<PrototypeTerrainBrushPrototype*>& getPrototypes() const {
92 return prototypes;
93 }
94
95 /**
96 * Get prototype terrain brush prototype
97 * @param idx index
98 * @return prototype terrain brush prototype
99 */
101 if (idx < 0 || idx >= prototypes.size()) return nullptr;
102 return prototypes[idx];
103 }
104
105 /**
106 * Remove prototype terrain brush prototype
107 * @param idx index
108 */
110 auto prototype = new PrototypeTerrainBrushPrototype();
111 prototypes.push_back(prototype);
112 return prototype;
113 }
114
115 /**
116 * Remove prototype terrain brush prototype
117 * @param idx index
118 */
119 bool removePrototype(int idx) {
120 if (idx < 0 || idx >= prototypes.size()) return false;
121 auto prototype = prototypes[idx];
122 prototypes.erase(prototypes.begin() + idx);
123 delete prototype;
124 return true;
125 }
126
127};
Prototype terrain brush prototype definition.
const vector< PrototypeTerrainBrushPrototype * > & getPrototypes() const
void setFileName(const string &fileName)
Set texture file name.
PrototypeTerrainBrushPrototype * getPrototype(int idx)
Get prototype terrain brush prototype.
bool removePrototype(int idx)
Remove prototype terrain brush prototype.
PrototypeTerrainBrushPrototype * addPrototype()
Remove prototype terrain brush prototype.
vector< PrototypeTerrainBrushPrototype * > prototypes