TDME2 1.9.121
GUITextureBaseNode.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
16#include <tdme/gui/GUI.h>
18#include <tdme/math/Vector2.h>
21
23
36using tdme::gui::GUI;
41
42GUITextureBaseNode::GUITextureBaseNode(
43 GUIScreenNode* screenNode,
44 GUIParentNode* parentNode,
45 const string& id,
46 GUINode_Flow* flow,
47 const GUINode_Alignments& alignments,
48 const GUINode_RequestedConstraints& requestedConstraints,
49 const GUIColor& backgroundColor,
50 const string& backgroundImage,
51 const GUINode_Scale9Grid& backgroundImageScale9Grid,
52 const GUIColor& backgroundImageEffectColorMul,
53 const GUIColor& backgroundImageEffectColorAdd,
54 const GUINode_Border& border,
55 const GUINode_Padding& padding,
56 const GUINodeConditions& showOn,
57 const GUINodeConditions& hideOn,
58 const RequestedDimensionConstraints& requestedDimensionConstraints,
59 bool mirrorX,
60 bool mirrorY,
61 const GUIColor& effectColorMul,
62 const GUIColor& effectColorAdd,
63 const GUINode_Scale9Grid& scale9Grid,
64 const GUINode_Clipping& clipping,
65 const string& mask,
66 float maskMaxValue):
67 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
68{
69 this->requestedDimensionConstraints = requestedDimensionConstraints;
70 this->mirrorX = mirrorX;
71 this->mirrorY = mirrorY;
72 this->effectColorMul = effectColorMul;
73 this->effectColorAdd = effectColorAdd;
74 this->scale9Grid = scale9Grid;
75 this->textureMatrix.identity();
76 this->clipping = clipping;
77 this->setMask(mask);
78 this->maskMaxValue = maskMaxValue;
80 mirrorTextureMatrix.scale(Vector2(mirrorX == true?-1.0f:1.0f, mirrorY == true?-1.0f:1.0f));
81 mirrorTextureMatrix.translate(Vector2(mirrorX == true?1.0f:0.0f, mirrorY == true?1.0f:0.0f));
83}
84
86{
87 return true;
88}
89
91{
94 } else {
96 }
97}
98
100{
103 } else {
105 }
106}
107
109{
110 if (maskTexture != nullptr) Engine::getInstance()->getTextureManager()->removeTexture(maskTexture->getId());
112}
113
115{
116 if (shouldRender() == false) return;
117
118 GUINode::render(guiRenderer);
119
120 // clipping
121 {
122 auto renderOffsetYCurrent = guiRenderer->getRenderOffsetY();
123 auto screenWidth = screenNode->getScreenWidth();
124 auto screenHeight = screenNode->getScreenHeight();
129 auto renderAreaLeft = ((left) / (screenWidth / 2.0f)) - 1.0f;
130 auto renderAreaTop = ((screenHeight - top) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
131 auto renderAreaRight = ((left + width) / (screenWidth / 2.0f)) - 1.0f;
132 auto renderAreaBottom = ((screenHeight - top - height) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
133 guiRenderer->setSubRenderAreaLeft(renderAreaLeft);
134 guiRenderer->setSubRenderAreaTop(renderAreaTop);
135 guiRenderer->setSubRenderAreaRight(renderAreaRight);
136 guiRenderer->setSubRenderAreaBottom(renderAreaBottom);
137 }
138
139 // render texture if required
140 if (textureId != 0) {
141 if (maskTextureId != 0) {
142 guiRenderer->setMaskMaxValue(maskMaxValue);
143 guiRenderer->bindMask(maskTextureId);
144 }
145 auto screenWidth = screenNode->getScreenWidth();
146 auto screenHeight = screenNode->getScreenHeight();
147 guiRenderer->bindTexture(textureId);
148 guiRenderer->setTexureMatrix(textureMatrix);
149 guiRenderer->setEffectColorMul(effectColorMul);
150 guiRenderer->setEffectColorAdd(effectColorAdd);
151 if (scale9Grid.left == 0 &&
152 scale9Grid.right == 0 &&
153 scale9Grid.top == 0 &&
154 scale9Grid.bottom == 0) {
157 float width = getContentWidth() - padding.left - padding.right;
158 float height = getContentHeight() - padding.top - padding.bottom;
159 guiRenderer->addQuad(
160 ((left) / (screenWidth / 2.0f)) - 1.0f,
161 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
162 1.0f, 1.0f, 1.0f, 1.0f,
163 0.0f,
164 0.0f,
165 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
166 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
167 1.0f, 1.0f, 1.0f, 1.0f,
168 1.0f,
169 0.0f,
170 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
171 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
172 1.0f, 1.0f, 1.0f, 1.0f,
173 1.0f,
174 1.0f,
175 ((left) / (screenWidth / 2.0f)) - 1.0f,
176 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
177 1.0f, 1.0f, 1.0f, 1.0f,
178 0.0f,
179 1.0f
180 );
181 } else {
182 // TODO: padding
183 auto scaleX = 1.0f;
184 auto scaleY = 1.0f;
185 // we have a scale here, because we have a axis without "scale9grid"
186 if (scale9Grid.top == 0 && scale9Grid.bottom == 0) {
187 scaleY = (float)getContentHeight() / (float)textureHeight;
188 scaleX = scaleY;
189 } else
190 // we have a scale here, because we have a axis without "scale9grid"
191 if (scale9Grid.left == 0 && scale9Grid.right == 0) {
192 scaleX = (float)getContentWidth() / (float)textureWidth;
193 scaleY = scaleX;
194 } else {
195 // scale Y if content height is too small to fit scale 9 top and bottom
197 scaleY = getContentHeight() < Math::EPSILON?0.0f:(float)getContentHeight() / (float)(scale9Grid.top + scale9Grid.bottom);
198 }
199 // scale X if content width is too small to fit scale 9 left and top
201 scaleX = getContentWidth() < Math::EPSILON?0.0f:(float)getContentWidth() / (float)(scale9Grid.left + scale9Grid.right);
202 }
203 }
204 // we have no certain scale, take original image size
205 GUINode_Scale9Grid scaledScale9Grid;
206 scaledScale9Grid.left = static_cast<int>(scale9Grid.left * scaleX);
207 scaledScale9Grid.right = static_cast<int>(scale9Grid.right * scaleX);
208 scaledScale9Grid.top = static_cast<int>(scale9Grid.top * scaleY);
209 scaledScale9Grid.bottom = static_cast<int>(scale9Grid.bottom * scaleY);
212 float imageScreenScale9Left = imageScreenLeft + scaledScale9Grid.left;
213 float imageScreenScale9Top = imageScreenTop + scaledScale9Grid.top;
214 float imageScreenWidth = getContentWidth();
215 float imageScreenHeight = getContentHeight();
216 float imageScreenScale9Right = imageScreenLeft + imageScreenWidth - scaledScale9Grid.right;
217 float imageScreenScale9Bottom = imageScreenTop + imageScreenHeight - scaledScale9Grid.bottom;
218 float imageTextureWidth = textureWidth;
219 float imageTextureHeight = textureHeight;
220 // left top
221 if (scaledScale9Grid.left > 0 && scaledScale9Grid.top > 0) {
222 float left = imageScreenLeft;
223 float top = imageScreenTop;
224 float width = scaledScale9Grid.left;
225 float height = scaledScale9Grid.top;
226 guiRenderer->addQuad(
227 ((left) / (screenWidth / 2.0f)) - 1.0f,
228 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
229 1.0f, 1.0f, 1.0f, 1.0f,
230 0.0f,
231 0.0f,
232 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
233 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
234 1.0f, 1.0f, 1.0f, 1.0f,
235 1.0f / imageTextureWidth * scale9Grid.left,
236 0.0f,
237 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
238 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
239 1.0f, 1.0f, 1.0f, 1.0f,
240 1.0f / imageTextureWidth * scale9Grid.left,
241 1.0f / imageTextureHeight * scale9Grid.top,
242 ((left) / (screenWidth / 2.0f)) - 1.0f,
243 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
244 1.0f, 1.0f, 1.0f, 1.0f,
245 0.0f,
246 1.0f / imageTextureHeight * scale9Grid.top
247 );
248 }
249 // middle top
250 if (scaledScale9Grid.top > 0) {
251 float left = imageScreenScale9Left;
252 float top = imageScreenTop;
253 float width = imageScreenWidth - scaledScale9Grid.left - scaledScale9Grid.right;
254 float height = scaledScale9Grid.top;
255 guiRenderer->addQuad(
256 ((left) / (screenWidth / 2.0f)) - 1.0f,
257 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
258 1.0f, 1.0f, 1.0f, 1.0f,
259 1.0f / imageTextureWidth * scale9Grid.left,
260 0.0f,
261 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
262 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
263 1.0f, 1.0f, 1.0f, 1.0f,
264 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
265 0.0f,
266 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
267 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
268 1.0f, 1.0f, 1.0f, 1.0f,
269 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
270 1.0f / imageTextureHeight * scale9Grid.top,
271 ((left) / (screenWidth / 2.0f)) - 1.0f,
272 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
273 1.0f, 1.0f, 1.0f, 1.0f,
274 1.0f / imageTextureWidth * scale9Grid.left,
275 1.0f / imageTextureHeight * scale9Grid.top
276 );
277 }
278 // right top
279 if (scaledScale9Grid.right > 0 && scaledScale9Grid.top > 0) {
280 float left = imageScreenScale9Right;
281 float top = imageScreenTop;
282 float width = scaledScale9Grid.right;
283 float height = scaledScale9Grid.top;
284 guiRenderer->addQuad(
285 ((left) / (screenWidth / 2.0f)) - 1.0f,
286 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
287 1.0f, 1.0f, 1.0f, 1.0f,
288 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
289 0.0f,
290 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
291 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
292 1.0f, 1.0f, 1.0f, 1.0f,
293 1.0f,
294 0.0f,
295 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
296 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
297 1.0f, 1.0f, 1.0f, 1.0f,
298 1.0f,
299 1.0f / imageTextureHeight * scale9Grid.top,
300 ((left) / (screenWidth / 2.0f)) - 1.0f,
301 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
302 1.0f, 1.0f, 1.0f, 1.0f,
303 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
304 1.0f / imageTextureHeight * scale9Grid.top
305 );
306 }
307 // right bottom
308 if (scaledScale9Grid.right > 0 && scaledScale9Grid.bottom > 0) {
309 float left = imageScreenScale9Right;
310 float top = imageScreenScale9Bottom;
311 float width = scaledScale9Grid.right;
312 float height = scaledScale9Grid.bottom;
313 guiRenderer->addQuad(
314 ((left) / (screenWidth / 2.0f)) - 1.0f,
315 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
316 1.0f, 1.0f, 1.0f, 1.0f,
317 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
318 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
319 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
320 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
321 1.0f, 1.0f, 1.0f, 1.0f,
322 1.0f,
323 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
324 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
325 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
326 1.0f, 1.0f, 1.0f, 1.0f,
327 1.0f,
328 1.0f,
329 ((left) / (screenWidth / 2.0f)) - 1.0f,
330 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
331 1.0f, 1.0f, 1.0f, 1.0f,
332 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
333 1.0f
334 );
335 }
336 // middle bottom
337 if (scaledScale9Grid.bottom > 0) {
338 float left = imageScreenScale9Left;
339 float top = imageScreenScale9Bottom;
340 float width = imageScreenWidth - scaledScale9Grid.left - scaledScale9Grid.right;
341 float height = scaledScale9Grid.bottom;
342 guiRenderer->addQuad(
343 ((left) / (screenWidth / 2.0f)) - 1.0f,
344 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
345 1.0f, 1.0f, 1.0f, 1.0f,
346 1.0f / imageTextureWidth * scale9Grid.left,
347 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
348 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
349 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
350 1.0f, 1.0f, 1.0f, 1.0f,
351 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
352 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
353 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
354 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
355 1.0f, 1.0f, 1.0f, 1.0f,
356 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
357 1.0f,
358 ((left) / (screenWidth / 2.0f)) - 1.0f,
359 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
360 1.0f, 1.0f, 1.0f, 1.0f,
361 1.0f / imageTextureWidth * scale9Grid.left,
362 1.0f
363 );
364 }
365 // left bottom
366 if (scaledScale9Grid.left > 0 && scaledScale9Grid.bottom > 0) {
367 float left = imageScreenLeft;
368 float top = imageScreenScale9Bottom;
369 float width = scaledScale9Grid.left;
370 float height = scaledScale9Grid.bottom;
371 guiRenderer->addQuad(
372 ((left) / (screenWidth / 2.0f)) - 1.0f,
373 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
374 1.0f, 1.0f, 1.0f, 1.0f,
375 0.0f,
376 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
377 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
378 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
379 1.0f, 1.0f, 1.0f, 1.0f,
380 1.0f / imageTextureWidth * scale9Grid.left,
381 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
382 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
383 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
384 1.0f, 1.0f, 1.0f, 1.0f,
385 1.0f / imageTextureWidth * scale9Grid.left,
386 1.0f,
387 ((left) / (screenWidth / 2.0f)) - 1.0f,
388 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
389 1.0f, 1.0f, 1.0f, 1.0f,
390 0.0f,
391 1.0f
392 );
393 }
394 // left middle
395 if (scaledScale9Grid.left > 0) {
396 float left = imageScreenLeft;
397 float top = imageScreenScale9Top;
398 float width = scaledScale9Grid.left;
399 float height = imageScreenHeight - scaledScale9Grid.top - scaledScale9Grid.bottom;
400 guiRenderer->addQuad(
401 ((left) / (screenWidth / 2.0f)) - 1.0f,
402 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
403 1.0f, 1.0f, 1.0f, 1.0f,
404 0.0f,
405 1.0f / imageTextureHeight * scale9Grid.top,
406 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
407 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
408 1.0f, 1.0f, 1.0f, 1.0f,
409 1.0f / imageTextureWidth * scale9Grid.left,
410 1.0f / imageTextureHeight * scale9Grid.top,
411 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
412 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
413 1.0f, 1.0f, 1.0f, 1.0f,
414 1.0f / imageTextureWidth * scale9Grid.left,
415 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
416 ((left) / (screenWidth / 2.0f)) - 1.0f,
417 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
418 1.0f, 1.0f, 1.0f, 1.0f,
419 0.0f,
420 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom)
421 );
422 }
423 // right middle
424 if (scaledScale9Grid.right > 0) {
425 float left = imageScreenScale9Right;
426 float top = imageScreenScale9Top;
427 float width = scaledScale9Grid.right;
428 float height = imageScreenHeight - scaledScale9Grid.top - scaledScale9Grid.bottom;
429 guiRenderer->addQuad(
430 ((left) / (screenWidth / 2.0f)) - 1.0f,
431 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
432 1.0f, 1.0f, 1.0f, 1.0f,
433 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
434 1.0f / imageTextureHeight * scale9Grid.top,
435 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
436 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
437 1.0f, 1.0f, 1.0f, 1.0f,
438 1.0f,
439 1.0f / imageTextureHeight * scale9Grid.top,
440 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
441 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
442 1.0f, 1.0f, 1.0f, 1.0f,
443 1.0f,
444 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
445 ((left) / (screenWidth / 2.0f)) - 1.0f,
446 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
447 1.0f, 1.0f, 1.0f, 1.0f,
448 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
449 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom)
450 );
451 }
452 // center
453 {
454 float left = imageScreenScale9Left;
455 float top = imageScreenScale9Top;
456 float width = imageScreenWidth - scaledScale9Grid.left - scaledScale9Grid.right;
457 float height = imageScreenHeight - scaledScale9Grid.top - scaledScale9Grid.bottom;
458 guiRenderer->addQuad(
459 ((left) / (screenWidth / 2.0f)) - 1.0f,
460 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
461 1.0f, 1.0f, 1.0f, 1.0f,
462 1.0f / imageTextureWidth * scale9Grid.left,
463 1.0f / imageTextureHeight * scale9Grid.top,
464 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
465 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
466 1.0f, 1.0f, 1.0f, 1.0f,
467 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
468 1.0f / imageTextureHeight * scale9Grid.top,
469 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
470 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
471 1.0f, 1.0f, 1.0f, 1.0f,
472 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
473 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
474 ((left) / (screenWidth / 2.0f)) - 1.0f,
475 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
476 1.0f, 1.0f, 1.0f, 1.0f,
477 1.0f / imageTextureWidth * scale9Grid.left,
478 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom)
479 );
480 }
481 }
482 guiRenderer->render();
483 guiRenderer->bindTexture(0);
484 if (maskTextureId != 0) {
485 guiRenderer->setMaskMaxValue(1.0f);
486 guiRenderer->bindMask(0);
487 }
488 guiRenderer->setTexureMatrix((Matrix2D3x3()).identity());
489 }
490}
491
493 this->textureMatrix.set(mirrorTextureMatrix.multiply(textureMatrix));
494}
495
497 return effectColorMul;
498}
499
501 this->effectColorMul = effectColorMul;
502}
503
505 return effectColorAdd;
506}
507
509 this->effectColorAdd = effectColorAdd;
510}
511
513 return clipping;
514}
515
516GUINode_Clipping GUITextureBaseNode::createClipping(const string& allClipping, const string& left, const string& top, const string& right, const string& bottom)
517{
519 clipping.left = getRequestedPixelValue(allClipping, 0);
520 clipping.top = getRequestedPixelValue(allClipping, 0);
521 clipping.right = getRequestedPixelValue(allClipping, 0);
522 clipping.bottom = getRequestedPixelValue(allClipping, 0);
527 return clipping;
528}
529
531 return mask;
532}
533
534void GUITextureBaseNode::setMask(const string& mask) {
535 if (maskTexture != nullptr) {
536 Engine::getInstance()->getTextureManager()->removeTexture(maskTexture->getId());
537 maskTexture = nullptr;
538 }
539 this->mask = mask;
540 this->maskTexture = mask.empty() == true?nullptr:GUI::getImage(screenNode->getApplicationRootPathName(), mask);
541 this->maskTextureId = maskTexture == nullptr?0:Engine::getInstance()->getTextureManager()->addTexture(maskTexture, 0);
542}
543
546 if (width.empty() == false) {
547 if (StringTools::endsWith(width, "%")) {
548 constraints.horizontalScale = Float::parse(width.substr(0, width.length() - 1)) / 100.0f;
549 } else {
550 constraints.horizontalScale = Float::parse(width);
551 }
552 }
553 if (height.empty() == false) {
554 if (StringTools::endsWith(height, "%")) {
555 constraints.verticalScale = Float::parse(height.substr(0, height.length() - 1)) / 100.0f;
556 } else {
557 constraints.verticalScale = Float::parse(height);
558 }
559 }
560 return constraints;
561}
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
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()
static GUINode_Clipping createClipping(const string &allClipping, const string &left, const string &top, const string &right, const string &bottom)
Create clipping.
void setEffectColorMul(const GUIColor &effectColorMul)
Set effect color mul.
void dispose() override
Dispose node.
static RequestedDimensionConstraints createRequestedDimensionConstraints(const string &width, const string &height)
Create requested dimension constraints.
void setTextureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
void setMask(const string &mask)
Set mask source.
RequestedDimensionConstraints requestedDimensionConstraints
void render(GUIRenderer *guiRenderer) override
Render.
void setEffectColorAdd(const GUIColor &effectColorAdd)
Set effect color add.
void setSubRenderAreaBottom(float renderAreaBottom)
Set sub render area bottom.
Definition: GUIRenderer.h:318
void setMaskMaxValue(float maskMaxValue)
Set mask max value.
void setTexureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
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 & translate(const Vector2 &v)
Sets up a translation matrix.
Definition: Matrix2D3x3.h:164
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
Matrix2D3x3 & multiply(const Matrix2D3x3 &m)
Multiplies this matrix with another matrix.
Definition: Matrix2D3x3.h:220
Matrix2D3x3 & scale(float s)
Scales this matrix.
Definition: Matrix2D3x3.h:134
2D vector 2 class
Definition: Vector2.h:19
Float class.
Definition: Float.h:23
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.