TDME2 1.9.121
GUIRenderer.cpp
Go to the documentation of this file.
2
3#include <array>
4
5#include <tdme/tdme.h>
13#include <tdme/gui/GUI.h>
14#include <tdme/math/Math.h>
21#include <tdme/utilities/Time.h>
22
23using std::array;
24
33using tdme::gui::GUI;
42
43GUIRenderer::GUIRenderer(Renderer* renderer)
44{
45 this->renderer = renderer;
46 sbIndicesByteBuffer = ByteBuffer::allocate(QUAD_COUNT * 6 * (renderer->isUsingShortIndices() == true?sizeof(uint16_t):sizeof(uint32_t)));
47 fbVertices = (fbVerticesByteBuffer = ByteBuffer::allocate(QUAD_COUNT * 6 * 3 * sizeof(float)))->asFloatBuffer();
48 fbColors = (fbColorsByteBuffer = ByteBuffer::allocate(QUAD_COUNT * 6 * 4 * sizeof(float)))->asFloatBuffer();
49 fbTextureCoordinates = (fbTextureCoordinatesByteBuffer = ByteBuffer::allocate(QUAD_COUNT * 6 * 2 * sizeof(float)))->asFloatBuffer();
50 renderAreaLeft = 0.0f;
51 renderAreaTop = 0.0f;
52 renderAreaRight = 0.0f;
53 renderAreaBottom = 0.0f;
54 renderOffsetX = 0.0f;
55 renderOffsetY = 0.0f;
56 guiEffectOffsetX = 0.0f;
57 guiEffectOffsetY = 0.0f;
58}
59
63 delete fbColorsByteBuffer;
65}
66
68{
69 if (vboIds == nullptr) {
70 auto created = false;
71 auto vboManaged = Engine::getInstance()->getVBOManager()->addVBO("tdme.guirenderer", 4, false, false, created);
72 vboIds = vboManaged->getVBOIds();
73 if (renderer->isUsingShortIndices() == true) {
74 auto sbIndices = sbIndicesByteBuffer->asShortBuffer();
75 for (auto i = 0; i < QUAD_COUNT; i++) {
76 sbIndices.put(static_cast< uint16_t >((i * 4 + 0)));
77 sbIndices.put(static_cast< uint16_t >((i * 4 + 1)));
78 sbIndices.put(static_cast< uint16_t >((i * 4 + 2)));
79 sbIndices.put(static_cast< uint16_t >((i * 4 + 2)));
80 sbIndices.put(static_cast< uint16_t >((i * 4 + 3)));
81 sbIndices.put(static_cast< uint16_t >((i * 4 + 0)));
82 }
83 renderer->uploadIndicesBufferObject(renderer->CONTEXTINDEX_DEFAULT, (*vboIds)[0], sbIndices.getPosition() * sizeof(uint16_t), &sbIndices);
84 } else {
85 auto ibIndices = sbIndicesByteBuffer->asIntBuffer();
86 for (auto i = 0; i < QUAD_COUNT; i++) {
87 ibIndices.put(i * 4 + 0);
88 ibIndices.put(i * 4 + 1);
89 ibIndices.put(i * 4 + 2);
90 ibIndices.put(i * 4 + 2);
91 ibIndices.put(i * 4 + 3);
92 ibIndices.put(i * 4 + 0);
93 }
94 renderer->uploadIndicesBufferObject(renderer->CONTEXTINDEX_DEFAULT, (*vboIds)[0], ibIndices.getPosition() * sizeof(uint32_t), &ibIndices);
95 }
96 }
97}
98
100{
101 if (vboIds != nullptr) {
102 Engine::getInstance()->getVBOManager()->removeVBO("tdme.guirenderer");
103 vboIds = nullptr;
104 }
105}
106
108{
113 Engine::getGUIShader()->useProgram();
115}
116
118{
120 Engine::getGUIShader()->unUseProgram();
121}
122
124{
125 this->screenNode = screenNode;
126 guiEffectOffsetX = 0.0f;
127 guiEffectOffsetY = 0.0f;
130}
131
133{
134 this->screenNode = nullptr;
135 guiEffectColorMul = GUIColor::GUICOLOR_WHITE;
136 guiEffectColorAdd = GUIColor::GUICOLOR_BLACK;
137}
138
139void GUIRenderer::setGUIEffectOffsetX(float guiEffectOffsetX)
140{
141 this->guiEffectOffsetX = guiEffectOffsetX;
143}
144
145void GUIRenderer::setGUIEffectOffsetY(float guiEffectOffsetY)
146{
147 this->guiEffectOffsetY = guiEffectOffsetY;
149}
150
151void GUIRenderer::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)
152{
153 if (quadCount > QUAD_COUNT) {
154 Console::println("GUIRenderer::addQuad()::too many quads");
155 return;
156 }
157 x1 -= renderOffsetX;
158 x2 -= renderOffsetX;
159 x3 -= renderOffsetX;
160 x4 -= renderOffsetX;
161 y1 += renderOffsetY;
162 y2 += renderOffsetY;
163 y3 += renderOffsetY;
164 y4 += renderOffsetY;
165 x1 -= guiEffectOffsetX;
166 x2 -= guiEffectOffsetX;
167 x3 -= guiEffectOffsetX;
168 x4 -= guiEffectOffsetX;
169 y1 += guiEffectOffsetY;
170 y2 += guiEffectOffsetY;
171 y3 += guiEffectOffsetY;
172 y4 += guiEffectOffsetY;
173 auto renderAreaTop = this->renderAreaTop;
175 auto renderAreaRight = this->renderAreaRight;
176 auto renderAreaLeft = this->renderAreaLeft;
181
182 auto quadBottom = y3;
183 if (quadBottom > renderAreaTop) return;
184 auto quadTop = y1;
185 if (quadTop < renderAreaBottom) return;
186 auto quadLeft = x1;
187 if (quadLeft > renderAreaRight) return;
188 auto quadRight = x2;
189 if (quadRight < renderAreaLeft) return;
190
191 if (quadBottom < renderAreaBottom) {
192 tv3 = tv1 + ((tv3 - tv1) * ((y1 - renderAreaBottom) / (y1 - y3)));
193 tv4 = tv2 + ((tv4 - tv2) * ((y2 - renderAreaBottom) / (y1 - y4)));
194 y3 = renderAreaBottom;
195 y4 = renderAreaBottom;
196 }
197 if (quadTop > renderAreaTop) {
198 tv1 = tv1 + ((tv3 - tv1) * ((y1 - renderAreaTop) / (y1 - y3)));
199 tv2 = tv2 + ((tv4 - tv2) * ((y2 - renderAreaTop) / (y1 - y4)));
200 y1 = renderAreaTop;
201 y2 = renderAreaTop;
202 }
203 if (quadLeft < renderAreaLeft) {
204 tu1 = tu1 + ((tu2 - tu1) * ((renderAreaLeft - x1) / (x2 - x1)));
205 tu4 = tu4 + ((tu3 - tu4) * ((renderAreaLeft - x4) / (x3 - x4)));
206 x1 = renderAreaLeft;
207 x4 = renderAreaLeft;
208 }
209 if (quadRight > renderAreaRight) {
210 tu2 = tu2 - ((tu2 - tu1) * ((x2 - renderAreaRight) / (x2 - x1)));
211 tu3 = tu3 - ((tu3 - tu4) * ((x3 - renderAreaRight) / (x3 - x4)));
212 x2 = renderAreaRight;
213 x3 = renderAreaRight;
214 }
215
216 fbVertices.put(x1);
217 fbVertices.put(y1);
218 fbVertices.put(0.0f);
219 fbColors.put(colorR1);
220 fbColors.put(colorG1);
221 fbColors.put(colorB1);
222 fbColors.put(colorA1);
225 fbVertices.put(x2);
226 fbVertices.put(y2);
227 fbVertices.put(0.0f);
228 fbColors.put(colorR2);
229 fbColors.put(colorG2);
230 fbColors.put(colorB2);
231 fbColors.put(colorA2);
234 fbVertices.put(x3);
235 fbVertices.put(y3);
236 fbVertices.put(0.0f);
237 fbColors.put(colorR3);
238 fbColors.put(colorG3);
239 fbColors.put(colorB3);
240 fbColors.put(colorA3);
243 fbVertices.put(x4);
244 fbVertices.put(y4);
245 fbVertices.put(0.0f);
246 fbColors.put(colorR4);
247 fbColors.put(colorG4);
248 fbColors.put(colorB4);
249 fbColors.put(colorA4);
252 quadCount++;
253}
254
255void GUIRenderer::setTexureMatrix(const Matrix2D3x3& textureMatrix) {
257}
258
259void GUIRenderer::bindTexture(int32_t textureId)
260{
262}
263
264void GUIRenderer::bindMask(int32_t textureId)
265{
269}
270
271void GUIRenderer::setMaskMaxValue(float maskMaxValue) {
273}
274
275void GUIRenderer::setGradient(int count, array<GUIColor, 10>& colors, array<float, 10>& colorStarts, float rotationAngle) {
276 Engine::guiShader->setGradient(count, colors, colorStarts, rotationAngle);
277}
278
280 Engine::guiShader->unsetGradient();
281}
282
284{
285 if (quadCount == 0) {
286 fontColor = GUIColor::GUICOLOR_WHITE.getArray();
287 effectColorMul = GUIColor::GUICOLOR_WHITE.getArray();
288 effectColorAdd = GUIColor::GUICOLOR_BLACK.getArray();
289 return;
290 }
291 // use default context
292 auto contextIdx = renderer->CONTEXTINDEX_DEFAULT;
293 renderer->uploadBufferObject(contextIdx, (*vboIds)[1], fbVertices.getPosition() * sizeof(float), &fbVertices);
294 renderer->uploadBufferObject(contextIdx, (*vboIds)[2], fbColors.getPosition() * sizeof(float), &fbColors);
296 renderer->bindIndicesBufferObject(contextIdx, (*vboIds)[0]);
297 renderer->bindVerticesBufferObject(contextIdx, (*vboIds)[1]);
298 renderer->bindColorsBufferObject(contextIdx, (*vboIds)[2]);
307 effectColorAddFinal[3] = 0.0f;
310 renderer->onUpdateEffect(contextIdx);
311 renderer->onUpdateTextureMatrix(contextIdx);
313 quadCount = 0;
315 fbColors.clear();
317 fontColor = GUIColor::GUICOLOR_WHITE.getArray();
318 effectColorMul = GUIColor::GUICOLOR_WHITE.getArray();
319 effectColorAdd = GUIColor::GUICOLOR_BLACK.getArray();
320 effectColorAdd[3] = 0.0f;
321 guiEffectColorAdd[3] = 0.0f;
322}
323
Engine main class.
Definition: Engine.h:122
virtual void setTextureUnit(int contextIdx, int32_t textureUnit)=0
Sets up texture unit.
virtual void uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data)=0
Uploads buffer data to buffer object.
array< float, 4 > & getEffectColorMul(int contextIdx)
Get effect color mul.
Definition: Renderer.h:1116
virtual void unbindBufferObjects(int contextIdx)=0
Unbind buffer objects.
virtual void onUpdateTextureMatrix(int contextIdx)=0
Update texture matrix for active texture unit event.
void setMaskMaxValue(int contextIdx, float maskMaxValue)
Set mask max value.
Definition: Renderer.h:1335
virtual void bindTexture(int contextIdx, int32_t textureId)=0
Binds a texture with given id or unbinds when using ID_NONE.
virtual void bindIndicesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind indices buffer object.
virtual void drawIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)=0
Draw indexed triangles from buffer objects.
Matrix2D3x3 & getTextureMatrix(int contextIdx)
Get texture matrix.
Definition: Renderer.h:578
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0
Uploads buffer data to buffer object.
virtual void bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind texture coordinates buffer object.
virtual void onUpdateEffect(int contextIdx)=0
Update material.
virtual void bindColorsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind colors buffer object.
array< float, 4 > & getEffectColorAdd(int contextIdx)
Get effect color add.
Definition: Renderer.h:1126
virtual void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind vertices buffer object.
GUI module class.
Definition: GUI.h:66
void setGUIEffectOffsetY(int guiEffectOffsetY)
Set GUI effect offset Y.
Definition: GUINode.h:640
void setGUIEffectOffsetX(int guiEffectOffsetX)
Set GUI effect offset X.
Definition: GUINode.h:625
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
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.
void unsetGradient()
Disable gradient.
void setGUIEffectOffsetY(float guiEffectOffsetY)
Set GUI effect offset Y.
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 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
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
static constexpr int QUAD_COUNT
Definition: GUIRenderer.h:48
vector< int32_t > * vboIds
Definition: GUIRenderer.h:59
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
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.
array< float, 4 > effectColorMul
Definition: GUIRenderer.h:78
Standard math functions.
Definition: Math.h:21
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
Matrix2D3x3 & identity()
Setup identity matrix.
Definition: Matrix2D3x3.h:116
Matrix2D3x3 & set(float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2)
Set up matrix by values.
Definition: Matrix2D3x3.h:79
Buffer * clear()
Clear.
Definition: Buffer.h:69
Byte buffer class.
Definition: ByteBuffer.h:24
ShortBuffer asShortBuffer()
Definition: ByteBuffer.h:50
Console class.
Definition: Console.h:26
Float buffer class.
Definition: FloatBuffer.h:18
virtual int32_t getPosition()
Definition: FloatBuffer.h:30
FloatBuffer * put(float value)
Put a float value into float buffer.
Definition: FloatBuffer.h:52
Integer buffer class.
Definition: IntBuffer.h:14
IntBuffer * put(int32_t value)
Puts a value into buffer at its current position.
Definition: IntBuffer.h:59
Short buffer class.
Definition: ShortBuffer.h:14
ShortBuffer * put(int16_t value)
Put a value into current position.
Definition: ShortBuffer.h:58
Time utility class.
Definition: Time.h:21