TDME2 1.9.121
|
#include <tdme/gui/renderer/GUIRenderer.h>
Classes | |
struct | GUIEffectStackEntity |
Public Member Functions | |
GUIRenderer (Renderer *renderer) | |
Public constructor. More... | |
~GUIRenderer () | |
Destructor. More... | |
void | setGUI (GUI *gui) |
Set GUI. More... | |
GUI * | getGUI () |
void | initialize () |
Init. More... | |
void | dispose () |
Dispose. More... | |
void | initRendering () |
Init rendering. More... | |
void | doneRendering () |
Done rendering. More... | |
GUIScreenNode * | getScreenNode () |
void | initScreen (GUIScreenNode *screenNode) |
Init screen. More... | |
void | doneScreen () |
Done screen. More... | |
void | setFontColor (const GUIColor &color) |
Set effect color mul. More... | |
void | setEffectColorMul (const GUIColor &color) |
Set effect color mul. More... | |
void | setEffectColorAdd (const GUIColor &color) |
Set effect color add. More... | |
const GUIColor & | getGUIEffectColorMul () |
void | setGUIEffectColorMul (const GUIColor &color) |
Set GUI effect color mul. More... | |
const GUIColor & | getGUIEffectColorAdd () |
void | setGUIEffectColorAdd (const GUIColor &color) |
Set GUI effect color add. More... | |
float | getGUIEffectOffsetX () |
void | setGUIEffectOffsetX (float guiEffectOffsetX) |
Set GUI effect offset X. More... | |
float | getGUIEffectOffsetY () |
void | setGUIEffectOffsetY (float guiEffectOffsetY) |
Set GUI effect offset Y. More... | |
float | getRenderAreaLeft () |
void | setRenderAreaLeft (float renderAreaLeft) |
Set up render area left. More... | |
void | setSubRenderAreaLeft (float renderAreaLeft) |
Set sub render area left. More... | |
float | getRenderAreaTop () |
void | setRenderAreaTop (float renderAreaTop) |
Set up render area top. More... | |
void | setSubRenderAreaTop (float renderAreaTop) |
Set sub render area top. More... | |
float | getRenderAreaRight () |
void | setRenderAreaRight (float renderAreaRight) |
Set up render area right. More... | |
void | setSubRenderAreaRight (float renderAreaRight) |
Set sub render area right. More... | |
float | getRenderAreaBottom () |
void | setRenderAreaBottom (float renderAreaBottom) |
Set up render area bottom. More... | |
void | setSubRenderAreaBottom (float renderAreaBottom) |
Set sub render area bottom. More... | |
float | getRenderOffsetX () |
void | setRenderOffsetX (float renderOffsetX) |
Set render offset x. More... | |
float | getRenderOffsetY () |
void | setRenderOffsetY (float renderOffsetY) |
Set render offset y. More... | |
void | pushEffects (const vector< GUIEffect * > &effects) |
Push effects @oaran effects effects. More... | |
void | popEffects () |
Pop effects. More... | |
bool | isQuadVisible (float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) |
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. More... | |
void | setTexureMatrix (const Matrix2D3x3 &textureMatrix) |
Set texture matrix. More... | |
void | bindTexture (int32_t textureId) |
Bind texture. More... | |
void | bindMask (int32_t textureId) |
Bind mask texture. More... | |
void | setMaskMaxValue (float maskMaxValue) |
Set mask max value. More... | |
void | setGradient (int count, array< GUIColor, 10 > &colors, array< float, 10 > &colorStarts, float rotationAngle) |
Set gradient properties. More... | |
void | unsetGradient () |
Disable gradient. More... | |
void | render () |
Render. More... | |
Static Public Attributes | |
static constexpr float | SCREEN_LEFT { -1.0f } |
static constexpr float | SCREEN_TOP { 1.0f } |
static constexpr float | SCREEN_RIGHT { 1.0f } |
static constexpr float | SCREEN_BOTTOM { -1.0f } |
Private Attributes | |
GUI * | gui { nullptr } |
Renderer * | renderer { nullptr } |
vector< int32_t > * | vboIds { nullptr } |
int | quadCount { 0 } |
ByteBuffer * | sbIndicesByteBuffer { nullptr } |
ByteBuffer * | fbVerticesByteBuffer { nullptr } |
FloatBuffer | fbVertices |
ByteBuffer * | fbColorsByteBuffer { nullptr } |
FloatBuffer | fbColors |
ByteBuffer * | fbTextureCoordinatesByteBuffer |
FloatBuffer | fbTextureCoordinates |
float | renderAreaLeft |
float | renderAreaTop |
float | renderAreaRight |
float | renderAreaBottom |
float | renderOffsetX |
float | renderOffsetY |
GUIScreenNode * | screenNode { nullptr } |
GUIColor | guiEffectColorMul |
GUIColor | guiEffectColorAdd |
array< float, 4 > | fontColor |
array< float, 4 > | effectColorMul |
array< float, 4 > | effectColorAdd |
array< float, 4 > | effectColorMulFinal |
array< float, 4 > | effectColorAddFinal |
float | guiEffectOffsetX |
float | guiEffectOffsetY |
vector< GUIEffectStackEntity > | stackedEffects |
Static Private Attributes | |
static constexpr int | QUAD_COUNT { 1024 } |
GUIRenderer | ( | Renderer * | renderer | ) |
Public constructor.
Definition at line 43 of file GUIRenderer.cpp.
~GUIRenderer | ( | ) |
Destructor.
Definition at line 60 of file GUIRenderer.cpp.
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.
x1 | x 1 |
y1 | y 1 |
colorR1 | color red 1 |
colorG1 | color green 1 |
colorB1 | color blue 1 |
colorA1 | color alpha 1 |
tu1 | texture u 1 |
tv1 | texture v 1 |
x2 | x 2 |
y2 | y 2 |
colorR2 | color red 2 |
colorG2 | color green 2 |
colorB2 | color blue 2 |
colorA2 | color alpha 2 |
tu2 | texture u 2 |
tv2 | texture v 2 |
x3 | x 3 |
y3 | y 3 |
colorR3 | color red 3 |
colorG3 | color green 3 |
colorB3 | color blue 3 |
colorA3 | color alpha 3 |
tu3 | texture u 3 |
tv3 | texture v 3 |
x4 | x 4 |
y4 | y 4 |
colorR4 | color red 4 |
colorG4 | color green 4 |
colorB4 | color blue 4 |
colorA4 | color alpha 4 |
tu4 | texture u 4 |
tv4 | texture v 4 |
Definition at line 151 of file GUIRenderer.cpp.
void bindMask | ( | int32_t | textureId | ) |
void bindTexture | ( | int32_t | textureId | ) |
void dispose | ( | ) |
Dispose.
Definition at line 99 of file GUIRenderer.cpp.
void doneRendering | ( | ) |
Done rendering.
Definition at line 117 of file GUIRenderer.cpp.
void doneScreen | ( | ) |
Done screen.
Definition at line 132 of file GUIRenderer.cpp.
|
inline |
Definition at line 108 of file GUIRenderer.h.
|
inline |
Definition at line 192 of file GUIRenderer.h.
|
inline |
Definition at line 177 of file GUIRenderer.h.
|
inline |
Definition at line 207 of file GUIRenderer.h.
|
inline |
Definition at line 220 of file GUIRenderer.h.
|
inline |
Definition at line 302 of file GUIRenderer.h.
|
inline |
Definition at line 233 of file GUIRenderer.h.
|
inline |
Definition at line 279 of file GUIRenderer.h.
|
inline |
Definition at line 256 of file GUIRenderer.h.
|
inline |
Definition at line 325 of file GUIRenderer.h.
|
inline |
Definition at line 340 of file GUIRenderer.h.
|
inline |
Definition at line 135 of file GUIRenderer.h.
void initialize | ( | ) |
Init.
Definition at line 67 of file GUIRenderer.cpp.
void initRendering | ( | ) |
Init rendering.
Definition at line 107 of file GUIRenderer.cpp.
void initScreen | ( | GUIScreenNode * | screenNode | ) |
|
inline |
Definition at line 391 of file GUIRenderer.h.
|
inline |
Pop effects.
Definition at line 371 of file GUIRenderer.h.
|
inline |
Push effects @oaran effects effects.
Definition at line 356 of file GUIRenderer.h.
void render | ( | ) |
Render.
Definition at line 283 of file GUIRenderer.cpp.
|
inline |
|
inline |
|
inline |
void setGradient | ( | int | count, |
array< GUIColor, 10 > & | colors, | ||
array< float, 10 > & | colorStarts, | ||
float | rotationAngle | ||
) |
Set gradient properties.
count | color count |
colors | colors |
colorStarts | color starts |
rotationAngle | rotationAngle |
Definition at line 275 of file GUIRenderer.cpp.
|
inline |
|
inline |
|
inline |
void setGUIEffectOffsetX | ( | float | guiEffectOffsetX | ) |
Set GUI effect offset X.
guiEffectOffsetX | gui effect offset X |
Definition at line 139 of file GUIRenderer.cpp.
void setGUIEffectOffsetY | ( | float | guiEffectOffsetY | ) |
Set GUI effect offset Y.
guiEffectOffsetY | GUI effect offset Y |
Definition at line 145 of file GUIRenderer.cpp.
void setMaskMaxValue | ( | float | maskMaxValue | ) |
Set mask max value.
maskMaxValue | mask maximum value |
Definition at line 271 of file GUIRenderer.cpp.
|
inline |
Set up render area bottom.
renderAreaBottom | render area bottom |
Definition at line 310 of file GUIRenderer.h.
|
inline |
Set up render area left.
renderAreaLeft | render area left |
Definition at line 241 of file GUIRenderer.h.
|
inline |
Set up render area right.
renderAreaRight | render area right |
Definition at line 287 of file GUIRenderer.h.
|
inline |
Set up render area top.
renderAreaTop | render area top |
Definition at line 264 of file GUIRenderer.h.
|
inline |
Set render offset x.
renderOffsetX | render offset x |
Definition at line 333 of file GUIRenderer.h.
|
inline |
Set render offset y.
renderOffsetY | render offset y |
Definition at line 348 of file GUIRenderer.h.
|
inline |
Set sub render area bottom.
renderAreaBottom | render area bottom |
Definition at line 318 of file GUIRenderer.h.
|
inline |
Set sub render area left.
renderAreaLeft | render area left |
Definition at line 249 of file GUIRenderer.h.
|
inline |
Set sub render area right.
renderAreaRight | render area right |
Definition at line 295 of file GUIRenderer.h.
|
inline |
Set sub render area top.
renderAreaTop | render area top |
Definition at line 272 of file GUIRenderer.h.
void setTexureMatrix | ( | const Matrix2D3x3 & | textureMatrix | ) |
Set texture matrix.
textureMatrix | texture matrix |
Definition at line 255 of file GUIRenderer.cpp.
void unsetGradient | ( | ) |
Disable gradient.
Definition at line 279 of file GUIRenderer.cpp.
|
private |
Definition at line 79 of file GUIRenderer.h.
|
private |
Definition at line 81 of file GUIRenderer.h.
|
private |
Definition at line 78 of file GUIRenderer.h.
|
private |
Definition at line 80 of file GUIRenderer.h.
|
private |
Definition at line 65 of file GUIRenderer.h.
|
private |
Definition at line 64 of file GUIRenderer.h.
|
private |
Definition at line 67 of file GUIRenderer.h.
|
private |
Definition at line 66 of file GUIRenderer.h.
|
private |
Definition at line 63 of file GUIRenderer.h.
|
private |
Definition at line 62 of file GUIRenderer.h.
|
private |
Definition at line 77 of file GUIRenderer.h.
|
private |
Definition at line 57 of file GUIRenderer.h.
|
private |
Definition at line 76 of file GUIRenderer.h.
|
private |
Definition at line 75 of file GUIRenderer.h.
|
private |
Definition at line 82 of file GUIRenderer.h.
|
private |
Definition at line 83 of file GUIRenderer.h.
|
staticconstexprprivate |
Definition at line 48 of file GUIRenderer.h.
|
private |
Definition at line 60 of file GUIRenderer.h.
|
private |
Definition at line 71 of file GUIRenderer.h.
|
private |
Definition at line 68 of file GUIRenderer.h.
|
private |
Definition at line 70 of file GUIRenderer.h.
|
private |
Definition at line 69 of file GUIRenderer.h.
|
private |
Definition at line 58 of file GUIRenderer.h.
|
private |
Definition at line 72 of file GUIRenderer.h.
|
private |
Definition at line 73 of file GUIRenderer.h.
|
private |
Definition at line 61 of file GUIRenderer.h.
|
staticconstexpr |
Definition at line 45 of file GUIRenderer.h.
|
staticconstexpr |
Definition at line 42 of file GUIRenderer.h.
|
staticconstexpr |
Definition at line 44 of file GUIRenderer.h.
|
staticconstexpr |
Definition at line 43 of file GUIRenderer.h.
|
private |
Definition at line 74 of file GUIRenderer.h.
|
private |
Definition at line 84 of file GUIRenderer.h.
|
private |
Definition at line 59 of file GUIRenderer.h.