TDME2 1.9.121
GUIRenderer.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <vector>
5
6#include <tdme/tdme.h>
9#include <tdme/gui/fwd-tdme.h>
13#include <tdme/math/Math.h>
18
19using std::array;
20using std::vector;
21
27using tdme::gui::GUI;
33
34/**
35 * GUI renderer
36 * @author Andreas Drewke
37 * @version $Id$
38 */
40{
41public:
42 static constexpr float SCREEN_LEFT { -1.0f };
43 static constexpr float SCREEN_TOP { 1.0f };
44 static constexpr float SCREEN_RIGHT { 1.0f };
45 static constexpr float SCREEN_BOTTOM { -1.0f };
46
47private:
48 static constexpr int QUAD_COUNT { 1024 };
49
55 };
56
57 GUI* gui { nullptr };
58 Renderer* renderer { nullptr };
59 vector<int32_t>* vboIds { nullptr };
60 int quadCount { 0 };
77 array<float, 4> fontColor;
78 array<float, 4> effectColorMul;
79 array<float, 4> effectColorAdd;
80 array<float, 4> effectColorMulFinal;
81 array<float, 4> effectColorAddFinal;
84 vector<GUIEffectStackEntity> stackedEffects;
85
86public:
87 /**
88 * Public constructor
89 */
91
92 /**
93 * Destructor
94 */
96
97 /**
98 * Set GUI
99 * @param gui gui
100 */
101 inline void setGUI(GUI* gui) {
102 this->gui = gui;
103 }
104
105 /**
106 * @return GUI
107 */
108 inline GUI* getGUI() {
109 return gui;
110 }
111
112 /**
113 * Init
114 */
115 void initialize();
116
117 /**
118 * Dispose
119 */
120 void dispose();
121
122 /**
123 * Init rendering
124 */
125 void initRendering();
126
127 /**
128 * Done rendering
129 */
130 void doneRendering();
131
132 /**
133 * @return GUI screen node
134 */
136 return screenNode;
137 }
138
139 /**
140 * Init screen
141 * @param screenNode screen node
142 */
144
145 /**
146 * Done screen
147 */
148 void doneScreen();
149
150 /**
151 * Set effect color mul
152 * @param color color
153 */
154 inline void setFontColor(const GUIColor& color) {
155 fontColor = color.getArray();
156 }
157
158 /**
159 * Set effect color mul
160 * @param color color
161 */
162 inline void setEffectColorMul(const GUIColor& color) {
163 effectColorMul = color.getArray();
164 }
165
166 /**
167 * Set effect color add
168 * @param color color
169 */
170 inline void setEffectColorAdd(const GUIColor& color) {
171 effectColorAdd = color.getArray();;
172 }
173
174 /**
175 * @return effect color mul
176 */
178 return guiEffectColorMul;
179 }
180
181 /**
182 * Set GUI effect color mul
183 * @param color color
184 */
185 void setGUIEffectColorMul(const GUIColor& color) {
186 guiEffectColorMul = color;
187 }
188
189 /**
190 * @return effect color add
191 */
193 return guiEffectColorAdd;
194 }
195
196 /**
197 * Set GUI effect color add
198 * @param color color
199 */
200 inline void setGUIEffectColorAdd(const GUIColor& color) {
201 guiEffectColorAdd = color;
202 }
203
204 /**
205 * @return GUI effect offset X
206 */
207 inline float getGUIEffectOffsetX() {
208 return guiEffectOffsetX;
209 }
210
211 /**
212 * Set GUI effect offset X
213 * @param guiEffectOffsetX gui effect offset X
214 */
216
217 /**
218 * @return GUI effect offset Y
219 */
220 inline float getGUIEffectOffsetY() {
221 return guiEffectOffsetY;
222 }
223
224 /**
225 * Set GUI effect offset Y
226 * @param guiEffectOffsetY GUI effect offset Y
227 */
229
230 /**
231 * @return render area left
232 */
233 inline float getRenderAreaLeft() {
234 return renderAreaLeft;
235 }
236
237 /**
238 * Set up render area left
239 * @param renderAreaLeft render area left
240 */
242 this->renderAreaLeft = renderAreaLeft;
243 }
244
245 /**
246 * Set sub render area left
247 * @param renderAreaLeft render area left
248 */
250 this->renderAreaLeft = renderAreaLeft > this->renderAreaLeft?renderAreaLeft:this->renderAreaLeft;
251 }
252
253 /**
254 * @return render area top
255 */
256 inline float getRenderAreaTop() {
257 return renderAreaTop;
258 }
259
260 /**
261 * Set up render area top
262 * @param renderAreaTop render area top
263 */
264 inline void setRenderAreaTop(float renderAreaTop) {
265 this->renderAreaTop = renderAreaTop;
266 }
267
268 /**
269 * Set sub render area top
270 * @param renderAreaTop render area top
271 */
273 this->renderAreaTop = renderAreaTop < this->renderAreaTop?renderAreaTop:this->renderAreaTop;
274 }
275
276 /**
277 * @return render area right
278 */
279 inline float getRenderAreaRight() {
280 return renderAreaRight;
281 }
282
283 /**
284 * Set up render area right
285 * @param renderAreaRight render area right
286 */
287 inline void setRenderAreaRight(float renderAreaRight) {
288 this->renderAreaRight = renderAreaRight;
289 }
290
291 /**
292 * Set sub render area right
293 * @param renderAreaRight render area right
294 */
296 this->renderAreaRight = renderAreaRight < this->renderAreaRight?renderAreaRight:this->renderAreaRight;
297 }
298
299 /**
300 * @return render area bottom
301 */
302 inline float getRenderAreaBottom() {
303 return renderAreaBottom;
304 }
305
306 /**
307 * Set up render area bottom
308 * @param renderAreaBottom render area bottom
309 */
310 inline void setRenderAreaBottom(float renderAreaBottom) {
311 this->renderAreaBottom = renderAreaBottom;
312 }
313
314 /**
315 * Set sub render area bottom
316 * @param renderAreaBottom render area bottom
317 */
319 this->renderAreaBottom = renderAreaBottom > this->renderAreaBottom?renderAreaBottom:this->renderAreaBottom;
320 }
321
322 /**
323 * @return render offset x
324 */
325 inline float getRenderOffsetX() {
326 return renderOffsetX;
327 }
328
329 /**
330 * Set render offset x
331 * @param renderOffsetX render offset x
332 */
333 inline void setRenderOffsetX(float renderOffsetX) {
334 this->renderOffsetX = renderOffsetX;
335 }
336
337 /**
338 * @return render offset y
339 */
340 inline float getRenderOffsetY() {
341 return renderOffsetY;
342 }
343
344 /**
345 * Set render offset y
346 * @param renderOffsetY render offset y
347 */
348 inline void setRenderOffsetY(float renderOffsetY) {
349 this->renderOffsetY = renderOffsetY;
350 }
351
352 /**
353 * Push effects
354 * @oaran effects effects
355 */
356 inline void pushEffects(const vector<GUIEffect*>& effects) {
357 this->stackedEffects.push_back(
358 {
359 .guiEffectColorMul = guiEffectColorMul,
360 .guiEffectColorAdd = guiEffectColorAdd,
361 .guiEffectOffsetX = guiEffectOffsetX,
362 .guiEffectOffsetY = guiEffectOffsetY,
363 }
364 );
365 for (auto effect: effects) effect->apply(this);
366 }
367
368 /**
369 * Pop effects
370 */
371 inline void popEffects() {
372 if (stackedEffects.empty() == true) {
373 guiEffectColorMul = GUIColor(1.0f, 1.0f, 1.0f, 1.0f);
374 guiEffectColorAdd = GUIColor(0.0f, 0.0f, 0.0f, 0.0f);
375 guiEffectOffsetX = 0.0f;
376 guiEffectOffsetY = 0.0f;
377 } else {
378 auto effectsIndex = stackedEffects.size() - 1;
379 auto& effectStackEntity = stackedEffects[effectsIndex];
380 guiEffectColorMul = effectStackEntity.guiEffectColorMul;
381 guiEffectColorAdd = effectStackEntity.guiEffectColorAdd;
382 guiEffectOffsetX = effectStackEntity.guiEffectOffsetX;
383 guiEffectOffsetY = effectStackEntity.guiEffectOffsetY;
384 stackedEffects.erase(stackedEffects.begin() + effectsIndex);
385 }
386 }
387
388 /**
389 * @return if quad is visible
390 */
391 inline bool isQuadVisible(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) {
392 x1 -= renderOffsetX;
393 x2 -= renderOffsetX;
394 y1 += renderOffsetY;
395 y3 += renderOffsetY;
396 x1 -= guiEffectOffsetX;
397 x2 -= guiEffectOffsetX;
398 y1 += guiEffectOffsetY;
399 y3 += guiEffectOffsetY;
400 auto renderAreaTop = this->renderAreaTop;
401 auto renderAreaBottom = this->renderAreaBottom;
402 auto renderAreaRight = this->renderAreaRight;
403 auto renderAreaLeft = this->renderAreaLeft;
404 /*
405 // TODO: This prevented off screen rendering, but does collide with position effects and parent children viewport caches
406 renderAreaTop = Math::min(renderAreaTop + guiEffectOffsetY, SCREEN_TOP);
407 renderAreaBottom = Math::max(renderAreaBottom + guiEffectOffsetY, SCREEN_BOTTOM);
408 renderAreaRight = Math::min(renderAreaRight - guiEffectOffsetX, SCREEN_RIGHT);
409 renderAreaLeft = Math::max(renderAreaLeft - guiEffectOffsetX, SCREEN_LEFT);
410 */
411 renderAreaTop = renderAreaTop + guiEffectOffsetY;
415 if (y3 > renderAreaTop) return false;
416 if (y1 < renderAreaBottom) return false;
417 if (x1 > renderAreaRight) return false;
418 if (x2 < renderAreaLeft) return false;
419 return true;
420 }
421
422 /**
423 * Add quad
424 * Note: quad vertices order
425 * 1 2
426 * +----+
427 * | |
428 * | |
429 * +----+
430 * 4 3
431 * @param x1 x 1
432 * @param y1 y 1
433 * @param colorR1 color red 1
434 * @param colorG1 color green 1
435 * @param colorB1 color blue 1
436 * @param colorA1 color alpha 1
437 * @param tu1 texture u 1
438 * @param tv1 texture v 1
439 * @param x2 x 2
440 * @param y2 y 2
441 * @param colorR2 color red 2
442 * @param colorG2 color green 2
443 * @param colorB2 color blue 2
444 * @param colorA2 color alpha 2
445 * @param tu2 texture u 2
446 * @param tv2 texture v 2
447 * @param x3 x 3
448 * @param y3 y 3
449 * @param colorR3 color red 3
450 * @param colorG3 color green 3
451 * @param colorB3 color blue 3
452 * @param colorA3 color alpha 3
453 * @param tu3 texture u 3
454 * @param tv3 texture v 3
455 * @param x4 x 4
456 * @param y4 y 4
457 * @param colorR4 color red 4
458 * @param colorG4 color green 4
459 * @param colorB4 color blue 4
460 * @param colorA4 color alpha 4
461 * @param tu4 texture u 4
462 * @param tv4 texture v 4
463 */
464 void addQuad(float x1, float y1, float colorR1, float colorG1, float colorB1, float colorA1, float tu1, float tv1, float x2, float y2, float colorR2, float colorG2, float colorB2, float colorA2, float tu2, float tv2, float x3, float y3, float colorR3, float colorG3, float colorB3, float colorA3, float tu3, float tv3, float x4, float y4, float colorR4, float colorG4, float colorB4, float colorA4, float tu4, float tv4);
465
466 /**
467 * Set texture matrix
468 * @param textureMatrix texture matrix
469 */
470 void setTexureMatrix(const Matrix2D3x3& textureMatrix);
471
472 /**
473 * Bind texture
474 * @param textureId texture
475 */
476 void bindTexture(int32_t textureId);
477
478 /**
479 * Bind mask texture
480 * @param textureId texture
481 */
482 void bindMask(int32_t textureId);
483
484 /**
485 * Set mask max value
486 * @param maskMaxValue mask maximum value
487 */
488 void setMaskMaxValue(float maskMaxValue);
489
490 /**
491 * Set gradient properties
492 * @deprecated use rather custom UI shader and parameters
493 * @param count color count
494 * @param colors colors
495 * @param colorStarts color starts
496 * @param rotationAngle rotationAngle
497 */
498 void setGradient(int count, array<GUIColor, 10>& colors, array<float, 10>& colorStarts, float rotationAngle);
499
500 /**
501 * Disable gradient
502 * @deprecated use rather custom UI shader and parameters
503 */
504 void unsetGradient();
505
506 /**
507 * Render
508 */
509 void render();
510
511};
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
GUI module class.
Definition: GUI.h:66
GUI effect base class.
Definition: GUIEffect.h:23
GUI node base class.
Definition: GUINode.h:63
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void setSubRenderAreaBottom(float renderAreaBottom)
Set sub render area bottom.
Definition: GUIRenderer.h:318
const GUIColor & getGUIEffectColorAdd()
Definition: GUIRenderer.h:192
void setGradient(int count, array< GUIColor, 10 > &colors, array< float, 10 > &colorStarts, float rotationAngle)
Set gradient properties.
void setRenderAreaLeft(float renderAreaLeft)
Set up render area left.
Definition: GUIRenderer.h:241
void initRendering()
Init rendering.
void setMaskMaxValue(float maskMaxValue)
Set mask max value.
void setTexureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
const GUIColor & getGUIEffectColorMul()
Definition: GUIRenderer.h:177
void unsetGradient()
Disable gradient.
void setGUIEffectOffsetY(float guiEffectOffsetY)
Set GUI effect offset Y.
void setGUIEffectColorMul(const GUIColor &color)
Set GUI effect color mul.
Definition: GUIRenderer.h:185
static constexpr float SCREEN_BOTTOM
Definition: GUIRenderer.h:45
static constexpr float SCREEN_TOP
Definition: GUIRenderer.h:43
array< float, 4 > effectColorMulFinal
Definition: GUIRenderer.h:80
void setGUIEffectColorAdd(const GUIColor &color)
Set GUI effect color add.
Definition: GUIRenderer.h:200
void initScreen(GUIScreenNode *screenNode)
Init screen.
void bindTexture(int32_t textureId)
Bind texture.
void setGUIEffectOffsetX(float guiEffectOffsetX)
Set GUI effect offset X.
void doneRendering()
Done rendering.
array< float, 4 > effectColorAdd
Definition: GUIRenderer.h:79
vector< GUIEffectStackEntity > stackedEffects
Definition: GUIRenderer.h:84
void setRenderAreaRight(float renderAreaRight)
Set up render area right.
Definition: GUIRenderer.h:287
void setRenderAreaTop(float renderAreaTop)
Set up render area top.
Definition: GUIRenderer.h:264
static constexpr float SCREEN_RIGHT
Definition: GUIRenderer.h:44
void setSubRenderAreaRight(float renderAreaRight)
Set sub render area right.
Definition: GUIRenderer.h:295
void setSubRenderAreaLeft(float renderAreaLeft)
Set sub render area left.
Definition: GUIRenderer.h:249
static constexpr int QUAD_COUNT
Definition: GUIRenderer.h:48
void setEffectColorAdd(const GUIColor &color)
Set effect color add.
Definition: GUIRenderer.h:170
vector< int32_t > * vboIds
Definition: GUIRenderer.h:59
bool isQuadVisible(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)
Definition: GUIRenderer.h:391
void setSubRenderAreaTop(float renderAreaTop)
Set sub render area top.
Definition: GUIRenderer.h:272
void popEffects()
Pop effects.
Definition: GUIRenderer.h:371
void setGUI(GUI *gui)
Set GUI.
Definition: GUIRenderer.h:101
void setRenderOffsetY(float renderOffsetY)
Set render offset y.
Definition: GUIRenderer.h:348
void setEffectColorMul(const GUIColor &color)
Set effect color mul.
Definition: GUIRenderer.h:162
void pushEffects(const vector< GUIEffect * > &effects)
Push effects @oaran effects effects.
Definition: GUIRenderer.h:356
ByteBuffer * fbTextureCoordinatesByteBuffer
Definition: GUIRenderer.h:66
void bindMask(int32_t textureId)
Bind mask texture.
void setRenderAreaBottom(float renderAreaBottom)
Set up render area bottom.
Definition: GUIRenderer.h:310
array< float, 4 > effectColorAddFinal
Definition: GUIRenderer.h:81
GUIScreenNode * getScreenNode()
Definition: GUIRenderer.h:135
static constexpr float SCREEN_LEFT
Definition: GUIRenderer.h:42
void addQuad(float x1, float y1, float colorR1, float colorG1, float colorB1, float colorA1, float tu1, float tv1, float x2, float y2, float colorR2, float colorG2, float colorB2, float colorA2, float tu2, float tv2, float x3, float y3, float colorR3, float colorG3, float colorB3, float colorA3, float tu3, float tv3, float x4, float y4, float colorR4, float colorG4, float colorB4, float colorA4, float tu4, float tv4)
Add quad Note: quad vertices order 1 2 +-—+ | | | | +-—+ 4 3.
void setFontColor(const GUIColor &color)
Set effect color mul.
Definition: GUIRenderer.h:154
array< float, 4 > effectColorMul
Definition: GUIRenderer.h:78
void setRenderOffsetX(float renderOffsetX)
Set render offset x.
Definition: GUIRenderer.h:333
GUIRenderer(Renderer *renderer)
Public constructor.
Definition: GUIRenderer.cpp:43
Standard math functions.
Definition: Math.h:21
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
Byte buffer class.
Definition: ByteBuffer.h:24
Float buffer class.
Definition: FloatBuffer.h:18
Short buffer class.
Definition: ShortBuffer.h:14