TDME2 1.9.121
GUIGradientNode.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
16#include <tdme/gui/GUI.h>
22
24
37using tdme::gui::GUI;
43
44GUIGradientNode::Gradient GUIGradientNode::createGradient(const string& colors, const string& rotation) {
46 gradient.rotationAngle = Integer::parse(rotation);
47 auto colorsArray = StringTools::tokenize(colors, ",");
48 for (auto& color: colorsArray) {
49 auto colorComponents = StringTools::tokenize(color, "=");
50 if (colorComponents.size() != 2) {
51 Console::println("GUIGradientNode::createGradient():color invalid: " + color);
52 continue;
53 }
54 if (StringTools::endsWith(colorComponents[0], "%") == false) {
55 Console::println("GUIGradientNode::createGradient():color start invalid: " + colorComponents[0]);
56 continue;
57 }
58 colorComponents[0] = StringTools::trim(colorComponents[0]);
59 colorComponents[0] = StringTools::substring(colorComponents[0], 0, colorComponents[0].size() - 1);
60 colorComponents[1] = StringTools::trim(colorComponents[1]);
61 auto start = Float::parse(colorComponents[0]) / 100.0f;
62 auto guiColor = GUIColor(colorComponents[1]);
63 gradient.colors[gradient.count] = guiColor;
66 }
67 return gradient;
68}
69
71 GUIScreenNode* screenNode,
72 GUIParentNode* parentNode,
73 const string& id,
74 GUINode_Flow* flow,
75 const GUINode_Alignments& alignments,
76 const GUINode_RequestedConstraints& requestedConstraints,
77 const GUIColor& backgroundColor,
78 const string& backgroundImage,
79 const GUINode_Scale9Grid& backgroundImageScale9Grid,
80 const GUIColor& backgroundImageEffectColorMul,
81 const GUIColor& backgroundImageEffectColorAdd,
82 const GUINode_Border& border,
83 const GUINode_Padding& padding,
84 const GUINodeConditions& showOn,
85 const GUINodeConditions& hideOn,
86 const GUIColor& effectColorMul,
87 const GUIColor& effectColorAdd,
88 const GUINode_Clipping& clipping,
89 const string& mask,
90 float maskMaxValue,
91 const Gradient& gradient):
92 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
93{
94 this->effectColorMul = effectColorMul;
95 this->effectColorAdd = effectColorAdd;
96 this->textureMatrix.identity();
97 this->clipping = clipping;
98 this->setMask(mask);
99 this->maskMaxValue = maskMaxValue;
100 this->gradient = gradient;
101}
102
104{
105 return "gradient";
106}
107
109{
110 return true;
111}
112
114{
117 } else {
119 }
120}
121
123{
126 } else {
128 }
129}
130
132{
133 if (maskTexture != nullptr) Engine::getInstance()->getTextureManager()->removeTexture(maskTexture->getId());
135}
136
138{
139 if (shouldRender() == false) return;
140
141 GUINode::render(guiRenderer);
142
143 // clipping
144 {
145 auto renderOffsetYCurrent = guiRenderer->getRenderOffsetY();
146 auto screenWidth = screenNode->getScreenWidth();
147 auto screenHeight = screenNode->getScreenHeight();
152 auto renderAreaLeft = ((left) / (screenWidth / 2.0f)) - 1.0f;
153 auto renderAreaTop = ((screenHeight - top) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
154 auto renderAreaRight = ((left + width) / (screenWidth / 2.0f)) - 1.0f;
155 auto renderAreaBottom = ((screenHeight - top - height) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
156 guiRenderer->setSubRenderAreaLeft(renderAreaLeft);
157 guiRenderer->setSubRenderAreaTop(renderAreaTop);
158 guiRenderer->setSubRenderAreaRight(renderAreaRight);
159 guiRenderer->setSubRenderAreaBottom(renderAreaBottom);
160 }
161
162 // render texture if required
163 if (maskTextureId != 0) {
164 guiRenderer->setMaskMaxValue(maskMaxValue);
165 guiRenderer->bindMask(maskTextureId);
166 }
168 //
169 auto screenWidth = screenNode->getScreenWidth();
170 auto screenHeight = screenNode->getScreenHeight();
171 guiRenderer->setTexureMatrix(textureMatrix);
172 guiRenderer->setEffectColorMul(effectColorMul);
173 guiRenderer->setEffectColorAdd(effectColorAdd);
176 float width = getContentWidth() - padding.left - padding.right;
177 float height = getContentHeight() - padding.top - padding.bottom;
178 guiRenderer->addQuad(
179 ((left) / (screenWidth / 2.0f)) - 1.0f,
180 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
181 1.0f, 1.0f, 1.0f, 1.0f,
182 0.0f,
183 0.0f,
184 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
185 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
186 1.0f, 1.0f, 1.0f, 1.0f,
187 1.0f,
188 0.0f,
189 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
190 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
191 1.0f, 1.0f, 1.0f, 1.0f,
192 1.0f,
193 1.0f,
194 ((left) / (screenWidth / 2.0f)) - 1.0f,
195 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
196 1.0f, 1.0f, 1.0f, 1.0f,
197 0.0f,
198 1.0f
199 );
200 guiRenderer->render();
201 // gradient
202 guiRenderer->unsetGradient();
203 //
204 guiRenderer->bindTexture(0);
205 if (maskTextureId != 0) {
206 guiRenderer->setMaskMaxValue(1.0f);
207 guiRenderer->bindMask(0);
208 }
209 guiRenderer->setTexureMatrix((Matrix2D3x3()).identity());
210}
211
213 this->textureMatrix.set(textureMatrix);
214}
215
217 return effectColorMul;
218}
219
220void GUIGradientNode::setEffectColorMul(const GUIColor& effectColorMul) {
221 this->effectColorMul = effectColorMul;
222}
223
225 return effectColorAdd;
226}
227
228void GUIGradientNode::setEffectColorAdd(const GUIColor& effectColorAdd) {
229 this->effectColorAdd = effectColorAdd;
230}
231
233 return clipping;
234}
235
236GUINode_Clipping GUIGradientNode::createClipping(const string& allClipping, const string& left, const string& top, const string& right, const string& bottom)
237{
239 clipping.left = getRequestedPixelValue(allClipping, 0);
240 clipping.top = getRequestedPixelValue(allClipping, 0);
241 clipping.right = getRequestedPixelValue(allClipping, 0);
242 clipping.bottom = getRequestedPixelValue(allClipping, 0);
247 return clipping;
248}
249
251 return mask;
252}
253
254void GUIGradientNode::setMask(const string& mask) {
255 if (maskTexture != nullptr) {
256 Engine::getInstance()->getTextureManager()->removeTexture(maskTexture->getId());
257 maskTexture = nullptr;
258 }
259 this->mask = mask;
260 this->maskTexture = mask.empty() == true?nullptr:GUI::getImage(screenNode->getApplicationRootPathName(), mask);
261 this->maskTextureId = maskTexture == nullptr?0:Engine::getInstance()->getTextureManager()->addTexture(maskTexture, 0);
262}
Engine main class.
Definition: Engine.h:122
const string & getId() const
Definition: Texture.h:60
GUI module class.
Definition: GUI.h:66
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
Definition: GUI.cpp:145
static GUINode_Clipping createClipping(const string &allClipping, const string &left, const string &top, const string &right, const string &bottom)
Create clipping.
const string getNodeType() override
void setEffectColorMul(const GUIColor &effectColorMul)
Set effect color mul.
void dispose() override
Dispose node.
void setTextureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
void setMask(const string &mask)
Set mask source.
GUIGradientNode(GUIScreenNode *screenNode, GUIParentNode *parentNode, const string &id, GUINode_Flow *flow, const GUINode_Alignments &alignments, const GUINode_RequestedConstraints &requestedConstraints, const GUIColor &backgroundColor, const string &backgroundImage, const GUINode_Scale9Grid &backgroundImageScale9Grid, const GUIColor &backgroundImageEffectColorMul, const GUIColor &backgroundImageEffectColorAdd, const GUINode_Border &border, const GUINode_Padding &padding, const GUINodeConditions &showOn, const GUINodeConditions &hideOn, const GUIColor &effectColorMul, const GUIColor &effectColorAdd, const GUINode_Clipping &clipping, const string &mask, float maskMaxValue, const Gradient &gradient)
Constructor.
void render(GUIRenderer *guiRenderer) override
Render.
void setEffectColorAdd(const GUIColor &effectColorAdd)
Set effect color add.
GUI element node conditions.
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
GUI node base class.
Definition: GUINode.h:63
GUINode_Border border
Definition: GUINode.h:159
virtual void render(GUIRenderer *guiRenderer)
Render.
Definition: GUINode.cpp:508
static int getRequestedPixelValue(const string &value, int defaultValue)
Get requested pixel value.
Definition: GUINode.cpp:322
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
GUINode_Padding padding
Definition: GUINode.h:158
GUIScreenNode * screenNode
Definition: GUINode.h:146
GUINode_RequestedConstraints requestedConstraints
Definition: GUINode.h:150
bool shouldRender()
Determine if to render.
Definition: GUINode.h:295
virtual void dispose()
Dispose node.
Definition: GUINode.cpp:460
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
const string & getApplicationRootPathName()
void setSubRenderAreaBottom(float renderAreaBottom)
Set sub render area bottom.
Definition: GUIRenderer.h:318
void setGradient(int count, array< GUIColor, 10 > &colors, array< float, 10 > &colorStarts, float rotationAngle)
Set gradient properties.
void setMaskMaxValue(float maskMaxValue)
Set mask max value.
void setTexureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
void unsetGradient()
Disable gradient.
void bindTexture(int32_t textureId)
Bind texture.
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
void setEffectColorAdd(const GUIColor &color)
Set effect color add.
Definition: GUIRenderer.h:170
void setSubRenderAreaTop(float renderAreaTop)
Set sub render area top.
Definition: GUIRenderer.h:272
void setEffectColorMul(const GUIColor &color)
Set effect color mul.
Definition: GUIRenderer.h:162
void bindMask(int32_t textureId)
Bind mask texture.
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.
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
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
String tools class.
Definition: StringTools.h:20
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.