71 auto vboManaged = Engine::getInstance()->getVBOManager()->addVBO(
"tdme.guirenderer", 4,
false,
false, created);
72 vboIds = vboManaged->getVBOIds();
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)));
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);
102 Engine::getInstance()->getVBOManager()->removeVBO(
"tdme.guirenderer");
113 Engine::getGUIShader()->useProgram();
120 Engine::getGUIShader()->unUseProgram();
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)
154 Console::println(
"GUIRenderer::addQuad()::too many quads");
182 auto quadBottom = y3;
198 tv1 = tv1 + ((tv3 - tv1) * ((y1 -
renderAreaTop) / (y1 - y3)));
199 tv2 = tv2 + ((tv4 - tv2) * ((y2 -
renderAreaTop) / (y1 - y4)));
276 Engine::guiShader->setGradient(count, colors, colorStarts, rotationAngle);
280 Engine::guiShader->unsetGradient();
286 fontColor = GUIColor::GUICOLOR_WHITE.getArray();
317 fontColor = GUIColor::GUICOLOR_WHITE.getArray();
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.
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.
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 bool isUsingShortIndices()=0
virtual void drawIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)=0
Draw indexed triangles from buffer objects.
int32_t CONTEXTINDEX_DEFAULT
Matrix2D3x3 & getTextureMatrix(int contextIdx)
Get texture matrix.
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.
virtual void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind vertices buffer object.
void setGUIEffectOffsetY(int guiEffectOffsetY)
Set GUI effect offset Y.
void setGUIEffectOffsetX(int guiEffectOffsetX)
Set GUI effect offset X.
GUI screen node that represents a screen that can be rendered via GUI system.
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.
void initRendering()
Init rendering.
void setMaskMaxValue(float maskMaxValue)
Set mask max value.
void setTexureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
void unsetGradient()
Disable gradient.
GUIColor guiEffectColorMul
ByteBuffer * fbVerticesByteBuffer
void setGUIEffectOffsetY(float guiEffectOffsetY)
Set GUI effect offset Y.
~GUIRenderer()
Destructor.
ByteBuffer * sbIndicesByteBuffer
static constexpr float SCREEN_BOTTOM
static constexpr float SCREEN_TOP
array< float, 4 > effectColorMulFinal
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
void doneScreen()
Done screen.
GUIScreenNode * screenNode
ByteBuffer * fbColorsByteBuffer
GUIColor guiEffectColorAdd
void setRenderAreaRight(float renderAreaRight)
Set up render area right.
void setRenderAreaTop(float renderAreaTop)
Set up render area top.
static constexpr float SCREEN_RIGHT
static constexpr int QUAD_COUNT
vector< int32_t > * vboIds
FloatBuffer fbTextureCoordinates
ByteBuffer * fbTextureCoordinatesByteBuffer
void bindMask(int32_t textureId)
Bind mask texture.
void setRenderAreaBottom(float renderAreaBottom)
Set up render area bottom.
array< float, 4 > fontColor
array< float, 4 > effectColorAddFinal
static constexpr float SCREEN_LEFT
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
Matrix2D3x3 & identity()
Setup identity matrix.
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.
ShortBuffer asShortBuffer()
virtual int32_t getPosition()
FloatBuffer * put(float value)
Put a float value into float buffer.
IntBuffer * put(int32_t value)
Puts a value into buffer at its current position.
ShortBuffer * put(int16_t value)
Put a value into current position.