TDME2 1.9.121
LinesObject3DInternal.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
19
20using std::string;
21using std::vector;
22
32
33/**
34 * Lines object internal
35 * @author Andreas Drewke
36 * @version $Id$
37 */
39 : public Transformations
40{
42
43protected:
44 string id;
45 Engine* engine { nullptr };
46 Renderer* renderer { nullptr };
47 bool enabled;
48 float lineWidth;
49 Texture* texture { nullptr };
50 int32_t textureId { -1 };
51
59
60 vector<Vector3> points;
62 vector<Color4> colors;
63
64 vector<int32_t>* vboIds;
65
66 /**
67 * Update bounding volume
68 */
69 inline void updateBoundingBox() {
71 boundingBoxTransformed.getMin().sub(0.05f); // scale a bit up to make picking work better
72 boundingBoxTransformed.getMax().add(0.05f); // same here
74 }
75
76public:
77 /**
78 * Public constructor
79 * @param id id
80 * @param lineWidth line width
81 * @param points points
82 * @param color color
83 * @param colors optional colors
84 * @param texture optional texture
85 */
86 LinesObject3DInternal(const string& id, float lineWidth, const vector<Vector3>& points, const Color4& color, const vector<Color4>& colors = {}, Texture* texture = nullptr);
87
88 /**
89 * Destructor
90 */
91 virtual ~LinesObject3DInternal();
92
93 /**
94 * @return id
95 */
96 inline const string& getId() {
97 return id;
98 }
99
100 /**
101 * Set renderer
102 * @param renderer renderer
103 */
105 this->renderer = renderer;
106 }
107
108 /**
109 * Set engine
110 * @param engine engine
111 */
112 inline void setEngine(Engine* engine) {
113 this->engine = engine;
114 }
115
116 /**
117 * @return is enabled
118 */
119 inline bool isEnabled() {
120 return enabled;
121 }
122
123 /**
124 * Set enabled
125 * @param enabled enabled
126 */
127 inline void setEnabled(bool enabled) {
128 this->enabled = enabled;
129 }
130
131 /**
132 * @return effect color mul
133 */
134 inline const Color4& getEffectColorMul() const {
135 return effectColorMul;
136 }
137
138 /**
139 * Set effect color mul
140 * @param effectColorMul effect color mul
141 */
143 this->effectColorMul = effectColorMul;
144 }
145
146 /**
147 * @return effect color mul
148 */
149 inline const Color4& getEffectColorAdd() const {
150 return effectColorMul;
151 }
152
153 /**
154 * Set effect color add
155 * @param effectColorAdd effect color add
156 */
158 this->effectColorAdd = effectColorAdd;
159 }
160
161 /**
162 * @return is pickable
163 */
164 inline bool isPickable() const {
165 return pickable;
166 }
167
168 /**
169 * Set pickable
170 * @param pickable pickable
171 */
172 inline void setPickable(bool pickable) {
173 this->pickable = pickable;
174 }
175
176 /**
177 * @return if entity contributes to shadows
178 */
179 inline bool isContributesShadows() {
180 return contributesShadows;
181 }
182
183 /**
184 * Enable/disable contributes shadows
185 * @param contributesShadows contributes shadows
186 */
188 this->contributesShadows = contributesShadows;
189 }
190
191 /**
192 * @return if entity receives shadows
193 */
194 inline bool isReceivesShadows() {
195 return receivesShadows;
196 }
197
198 /**
199 * Enable/disable receives shadows
200 * @param receivesShadows receives shadows
201 */
203 this->receivesShadows = receivesShadows;
204 }
205
206 /**
207 * @return bounding box
208 */
210 return &boundingBox;
211 }
212
213 /**
214 * @return bounding box transformed
215 */
218 }
219
220 /**
221 * @return line width
222 */
223 inline float getLineWidth() {
224 return lineWidth;
225 }
226
227 /**
228 * @return texture id
229 */
230 inline int32_t getTextureId() {
231 return textureId;
232 }
233
234 /**
235 * Update transformations
236 */
237 void update() override;
238
239 /**
240 * From transformations
241 * @param transformations transformations
242 */
243 void fromTransformations(const Transformations& transformations) override;
244
245 /**
246 * Initialize
247 */
248 void initialize();
249
250 /**
251 * Dispose
252 */
253 void dispose();
254
255};
Engine main class.
Definition: Engine.h:122
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
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
void update()
Updates this bounding box.
void setContributesShadows(bool contributesShadows)
Enable/disable contributes shadows.
void fromTransformations(const Transformations &transformations) override
From transformations.
void setEffectColorMul(const Color4 &effectColorMul)
Set effect color mul.
void setEffectColorAdd(const Color4 &effectColorAdd)
Set effect color add.
void setReceivesShadows(bool receivesShadows)
Enable/disable receives shadows.
LinesObject3DInternal(const string &id, float lineWidth, const vector< Vector3 > &points, const Color4 &color, const vector< Color4 > &colors={}, Texture *texture=nullptr)
Public constructor.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301