TDME2 1.9.121
GUINode.cpp
Go to the documentation of this file.
2
3#include <algorithm>
4#include <array>
5#include <string>
6#include <unordered_set>
7#include <vector>
8
9#include <tdme/tdme.h>
12#include <tdme/engine/Engine.h>
35#include <tdme/gui/GUI.h>
36#include <tdme/math/Vector2.h>
42
43using std::array;
44using std::find;
45using std::string;
46using std::to_string;
47using std::unordered_set;
48using std::vector;
49
51
77using tdme::gui::GUI;
84
85GUINode::GUINode(
86 GUIScreenNode* screenNode,
87 GUIParentNode* parentNode,
88 const string& id,
89 GUINode_Flow* flow,
90 const GUINode_Alignments& alignments,
91 const GUINode_RequestedConstraints& requestedConstraints,
92 const GUIColor& backgroundColor,
93 const string& backgroundImage,
94 const GUINode_Scale9Grid& backgroundImageScale9Grid,
95 const GUIColor& backgroundImageEffectColorMul,
96 const GUIColor& backgroundImageEffectColorAdd,
97 const GUINode_Border& border,
98 const GUINode_Padding& padding,
99 const GUINodeConditions& showOn,
100 const GUINodeConditions& hideOn)
101{
102 this->screenNode = screenNode;
103 this->parentNode = parentNode;
104 this->id = id;
105 this->flow = flow;
106 this->alignments = alignments;
107 this->requestedConstraints = requestedConstraints;
112 this->backgroundColor = backgroundColor;
113 this->backgroundTexture = nullptr;
114 this->backgroundTextureId = 0;
115 this->setBackgroundImage(backgroundImage);
116 this->backgroundImageScale9Grid = backgroundImageScale9Grid;
117 this->backgroundImageEffectColorMul = backgroundImageEffectColorMul;
118 this->backgroundImageEffectColorAdd = backgroundImageEffectColorAdd;
119 this->border = border;
120 this->padding = padding;
121 this->showOn = showOn;
122 this->hideOn = hideOn;
123 this->controller = nullptr;
124 this->guiEffectOffsetX = 0;
125 this->guiEffectOffsetY = 0;
126 this->conditionsMet = false;
127 this->layouted = false;
128 this->haveOutEffect = false;
129 // register this id with related element nodes
130 vector<string> elementNodeDependencies;
131 cfDetermineElementNodeDependencies(elementNodeDependencies);
132 for (auto& elementNodeId: elementNodeDependencies) screenNode->addNodeElementNodeDependency(elementNodeId, id);
133}
134
136 if (controller != nullptr) delete controller;
137 // remove effects
138 vector<string> effectsToRemove;
139 for (auto effectIt: effects) {
140 effectsToRemove.push_back(effectIt.first);
141 }
142 for (auto effectToRemoveId: effectsToRemove) {
143 removeEffect(effectToRemoveId);
144 }
145 if (effectState != nullptr) delete effectState;
146}
147
149 string hierarchicalId;
150 auto _parentNode = parentNode;
151 while (_parentNode != nullptr) {
152 hierarchicalId = _parentNode->id + "." + hierarchicalId;
153 _parentNode = _parentNode->parentNode;
154 }
155 hierarchicalId = hierarchicalId + id;
156 return hierarchicalId;
157}
158
160{
162 return getContentWidth();
163 } else {
165 }
166}
167
169{
171 return getContentHeight();
172 } else {
174 }
175}
176
177void GUINode::setLeft(int left)
178{
181}
182
183void GUINode::setTop(int top)
184{
187}
188
190{
191 if (conditionsMet == false) {
193 return;
194 }
202 layouted = true;
203}
204
206{
207 if (isContentNode() == true) {
208 {
209 auto v = alignments.horizontal;
212 } else
215 } else
218 }
219 }
220
221 {
222 auto v = alignments.vertical;
225 } else
228 } else
231 }
232 }
233
234 }
235}
236
238{
240 return 0;
241 } else
243 return value;
244 } else
246 return static_cast<int>((parentValue / 100.0 * value));
247 } else
249 return autoValue;
250 } else
252 return value;
253 } else
255 return value;
256 }
257 return -1;
258}
259
260GUINode_Alignments GUINode::createAlignments(const string& horizontal, const string& vertical)
261{
263 alignments.horizontal = GUINode_AlignmentHorizontal::valueOf(horizontal.empty() == false && horizontal.length() > 0?StringTools::toUpperCase(horizontal):"LEFT");
264 alignments.vertical = GUINode_AlignmentVertical::valueOf(vertical.empty() == false && vertical.length() > 0?StringTools::toUpperCase(vertical):"TOP");
265 return alignments;
266}
267
268GUINode_RequestedConstraints GUINode::createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor)
269{
272 constraints.left = getRequestedConstraintsValue(StringTools::trim(left), 0);
274 constraints.top = getRequestedConstraintsValue(StringTools::trim(top), 0);
276 constraints.width = getRequestedConstraintsValue(StringTools::trim(width), -1);
278 constraints.height = getRequestedConstraintsValue(StringTools::trim(height), -1);
279 if (constraints.leftType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) constraints.left*= factor;
280 if (constraints.topType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) constraints.top*= factor;
283 return constraints;
284}
285
287{
288 if (constraint.empty() == true || constraint.length() == 0) {
289 return defaultConstraintsType;
290 } else
291 if (constraint.compare("auto") == 0) {
293 } else
294 if (constraint.compare("*") == 0) {
296 } else
297 if (StringTools::endsWith(constraint, "%")) {
299 } else {
301 }
302}
303
304int GUINode::getRequestedConstraintsValue(const string& constraint, int defaultConstraintsValue)
305{
306 if (constraint.empty() == true || constraint.length() == 0) {
307 return defaultConstraintsValue;
308 } else
309 if (constraint.compare("auto") == 0) {
310 return -1;
311 } else
312 if (constraint.compare("*") == 0) {
313 return -1;
314 } else
315 if (StringTools::endsWith(constraint, "%")) {
316 return (Integer::parse(constraint.substr(0, constraint.length() - 1)));
317 } else {
318 return (Integer::parse(constraint));
319 }
320}
321
322int GUINode::getRequestedPixelValue(const string& value, int defaultValue)
323{
324 if (value.empty() == true || value.length() == 0) {
325 return defaultValue;
326 } else {
327 return (Integer::parse(value));
328 }
329}
330
331GUIColor GUINode::getRequestedColor(const string& color, const GUIColor& defaultColor)
332{
333 if (color.empty() == true || color.length() == 0) {
334 return defaultColor;
335 } else {
336 return GUIColor(color);
337 }
338}
339
341{
342 return GUINode_Flow::valueOf(flow.empty() == false && flow.length() > 0 ? StringTools::toUpperCase(flow) : "INTEGRATED");
343}
344
345GUINode_Border GUINode::createBorder(const string& allBorder, const string& left, const string& top, const string& right, const string& bottom, const string& allBorderColor, const string& leftColor, const string& topColor, const string& rightColor, const string& bottomColor)
346{
348 border.left = getRequestedPixelValue(allBorder, 0);
349 border.top = getRequestedPixelValue(allBorder, 0);
350 border.right = getRequestedPixelValue(allBorder, 0);
351 border.bottom = getRequestedPixelValue(allBorder, 0);
364 return border;
365}
366
367GUINode_Padding GUINode::createPadding(const string& allPadding, const string& left, const string& top, const string& right, const string& bottom)
368{
370 padding.left = getRequestedPixelValue(allPadding, 0);
371 padding.top = getRequestedPixelValue(allPadding, 0);
372 padding.right = getRequestedPixelValue(allPadding, 0);
373 padding.bottom = getRequestedPixelValue(allPadding, 0);
378 return padding;
379}
380
381GUINode_Scale9Grid GUINode::createScale9Grid(const string& all, const string& left, const string& top, const string& right, const string& bottom)
382{
383 GUINode_Scale9Grid scale9Grid;
384 scale9Grid.left = getRequestedPixelValue(all, 0);
385 scale9Grid.top = getRequestedPixelValue(all, 0);
386 scale9Grid.right = getRequestedPixelValue(all, 0);
387 scale9Grid.bottom = getRequestedPixelValue(all, 0);
388 scale9Grid.left = getRequestedPixelValue(left, scale9Grid.left);
389 scale9Grid.top = getRequestedPixelValue(top, scale9Grid.top);
390 scale9Grid.right = getRequestedPixelValue(right, scale9Grid.right);
391 scale9Grid.bottom = getRequestedPixelValue(bottom, scale9Grid.bottom);
392 return scale9Grid;
393}
394
396{
397 auto arguments = 0;
398 GUINodeConditions guiNodeConditions;
399 string condition;
400 for (auto i = 0; i < conditions.size(); i++) {
401 auto c = conditions[i];
402 if (c == '(') {
403 condition+= c;
404 arguments++;
405 } else
406 if (c == ')') {
407 condition+= c;
408 arguments--;
409 } else
410 if (arguments == 0 && c == ',') {
411 guiNodeConditions.add(StringTools::trim(condition));
412 condition.clear();
413 } else {
414 condition+= c;
415 }
416 }
417 if (condition.empty() == false) {
418 guiNodeConditions.add(StringTools::trim(condition));
419 condition.clear();
420 }
421 return guiNodeConditions;
422}
423
425{
426 auto& showOn = this->showOn.conditions;
427 auto& hideOn = this->hideOn.conditions;
428
429 if (showOn.empty() == true && hideOn.empty() == true) return true;
430
431 for (auto i = 0; i < showOn.size(); i++) {
433 return true;
434
435 }
436 for (auto i = 0; i < hideOn.size(); i++) {
438 return false;
439
440 }
441
442 GUIElementNode* elementNode = nullptr;
443 for (GUINode* node = parentNode; node != nullptr && (elementNode = dynamic_cast<GUIElementNode*>(node)) == nullptr; node = node->parentNode);
444
445 string function;
446 vector<string> arguments;
447 for (auto i = 0; i < hideOn.size(); i++) {
448 auto conditionTerm = hideOn[i];
449 cfParse(hideOn[i], function, arguments);
450 if (cfCall(elementNode, function, arguments) == true) return false;
451 }
452 for (auto i = 0; i < showOn.size(); i++) {
453 cfParse(showOn[i], function, arguments);
454 if (cfCall(elementNode, function, arguments) == true) return true;
455 }
456
457 return showOn.empty() == true;
458}
459
461{
462 if (backgroundTexture != nullptr) Engine::getInstance()->getTextureManager()->removeTexture(backgroundTexture->getId());
463 if (controller != nullptr) controller->dispose();
464}
465
467{
469}
470
472 if (conditionsMet == false || layouted == true) return;
473 if (conditionsMet == true && layouted == false) {
474 screenNode->forceLayout(this);
475 }
476}
477
479 if (hasEffects() == false) return;
480 vector<Action*> actions;
481 vector<GUIEffect*> activeEffects;
482 for (auto& effectIt: effects) {
483 auto effect = effectIt.second;
484 if (effect->isActive() == true) {
485 if (effect->update(guiRenderer) == true && effect->getAction() != nullptr) {
486 actions.push_back(effect->getAction());
487 } else {
488 activeEffects.push_back(effect);
489 }
490 }
491 }
492 for (auto action: actions) action->performAction();
493 if (activeEffects.empty() == true) {
494 auto defaultEffect = getEffect("tdme.xmleffect.default");
495 if (defaultEffect != nullptr) {
496 defaultEffect->start();
497 activeEffects.push_back(defaultEffect);
498 }
499 }
500 guiRenderer->pushEffects(activeEffects);
501}
502
504 if (hasEffects() == false) return;
505 guiRenderer->popEffects();
506}
507
508void GUINode::render(GUIRenderer* guiRenderer)
509{
511
512 if (shouldRender() == false) return;
513
514 // floating nodes should always be in screen constraints
515 // if this does not seem to be feasible we can add a property for this
517 if (computedConstraints.left < 0) {
518 setLeft(0);
519 } else
522 }
523 if (computedConstraints.top < 0) {
524 setTop(0);
525 } else
528 }
529 }
530
531 //
532 auto screenWidth = screenNode->getScreenWidth();
533 auto screenHeight = screenNode->getScreenHeight();
539 auto bgColorData = &backgroundColor.getArray();
540 guiRenderer->addQuad(
541 ((left) / (screenWidth / 2.0f)) - 1.0f,
542 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
543 (*bgColorData)[0],
544 (*bgColorData)[1],
545 (*bgColorData)[2],
546 (*bgColorData)[3],
547 0.0f,
548 1.0f,
549 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
550 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
551 (*bgColorData)[0],
552 (*bgColorData)[1],
553 (*bgColorData)[2],
554 (*bgColorData)[3],
555 1.0f,
556 1.0f,
557 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
558 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
559 (*bgColorData)[0],
560 (*bgColorData)[1],
561 (*bgColorData)[2],
562 (*bgColorData)[3],
563 1.0f,
564 0.0f,
565 ((left) / (screenWidth / 2.0f)) - 1.0f,
566 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
567 (*bgColorData)[0],
568 (*bgColorData)[1],
569 (*bgColorData)[2],
570 (*bgColorData)[3],
571 0.0f,
572 0.0f
573 );
574 guiRenderer->render();
575 }
576 if (backgroundTexture != nullptr) {
577 guiRenderer->bindTexture(backgroundTextureId);
581 if (scale9Grid.left == 0 &&
582 scale9Grid.right == 0 &&
583 scale9Grid.top == 0 &&
584 scale9Grid.bottom == 0) {
589 guiRenderer->addQuad(
590 ((left) / (screenWidth / 2.0f)) - 1.0f,
591 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
592 1.0f, 1.0f, 1.0f, 1.0f,
593 0.0f,
594 0.0f,
595 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
596 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
597 1.0f, 1.0f, 1.0f, 1.0f,
598 1.0f,
599 0.0f,
600 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
601 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
602 1.0f, 1.0f, 1.0f, 1.0f,
603 1.0f,
604 1.0f,
605 ((left) / (screenWidth / 2.0f)) - 1.0f,
606 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
607 1.0f, 1.0f, 1.0f, 1.0f,
608 0.0f,
609 1.0f
610 );
611 } else {
612 auto scaleX = 1.0f;
613 auto scaleY = 1.0f;
614 // we have a scale here, because we have a axis without "scale9grid"
615 if (scale9Grid.top == 0 && scale9Grid.bottom == 0) {
616 scaleY = (float)getContentHeight() / (float)backgroundTexture->getHeight();
617 scaleX = scaleY;
618 } else
619 // we have a scale here, because we have a axis without "scale9grid"
620 if (scale9Grid.left == 0 && scale9Grid.right == 0) {
621 scaleX = (float)getContentWidth() / (float)backgroundTexture->getWidth();
622 scaleY = scaleX;
623 } else {
624 // scale Y if content height is too small to fit scale 9 top and bottom
625 if (getContentHeight() < scale9Grid.top + scale9Grid.bottom) {
626 scaleY = getContentHeight() < Math::EPSILON?0.0f:(float)getContentHeight() / (float)(scale9Grid.top + scale9Grid.bottom);
627 }
628 // scale X if content width is too small to fit scale 9 left and top
629 if (getContentWidth() < scale9Grid.left + scale9Grid.right) {
630 scaleX = getContentWidth() < Math::EPSILON?0.0f:(float)getContentWidth() / (float)(scale9Grid.left + scale9Grid.right);
631 }
632 }
633 // we have no certain scale, take original image size
634 GUINode_Scale9Grid scaledScale9Grid;
635 scaledScale9Grid.left = static_cast<int>(scale9Grid.left * scaleX);
636 scaledScale9Grid.right = static_cast<int>(scale9Grid.right * scaleX);
637 scaledScale9Grid.top = static_cast<int>(scale9Grid.top * scaleY);
638 scaledScale9Grid.bottom = static_cast<int>(scale9Grid.bottom * scaleY);
641 float imageScreenScale9Left = imageScreenLeft + scaledScale9Grid.left;
642 float imageScreenScale9Top = imageScreenTop + scaledScale9Grid.top;
643 float imageScreenWidth = computedConstraints.width - border.left - border.right;
644 float imageScreenHeight = computedConstraints.height - border.top - border.bottom;
645 float imageScreenScale9Right = imageScreenLeft + imageScreenWidth - scaledScale9Grid.right;
646 float imageScreenScale9Bottom = imageScreenTop + imageScreenHeight - scaledScale9Grid.bottom;
647 float imageTextureWidth = backgroundTexture->getWidth();
648 float imageTextureHeight = backgroundTexture->getHeight();
649 // left top
650 if (scaledScale9Grid.left > 0 && scaledScale9Grid.top > 0) {
651 float left = imageScreenLeft;
652 float top = imageScreenTop;
653 float width = scaledScale9Grid.left;
654 float height = scaledScale9Grid.top;
655 guiRenderer->addQuad(
656 ((left) / (screenWidth / 2.0f)) - 1.0f,
657 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
658 1.0f, 1.0f, 1.0f, 1.0f,
659 0.0f,
660 0.0f,
661 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
662 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
663 1.0f, 1.0f, 1.0f, 1.0f,
664 1.0f / imageTextureWidth * scale9Grid.left,
665 0.0f,
666 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
667 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
668 1.0f, 1.0f, 1.0f, 1.0f,
669 1.0f / imageTextureWidth * scale9Grid.left,
670 1.0f / imageTextureHeight * scale9Grid.top,
671 ((left) / (screenWidth / 2.0f)) - 1.0f,
672 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
673 1.0f, 1.0f, 1.0f, 1.0f,
674 0.0f,
675 1.0f / imageTextureHeight * scale9Grid.top
676 );
677 }
678 // middle top
679 if (scaledScale9Grid.top > 0) {
680 float left = imageScreenScale9Left;
681 float top = imageScreenTop;
682 float width = imageScreenWidth - scaledScale9Grid.left - scaledScale9Grid.right;
683 float height = scaledScale9Grid.top;
684 guiRenderer->addQuad(
685 ((left) / (screenWidth / 2.0f)) - 1.0f,
686 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
687 1.0f, 1.0f, 1.0f, 1.0f,
688 1.0f / imageTextureWidth * scale9Grid.left,
689 0.0f,
690 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
691 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
692 1.0f, 1.0f, 1.0f, 1.0f,
693 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
694 0.0f,
695 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
696 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
697 1.0f, 1.0f, 1.0f, 1.0f,
698 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
699 1.0f / imageTextureHeight * scale9Grid.top,
700 ((left) / (screenWidth / 2.0f)) - 1.0f,
701 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
702 1.0f, 1.0f, 1.0f, 1.0f,
703 1.0f / imageTextureWidth * scale9Grid.left,
704 1.0f / imageTextureHeight * scale9Grid.top
705 );
706 }
707 // right top
708 if (scaledScale9Grid.right > 0 && scaledScale9Grid.top > 0) {
709 float left = imageScreenScale9Right;
710 float top = imageScreenTop;
711 float width = scaledScale9Grid.right;
712 float height = scaledScale9Grid.top;
713 guiRenderer->addQuad(
714 ((left) / (screenWidth / 2.0f)) - 1.0f,
715 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
716 1.0f, 1.0f, 1.0f, 1.0f,
717 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
718 0.0f,
719 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
720 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
721 1.0f, 1.0f, 1.0f, 1.0f,
722 1.0f,
723 0.0f,
724 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
725 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
726 1.0f, 1.0f, 1.0f, 1.0f,
727 1.0f,
728 1.0f / imageTextureHeight * scale9Grid.top,
729 ((left) / (screenWidth / 2.0f)) - 1.0f,
730 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
731 1.0f, 1.0f, 1.0f, 1.0f,
732 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
733 1.0f / imageTextureHeight * scale9Grid.top
734 );
735 }
736 // right bottom
737 if (scaledScale9Grid.right > 0 && scaledScale9Grid.bottom > 0) {
738 float left = imageScreenScale9Right;
739 float top = imageScreenScale9Bottom;
740 float width = scaledScale9Grid.right;
741 float height = scaledScale9Grid.bottom;
742 guiRenderer->addQuad(
743 ((left) / (screenWidth / 2.0f)) - 1.0f,
744 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
745 1.0f, 1.0f, 1.0f, 1.0f,
746 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
747 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
748 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
749 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
750 1.0f, 1.0f, 1.0f, 1.0f,
751 1.0f,
752 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
753 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
754 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
755 1.0f, 1.0f, 1.0f, 1.0f,
756 1.0f,
757 1.0f,
758 ((left) / (screenWidth / 2.0f)) - 1.0f,
759 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
760 1.0f, 1.0f, 1.0f, 1.0f,
761 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
762 1.0f
763 );
764 }
765 // middle bottom
766 if (scaledScale9Grid.bottom > 0) {
767 float left = imageScreenScale9Left;
768 float top = imageScreenScale9Bottom;
769 float width = imageScreenWidth - scaledScale9Grid.left - scaledScale9Grid.right;
770 float height = scaledScale9Grid.bottom;
771 guiRenderer->addQuad(
772 ((left) / (screenWidth / 2.0f)) - 1.0f,
773 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
774 1.0f, 1.0f, 1.0f, 1.0f,
775 1.0f / imageTextureWidth * scale9Grid.left,
776 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
777 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
778 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
779 1.0f, 1.0f, 1.0f, 1.0f,
780 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
781 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
782 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
783 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
784 1.0f, 1.0f, 1.0f, 1.0f,
785 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
786 1.0f,
787 ((left) / (screenWidth / 2.0f)) - 1.0f,
788 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
789 1.0f, 1.0f, 1.0f, 1.0f,
790 1.0f / imageTextureWidth * scale9Grid.left,
791 1.0f
792 );
793 }
794 // left bottom
795 if (scaledScale9Grid.left > 0 && scaledScale9Grid.bottom > 0) {
796 float left = imageScreenLeft;
797 float top = imageScreenScale9Bottom;
798 float width = scaledScale9Grid.left;
799 float height = scaledScale9Grid.bottom;
800 guiRenderer->addQuad(
801 ((left) / (screenWidth / 2.0f)) - 1.0f,
802 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
803 1.0f, 1.0f, 1.0f, 1.0f,
804 0.0f,
805 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
806 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
807 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
808 1.0f, 1.0f, 1.0f, 1.0f,
809 1.0f / imageTextureWidth * scale9Grid.left,
810 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
811 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
812 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
813 1.0f, 1.0f, 1.0f, 1.0f,
814 1.0f / imageTextureWidth * scale9Grid.left,
815 1.0f,
816 ((left) / (screenWidth / 2.0f)) - 1.0f,
817 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
818 1.0f, 1.0f, 1.0f, 1.0f,
819 0.0f,
820 1.0f
821 );
822 }
823 // left middle
824 if (scaledScale9Grid.left > 0) {
825 float left = imageScreenLeft;
826 float top = imageScreenScale9Top;
827 float width = scaledScale9Grid.left;
828 float height = imageScreenHeight - scaledScale9Grid.top - scaledScale9Grid.bottom;
829 guiRenderer->addQuad(
830 ((left) / (screenWidth / 2.0f)) - 1.0f,
831 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
832 1.0f, 1.0f, 1.0f, 1.0f,
833 0.0f,
834 1.0f / imageTextureHeight * scale9Grid.top,
835 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
836 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
837 1.0f, 1.0f, 1.0f, 1.0f,
838 1.0f / imageTextureWidth * scale9Grid.left,
839 1.0f / imageTextureHeight * scale9Grid.top,
840 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
841 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
842 1.0f, 1.0f, 1.0f, 1.0f,
843 1.0f / imageTextureWidth * scale9Grid.left,
844 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
845 ((left) / (screenWidth / 2.0f)) - 1.0f,
846 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
847 1.0f, 1.0f, 1.0f, 1.0f,
848 0.0f,
849 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom)
850 );
851 }
852 // right middle
853 if (scaledScale9Grid.right > 0) {
854 float left = imageScreenScale9Right;
855 float top = imageScreenScale9Top;
856 float width = scaledScale9Grid.right;
857 float height = imageScreenHeight - scaledScale9Grid.top - scaledScale9Grid.bottom;
858 guiRenderer->addQuad(
859 ((left) / (screenWidth / 2.0f)) - 1.0f,
860 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
861 1.0f, 1.0f, 1.0f, 1.0f,
862 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
863 1.0f / imageTextureHeight * scale9Grid.top,
864 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
865 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
866 1.0f, 1.0f, 1.0f, 1.0f,
867 1.0f,
868 1.0f / imageTextureHeight * scale9Grid.top,
869 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
870 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
871 1.0f, 1.0f, 1.0f, 1.0f,
872 1.0f,
873 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
874 ((left) / (screenWidth / 2.0f)) - 1.0f,
875 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
876 1.0f, 1.0f, 1.0f, 1.0f,
877 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
878 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom)
879 );
880 }
881 // center
882 {
883 float left = imageScreenScale9Left;
884 float top = imageScreenScale9Top;
885 float width = imageScreenWidth - scaledScale9Grid.left - scaledScale9Grid.right;
886 float height = imageScreenHeight - scaledScale9Grid.top - scaledScale9Grid.bottom;
887 guiRenderer->addQuad(
888 ((left) / (screenWidth / 2.0f)) - 1.0f,
889 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
890 1.0f, 1.0f, 1.0f, 1.0f,
891 1.0f / imageTextureWidth * scale9Grid.left,
892 1.0f / imageTextureHeight * scale9Grid.top,
893 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
894 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
895 1.0f, 1.0f, 1.0f, 1.0f,
896 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
897 1.0f / imageTextureHeight * scale9Grid.top,
898 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
899 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
900 1.0f, 1.0f, 1.0f, 1.0f,
901 1.0f / imageTextureWidth * (imageTextureWidth - scale9Grid.right),
902 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom),
903 ((left) / (screenWidth / 2.0f)) - 1.0f,
904 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
905 1.0f, 1.0f, 1.0f, 1.0f,
906 1.0f / imageTextureWidth * scale9Grid.left,
907 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.bottom)
908 );
909 }
910 }
911 guiRenderer->render();
912 guiRenderer->bindTexture(0);
913 }
914 if (border.top > 0 || border.left > 0 || border.right > 0 || border.bottom > 0) {
915 if (border.top > 0) {
918 float width = computedConstraints.width;
919 float height = border.top;
920 auto& borderColorData = border.topColor.getArray();
921 guiRenderer->addQuad(((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 0.0f, ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 0.0f);
922 }
923 if (border.bottom > 0) {
926 float width = computedConstraints.width;
927 float height = border.bottom;
928 auto& borderColorData = border.bottomColor.getArray();
929 guiRenderer->addQuad(((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 0.0f, ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 0.0f);
930 }
931 if (border.left > 0) {
934 float width = border.left;
935 float height = computedConstraints.height;
936 auto& borderColorData = border.leftColor.getArray();
937 guiRenderer->addQuad(((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 0.0f, ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 0.0f);
938 }
939 if (border.right > 0) {
942 float width = border.right;
943 float height = computedConstraints.height;
944 auto& borderColorData = border.rightColor.getArray();
945 guiRenderer->addQuad(((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 1.0f, 0.0f, ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, borderColorData[0], borderColorData[1], borderColorData[2], borderColorData[3], 0.0f, 0.0f);
946 }
947 guiRenderer->render();
948 }
949}
950
952{
953 auto childrenRenderOffSetX = 0.0f;
954 auto parentNode = this->parentNode;
955 while (parentNode != nullptr) {
956 childrenRenderOffSetX += parentNode->getChildrenRenderOffsetX();
958 }
959 return childrenRenderOffSetX;
960}
961
963{
964 auto childrenRenderOffSetY = 0.0f;
965 auto parentNode = this->parentNode;
966 while (parentNode != nullptr) {
967 childrenRenderOffSetY += parentNode->getChildrenRenderOffsetY();
969 }
970 return childrenRenderOffSetY;
971}
972
974{
975 auto eventXScreen = event->getX();
976 auto eventYScreen = event->getY();
977 /*
978 auto parentNode = this->parentNode;
979 while (parentNode != nullptr) {
980 if (parentNode->flow == GUINode_Flow::FLOATING)
981 break;
982
983 auto eventX = eventXScreen + parentNode->computeParentChildrenRenderOffsetXTotal();
984 auto eventY = eventYScreen + parentNode->computeParentChildrenRenderOffsetYTotal();
985 if ((eventX >= parentNode->computedConstraints.left + parentNode->computedConstraints.alignmentLeft &&
986 eventX < parentNode->computedConstraints.left + parentNode->computedConstraints.alignmentLeft + parentNode->computedConstraints.width &&
987 eventY >= parentNode->computedConstraints.top + parentNode->computedConstraints.alignmentTop &&
988 eventY < parentNode->computedConstraints.top + parentNode->computedConstraints.alignmentTop + parentNode->computedConstraints.height) == false) {
989 return false;
990 }
991 parentNode = parentNode->parentNode;
992 }
993 */
994 auto eventX = eventXScreen + computeParentChildrenRenderOffsetXTotal();
995 auto eventY = eventYScreen + computeParentChildrenRenderOffsetYTotal();
996 auto belongsToElement =
1001 if (belongsToElement == true) {
1002 position[0] = static_cast<int>((eventX - (computedConstraints.left + computedConstraints.alignmentLeft)));
1003 position[1] = static_cast<int>((eventY - (computedConstraints.top + computedConstraints.alignmentTop)));
1004 }
1005 return belongsToElement;
1006}
1007
1009{
1010 Vector2 position;
1011 return isEventBelongingToNode(event, position);
1012}
1013
1015{
1016 auto eventXScreen = event->getX();
1017 auto eventYScreen = event->getY();
1018 auto eventX = eventXScreen + computeParentChildrenRenderOffsetXTotal();
1019 auto eventY = eventYScreen + computeParentChildrenRenderOffsetYTotal();
1024 if (eventX < left) {
1025 position[0] = static_cast<int>((eventX - left));
1026 } else if (eventX > right) {
1027 position[0] = static_cast<int>((eventX - right));
1028 } else {
1029 position[0] = 0;
1030 }
1031 if (eventY < top) {
1032 position[1] = static_cast<int>((eventY - top));
1033 } else if (eventY > bottom) {
1034 position[1] = static_cast<int>((eventY - bottom));
1035 } else {
1036 position[1] = 0;
1037 }
1038}
1039
1041 auto eventXScreen = event->getX();
1042 auto eventYScreen = event->getY();
1043 auto eventX = eventXScreen + computeParentChildrenRenderOffsetXTotal();
1044 auto eventY = eventYScreen + computeParentChildrenRenderOffsetYTotal();
1049 position[0] = Math::clamp(static_cast<int>(eventX), left, right) - left;
1050 position[1] = Math::clamp(static_cast<int>(eventY), top, bottom) - top;
1051}
1052
1054{
1055 auto node = this->parentNode;
1056 while (node != nullptr && node->controller == nullptr) {
1057 node = node->parentNode;
1058 }
1059 return node;
1060}
1061
1062void GUINode::determineMouseEventNodes(GUIMouseEvent* event, bool floatingNode, unordered_set<string>& eventNodeIds, unordered_set<string>& eventFloatingNodeIds)
1063{
1064 if (conditionsMet == false)
1065 return;
1066
1067 // node belongs to event?
1068 if (isEventBelongingToNode(event) == true) {
1069 // yep insert
1070 if (floatingNode == true || flow == GUINode_Flow::FLOATING) eventFloatingNodeIds.insert(id); else eventNodeIds.insert(id);
1071 }
1072}
1073
1075{
1076 if (this->controller != nullptr) {
1078 this->controller->dispose();
1079 delete this->controller;
1080 }
1081 this->controller = controller;
1082}
1083
1085{
1086 if (layouted == false) return;
1087 auto scrollXParentNode = this->parentNode;
1088 while (true == true) {
1089 if (scrollXParentNode == toNode || scrollXParentNode == nullptr)
1090 return;
1091
1092 if (scrollXParentNode->overflowX == GUIParentNode_Overflow::SCROLL) {
1093 break;
1094 }
1095 scrollXParentNode = scrollXParentNode->parentNode;
1096 }
1097 if (computedConstraints.left < scrollXParentNode->getChildrenRenderOffsetX() + scrollXParentNode->computedConstraints.left) {
1098 scrollXParentNode->setChildrenRenderOffsetX(computedConstraints.left - scrollXParentNode->computedConstraints.left);
1099 }
1100 if (computedConstraints.left + computedConstraints.width > scrollXParentNode->getChildrenRenderOffsetX() + scrollXParentNode->computedConstraints.left + scrollXParentNode->computedConstraints.width) {
1101 scrollXParentNode->setChildrenRenderOffsetX(computedConstraints.left + computedConstraints.width - scrollXParentNode->computedConstraints.left - scrollXParentNode->computedConstraints.width);
1102 }
1103 scrollXParentNode->_scrollToNodeX(toNode);
1104}
1105
1107{
1108 if (layouted == false) return;
1109 auto scrollYParentNode = this->parentNode;
1110 while (true == true) {
1111 if (scrollYParentNode == toNode || scrollYParentNode == nullptr) return;
1112 if (scrollYParentNode->overflowY == GUIParentNode_Overflow::SCROLL) break;
1113 scrollYParentNode = scrollYParentNode->parentNode;
1114 if (scrollYParentNode == nullptr) return;
1115 }
1116 if (computedConstraints.top < scrollYParentNode->getChildrenRenderOffsetY() + scrollYParentNode->computedConstraints.top) {
1117 scrollYParentNode->setChildrenRenderOffsetY(computedConstraints.top - scrollYParentNode->computedConstraints.top);
1118 }
1119 if (computedConstraints.top + computedConstraints.height > scrollYParentNode->getChildrenRenderOffsetY() + scrollYParentNode->computedConstraints.top + scrollYParentNode->computedConstraints.height) {
1120 scrollYParentNode->setChildrenRenderOffsetY(computedConstraints.top + computedConstraints.height - scrollYParentNode->computedConstraints.top - scrollYParentNode->computedConstraints.height);
1121 }
1122 scrollYParentNode->_scrollToNodeY(toNode);
1123}
1124
1126 screenNode->scrollToNodeX(getId(), toNode != nullptr?toNode->getId():string());
1127}
1128
1130 screenNode->scrollToNodeY(getId(), toNode != nullptr?toNode->getId():string());
1131}
1132
1133void GUINode::dumpNode(GUINode* node, int depth, int indent, int depthIdx) {
1134 string indentString;
1135 for (auto i = 0; i < indent; i++) indentString+= " ";
1136 Console::println(
1137 indentString +
1138 node->id + ": " +
1139 node->getNodeType() + ": constaints: " +
1140 to_string(node->computedConstraints.left) + ", " +
1141 to_string(node->computedConstraints.top) + ", " +
1142 to_string(node->computedConstraints.width) + "; " +
1143 to_string(node->computedConstraints.height) + ", alignment: " +
1144 to_string(node->computedConstraints.alignmentLeft) + ", " +
1145 to_string(node->computedConstraints.alignmentTop) + "; content alignment: " +
1146 to_string(node->computedConstraints.contentAlignmentLeft) + ", " +
1147 to_string(node->computedConstraints.contentAlignmentTop) + "; " +
1148 StringTools::substring(node->requestedConstraints.leftType->getName(), 0, 2) + "/" +
1149 StringTools::substring(node->requestedConstraints.topType->getName(), 0, 2) + "/" +
1150 StringTools::substring(node->requestedConstraints.widthType->getName(), 0, 2) + "/" +
1151 StringTools::substring(node->requestedConstraints.heightType->getName(), 0, 2) + ";" +
1152 ": conditions met: " +
1153 to_string(node->conditionsMet) + "; layouted: " +
1154 to_string(node->layouted) +
1155 (dynamic_cast<GUIParentNode*>(node) != nullptr?"; child count: " + to_string(dynamic_cast<GUIParentNode*>(node)->subNodes.size()):"")
1156 );
1157 if (dynamic_cast<GUIParentNode*>(node) != nullptr && (depth == 0 || depthIdx + 1 < depth)) {
1158 auto parentNode = required_dynamic_cast<GUIParentNode*>(node);
1159 for (auto subNode: parentNode->subNodes) {
1160 dumpNode(subNode, depth, indent + 1, depthIdx + 1);
1161 }
1162 }
1163}
1164
1165void GUINode::dumpParentNodes(GUINode* node, int indent) {
1166 string indentString;
1167 for (auto i = 0; i < indent; i++) indentString+= " ";
1168 Console::println(
1169 indentString +
1170 node->id + ": " +
1171 node->getNodeType() + ": constaints: " +
1172 to_string(node->computedConstraints.left) + ", " +
1173 to_string(node->computedConstraints.top) + ", " +
1174 to_string(node->computedConstraints.width) + "; " +
1175 to_string(node->computedConstraints.height) + ", alignment: " +
1176 to_string(node->computedConstraints.alignmentLeft) + ", " +
1177 to_string(node->computedConstraints.alignmentTop) + "; content alignment: " +
1178 to_string(node->computedConstraints.contentAlignmentLeft) + ", " +
1179 to_string(node->computedConstraints.contentAlignmentTop) + "; " +
1180 StringTools::substring(node->requestedConstraints.leftType->getName(), 0, 2) + "/" +
1181 StringTools::substring(node->requestedConstraints.topType->getName(), 0, 2) + "/" +
1182 StringTools::substring(node->requestedConstraints.widthType->getName(), 0, 2) + "/" +
1183 StringTools::substring(node->requestedConstraints.heightType->getName(), 0, 2) + ";" +
1184 ": conditions met: " +
1185 to_string(node->conditionsMet) + "; layouted: " +
1186 to_string(node->layouted) +
1187 (dynamic_cast<GUIParentNode*>(node) != nullptr?"; child count: " + to_string(dynamic_cast<GUIParentNode*>(node)->subNodes.size()):"")
1188 );
1189 if (node->parentNode != nullptr) dumpParentNodes(node->parentNode, indent + 1);
1190}
1191
1192void GUINode::cfDetermineElementNodeDependencies(vector<string>& elementNodeDependencies) {
1193 auto& showOn = this->showOn.conditions;
1194 auto& hideOn = this->hideOn.conditions;
1195
1197 string function;
1198 vector<string> arguments;
1199 for (auto i = 0; i < hideOn.size(); i++) {
1200 auto conditionTerm = hideOn[i];
1201 cfParse(hideOn[i], function, arguments);
1202 cfCallDetermineElementNodeDependencies(function, arguments, elementNodeDependencies);
1203 }
1204 for (auto i = 0; i < showOn.size(); i++) {
1205 cfParse(showOn[i], function, arguments);
1206 cfCallDetermineElementNodeDependencies(function, arguments, elementNodeDependencies);
1207 }
1208
1209}
1210
1211void GUINode::cfParse(const string& term, string& function, vector<string>& arguments) {
1212 auto leftParenthesis = term.find('(');
1213 auto rightParenthesis = term.find_last_of(')');
1214 function = "hasCondition";
1215 if (leftParenthesis != string::npos && rightParenthesis != string::npos && leftParenthesis < rightParenthesis) {
1216 function = StringTools::trim(StringTools::substring(term, 0, leftParenthesis));
1217 }
1218 arguments.clear();
1219 auto argumentStartIdx = leftParenthesis != string::npos?leftParenthesis + 1:0;
1220 auto argumentEndIdx = rightParenthesis != string::npos?rightParenthesis:term.size();
1221 auto quote = false;
1222 auto doubleQuote = false;
1223 string argument;
1224 for (auto i = argumentStartIdx; i < argumentEndIdx; i++) {
1225 auto c = term[i];
1226 if (c == '\'') {
1227 argument+= c;
1228 if (quote == true) {
1229 quote = false;
1230 arguments.push_back(StringTools::trim(argument));
1231 argument.clear();
1232 }
1233 } else
1234 if (c == '\"') {
1235 argument+= c;
1236 if (doubleQuote == true) {
1237 doubleQuote = false;
1238 arguments.push_back(argument);
1239 argument.clear();
1240 }
1241 } else
1242 if (quote == false && doubleQuote == false && c == ',') {
1243 arguments.push_back(StringTools::trim(argument));
1244 argument.clear();
1245 } else {
1246 argument+= c;
1247 }
1248 }
1249 if (argument.empty() == false) {
1250 arguments.push_back(StringTools::trim(argument));
1251 argument.clear();
1252 }
1253}
1254
1255bool GUINode::cfCall(GUIElementNode* elementNode, const string& function, const vector<string>& arguments) {
1256 if (function == "empty") {
1257 return cfEmpty(arguments);
1258 } else
1259 if (function == "notEmpty") {
1260 return cfEmpty(arguments) == false;
1261 } else
1262 if (function == "hasCondition") {
1263 return cfHasCondition(elementNode, arguments);
1264 } else {
1265 Console::println("GUINode::cfCall(): Unknown function: " + function + ": returning false");
1266 return false;
1267 }
1268}
1269
1270void GUINode::cfCallDetermineElementNodeDependencies(const string& function, const vector<string>& arguments, vector<string>& elementNodeDependencies) {
1271 if (function == "empty") {
1272 // no op
1273 } else
1274 if (function == "notEmpty") {
1275 // no op
1276 } else
1277 if (function == "hasCondition") {
1278 cfHasConditionDetermineElementNodeDependencies(arguments, elementNodeDependencies);
1279 } else {
1280 Console::println("GUINode::cfCallDetermineElementNodeDependencies(): Unknown function: " + function + ": returning false");
1281 }
1282
1283}
1284
1285bool GUINode::cfHasCondition(GUIElementNode* elementNode, const vector<string>& arguments) {
1287 for (auto& argument: arguments) {
1288 string elementNodeId;
1289 auto condition = argument;
1290 if (condition.find('.') != -1) {
1291 t.tokenize(condition, ".");
1292 elementNodeId = t.nextToken();
1293 condition = t.nextToken();
1294 }
1295 auto elementNodeToCheck = elementNodeId.size() == 0?elementNode:dynamic_cast<GUIElementNode*>(screenNode->getNodeById(elementNodeId));
1296 if (elementNodeToCheck == nullptr) {
1297 Console::println("GUINode::checkConditions(): element node '" + elementNodeId + "': not found");
1298 continue;
1299 }
1300 if (elementNodeToCheck->activeConditions.has(condition) == true) return true;
1301 }
1302 return false;
1303}
1304
1305void GUINode::cfHasConditionDetermineElementNodeDependencies(const vector<string>& arguments, vector<string>& elementNodeDependencies) {
1307 for (auto& argument: arguments) {
1308 string elementNodeId;
1309 auto condition = argument;
1310 if (condition.find('.') != string::npos) {
1311 t.tokenize(condition, ".");
1312 elementNodeId = t.nextToken();
1313 condition = t.nextToken();
1314 }
1315 if (elementNodeId.empty() == false) {
1316 elementNodeDependencies.push_back(elementNodeId);
1317 }
1318 }
1319}
1320
1321bool GUINode::cfEmpty(const vector<string>& arguments) {
1322 for (auto& argument: arguments) {
1323 if (argument == "false" ||
1324 argument == "0" ||
1325 argument == "0.0" ||
1326 argument == "\"\"" ||
1327 argument == "''") return true;
1328 }
1329 return false;
1330}
1331
1332void GUINode::setBackgroundImage(const string& backgroundImage) {
1333 if (backgroundTexture != nullptr) {
1334 Engine::getInstance()->getTextureManager()->removeTexture(backgroundTexture->getId());
1335 backgroundTexture = nullptr;
1337 }
1338 if (backgroundImage.length() > 0) {
1340 backgroundTextureId = Engine::getInstance()->getTextureManager()->addTexture(backgroundTexture, 0);
1341 }
1342}
1343
1344void GUINode::addEffect(const string& id, GUIEffect* effect)
1345{
1346 removeEffect(id);
1347 if (effectState == nullptr && effects.empty() == true) effectState = new GUIEffectState();
1348 effects[id] = effect;
1349}
1350
1352{
1353 auto effectIt = effects.find(id);
1354 if (effectIt == effects.end()) return nullptr;
1355 return effectIt->second;
1356}
1357
1358void GUINode::removeEffect(const string& id)
1359{
1360 auto effectIt = effects.find(id);
1361 if (effectIt == effects.end()) return;
1362 delete effectIt->second;
1363 effects.erase(effectIt);
1364 if (effectState != nullptr && effects.empty() == true) {
1365 delete effectState;
1366 effectState = nullptr;
1367 }
1368}
1369
1370void GUINode::onSetConditions(const vector<string>& conditions) {
1371 // no op if no effects
1372 if (hasEffects() == false) return;
1373
1374 //
1375 auto defaultEffect = getEffect("tdme.xmleffect.default");
1376
1377 //
1378 auto haveInEffect = false;
1379 auto issuedOutEffect = false;
1380
1381 //
1382 for (auto& condition: conditions) {
1383 {
1384 auto effect = getEffect("tdme.xmleffect.in.color.on." + condition);
1385 if (effect != nullptr && effect->isActive() == false) {
1386 haveInEffect = true;
1387 effect->start();
1388 }
1389 }
1390 {
1391 auto effect = getEffect("tdme.xmleffect.in.position.on." + condition);
1392 if (effect != nullptr && effect->isActive() == false) {
1393 haveInEffect = true;
1394 effect->start();
1395 }
1396 }
1397 }
1398 if (haveInEffect == true) {
1399 if (defaultEffect != nullptr) defaultEffect->stop();
1400 for (auto& effectIt: effects) {
1401 auto effect = effectIt.second;
1402 if (StringTools::startsWith(effectIt.first, "tdme.xmleffect.out.") == true && effect->isActive() == true) {
1403 effect->stop();
1404 }
1405 }
1406 } else {
1407 for (auto& condition: lastConditions) {
1408 if (find(conditions.begin(), conditions.end(), condition) != conditions.end()) continue;
1409 {
1410 auto effect = getEffect("tdme.xmleffect.out.color.on." + condition);
1411 if (effect != nullptr && effect->isActive() == false) {
1412 issuedOutEffect = true;
1413 haveOutEffect = true;
1414 effect->start();
1415 }
1416 }
1417 {
1418 auto effect = getEffect("tdme.xmleffect.out.position.on." + condition);
1419 if (effect != nullptr && effect->isActive() == false) {
1420 issuedOutEffect = true;
1421 haveOutEffect = true;
1422 effect->start();
1423 }
1424 }
1425 }
1426 if (issuedOutEffect == true) {
1427 if (defaultEffect != nullptr && defaultEffect->isActive() == true) defaultEffect->stop();
1428 for (auto& effectIt: effects) {
1429 auto effect = effectIt.second;
1430 if (StringTools::startsWith(effectIt.first, "tdme.xmleffect.in.") == true && effect->isActive() == true) {
1431 effect->stop();
1432 }
1433 }
1434 }
1435 }
1436 lastConditions = conditions;
1437
1438 // check if we need to start default effect
1439 auto haveColorEffect = false;
1440 auto havePositionEffect = false;
1441 for (auto& effectIt: effects) {
1442 auto effect = effectIt.second;
1443 if (effect->isActive() == true) {
1444 switch (effect->getType()) {
1445 case GUIEffect::EFFECTTYPE_COLOR:
1446 haveColorEffect = true;
1447 break;
1448 case GUIEffect::EFFECTTYPE_POSITION:
1449 havePositionEffect = true;
1450 break;
1451 case GUIEffect::EFFECTTYPE_NONE:
1452 break;
1453 }
1454 }
1455 }
1456 if (haveColorEffect == false || havePositionEffect == false) {
1457 if (defaultEffect != nullptr) {
1458 switch (defaultEffect->getType()) {
1459 case GUIEffect::EFFECTTYPE_COLOR:
1460 haveColorEffect = true;
1461 break;
1462 case GUIEffect::EFFECTTYPE_POSITION:
1463 havePositionEffect = true;
1464 break;
1465 case GUIEffect::EFFECTTYPE_NONE:
1466 break;
1467 }
1468 }
1469 // also reset color effect if not applied
1470 if (haveColorEffect == false) {
1471 GUIColorEffect::resetEffectState(effectState);
1472 } else
1473 // also position effect if not applied
1474 if (havePositionEffect == false) {
1475 GUIPositionEffect::resetEffectState(effectState);
1476 }
1477 // finally start default effect if we have none
1478 if (defaultEffect != nullptr && haveColorEffect == false && havePositionEffect == false) {
1479 defaultEffect->start();
1480 }
1481 }
1482}
1483
1485 if (haveOutEffect == false) return false;
1486 // do not change condition met if we have a active effect
1487 haveOutEffect = false;
1488 for (auto effectIt: effects) {
1489 if (effectIt.second->isActive() == true) {
1490 haveOutEffect = true;
1491 break;
1492 }
1493 }
1494 return haveOutEffect;
1495}
1496
Engine main class.
Definition: Engine.h:122
const string & getId() const
Definition: Texture.h:60
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
bool equals(const Color4Base &c) const
Compares this color with given color.
Definition: Color4Base.h:245
GUI module class.
Definition: GUI.h:66
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
Definition: GUI.cpp:145
GUI effect base class.
Definition: GUIEffect.h:23
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_BLACK
Definition: GUIColor.h:33
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_TRANSPARENT
Definition: GUIColor.h:37
static STATIC_DLL_IMPEXT string CONDITION_ALWAYS
GUI element node conditions.
bool add(const string &condition)
Add a condition.
GUI node controller base class.
virtual void dispose()=0
Dispose controller.
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * RIGHT
static GUINode_AlignmentHorizontal * valueOf(const string &name)
Returns enum object given by name.
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * LEFT
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * BOTTOM
static GUINode_AlignmentVertical * valueOf(const string &name)
Returns enum object given by name.
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * TOP
static STATIC_DLL_IMPEXT GUINode_Flow * FLOATING
Definition: GUINode_Flow.h:31
static GUINode_Flow * valueOf(const string &name)
Returns enum object given by name.
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PERCENT
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * TABLECELL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * STAR
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * NONE
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
GUI node base class.
Definition: GUINode.h:63
GUINodeConditions hideOn
Definition: GUINode.h:161
void cfCallDetermineElementNodeDependencies(const string &function, const vector< string > &arguments, vector< string > &elementNodeDependencies)
Determine element node dependencies - Call condition function with arguments.
Definition: GUINode.cpp:1270
bool cfCall(GUIElementNode *elementNode, const string &function, const vector< string > &arguments)
Call condition function with arguments.
Definition: GUINode.cpp:1255
GUINodeController * controller
Definition: GUINode.h:162
virtual int getContentHeight()=0
static GUINode_RequestedConstraints_RequestedConstraintsType * getRequestedConstraintsType(const string &constraint, GUINode_RequestedConstraints_RequestedConstraintsType *defaultConstraintsType)
Get requested constraints type.
Definition: GUINode.cpp:286
virtual void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds)
Determine mouse event nodes.
Definition: GUINode.cpp:1062
GUIColor backgroundImageEffectColorMul
Definition: GUINode.h:156
float computeParentChildrenRenderOffsetXTotal()
Definition: GUINode.cpp:951
GUINode_Border border
Definition: GUINode.h:159
static GUINode_Alignments createAlignments(const string &horizontal, const string &vertical)
Create alignments.
Definition: GUINode.cpp:260
void scrollToNodeY(GUIParentNode *toNode=nullptr)
Scroll to node Y.
Definition: GUINode.cpp:1129
void scrollToNodeX(GUIParentNode *toNode=nullptr)
Scroll to node X.
Definition: GUINode.cpp:1125
void onSetConditions(const vector< string > &conditions)
On set condition.
Definition: GUINode.cpp:1370
virtual int getContentWidth()=0
void addEffect(const string &id, GUIEffect *effect)
Add effect, effect already registered with the is will be removed.
Definition: GUINode.cpp:1344
virtual void setLeft(int left)
Set computed left.
Definition: GUINode.cpp:177
virtual void layoutOnDemand()
Layout on demand.
Definition: GUINode.cpp:471
GUINode_Scale9Grid backgroundImageScale9Grid
Definition: GUINode.h:155
bool cfHasCondition(GUIElementNode *elementNode, const vector< string > &arguments)
Condition function: has condition.
Definition: GUINode.cpp:1285
virtual ~GUINode()
Destructor.
Definition: GUINode.cpp:135
vector< string > lastConditions
Definition: GUINode.h:169
void _scrollToNodeX(GUIParentNode *toNode=nullptr)
Scroll to node X.
Definition: GUINode.cpp:1084
void cfDetermineElementNodeDependencies(vector< string > &elementNodeDependencies)
Determine element node dependencies.
Definition: GUINode.cpp:1192
static GUIColor getRequestedColor(const string &color, const GUIColor &defaultColor)
Get color.
Definition: GUINode.cpp:331
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
void cfParse(const string &term, string &function, vector< string > &arguments)
Parse condition function term.
Definition: GUINode.cpp:1211
GUIColor backgroundImageEffectColorAdd
Definition: GUINode.h:157
virtual void computeContentAlignment()
Do content alignment.
Definition: GUINode.cpp:205
GUIParentNode * parentNode
Definition: GUINode.h:147
void _scrollToNodeY(GUIParentNode *toNode=nullptr)
Scroll to node Y.
Definition: GUINode.cpp:1106
virtual const string getNodeType()=0
static void dumpNode(GUINode *node, int depth=0, int indent=0, int depthIdx=0)
Dump node.
Definition: GUINode.cpp:1133
virtual void undoEffects(GUIRenderer *guiRenderer)
Undo effects.
Definition: GUINode.cpp:503
virtual bool isContentNode()=0
Texture * backgroundTexture
Definition: GUINode.h:153
bool haveActiveOutEffect()
Determine if we have a out effect active.
Definition: GUINode.cpp:1484
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
GUINode_Padding padding
Definition: GUINode.h:158
void cfHasConditionDetermineElementNodeDependencies(const vector< string > &arguments, vector< string > &elementNodeDependencies)
Determine element node dependencies - Condition function: has condition.
Definition: GUINode.cpp:1305
unordered_map< string, GUIEffect * > effects
Definition: GUINode.h:163
virtual void setTop(int top)
Set computed top.
Definition: GUINode.cpp:183
virtual void setConditionsMet()
Set conditions met for this node and its subnodes.
Definition: GUINode.cpp:466
GUIScreenNode * screenNode
Definition: GUINode.h:146
const string getHierarchicalId()
Definition: GUINode.cpp:148
virtual int getAutoWidth()
Definition: GUINode.cpp:159
int layoutConstraintPixel(GUINode_RequestedConstraints_RequestedConstraintsType *type, int autoValue, int parentValue, int value)
Layout constraint.
Definition: GUINode.cpp:237
GUINode_RequestedConstraints requestedConstraints
Definition: GUINode.h:150
float computeParentChildrenRenderOffsetYTotal()
Definition: GUINode.cpp:962
bool shouldRender()
Determine if to render.
Definition: GUINode.h:295
GUIParentNode * getParentControllerNode()
Definition: GUINode.cpp:1053
const string & getId()
Definition: GUINode.h:329
virtual void dispose()
Dispose node.
Definition: GUINode.cpp:460
bool cfEmpty(const vector< string > &arguments)
Condition function: empty.
Definition: GUINode.cpp:1321
void removeEffect(const string &id)
Remove effect.
Definition: GUINode.cpp:1358
void setBackgroundImage(const string &backgroundImage)
Set background image.
Definition: GUINode.cpp:1332
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
Definition: GUINode.cpp:973
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
Definition: GUINode.cpp:268
GUIEffectState * effectState
Definition: GUINode.h:170
virtual void applyEffects(GUIRenderer *guiRenderer)
Apply effects.
Definition: GUINode.cpp:478
GUINode_Alignments alignments
Definition: GUINode.h:149
static void dumpParentNodes(GUINode *node, int indent=0)
Dump parent nodes.
Definition: GUINode.cpp:1165
void setController(GUINodeController *controller)
Set up node controller.
Definition: GUINode.cpp:1074
bool checkConditions()
Check if conditions are met.
Definition: GUINode.cpp:424
GUIEffect * getEffect(const string &id)
Get effect.
Definition: GUINode.cpp:1351
static GUINode_Border createBorder(const string &allBorder, const string &left, const string &top, const string &right, const string &bottom, const string &allBorderColor, const string &leftColor, const string &topColor, const string &rightColor, const string &bottomColor)
Create border.
Definition: GUINode.cpp:345
void getEventNodePosition(GUIMouseEvent *event, Vector2 &position)
Get event position clamped to node constraints TODO: use Vector2 instead of array<float,...
Definition: GUINode.cpp:1040
virtual void layout()
Layout.
Definition: GUINode.cpp:189
GUINodeConditions showOn
Definition: GUINode.h:160
static GUINodeConditions createConditions(const string &conditions)
Create conditions.
Definition: GUINode.cpp:395
static GUINode_Padding createPadding(const string &allPadding, const string &left, const string &top, const string &right, const string &bottom)
Create padding.
Definition: GUINode.cpp:367
GUINode_Flow * flow
Definition: GUINode.h:85
static GUINode_Scale9Grid createScale9Grid(const string &all, const string &left, const string &top, const string &right, const string &bottom)
Create scale 9 grid.
Definition: GUINode.cpp:381
void getEventOffNodeRelativePosition(GUIMouseEvent *event, Vector2 &position)
Get event off node relative position TODO: use Vector2 instead of array<float, 2>
Definition: GUINode.cpp:1014
virtual int getAutoHeight()
Definition: GUINode.cpp:168
static int getRequestedConstraintsValue(const string &constraint, int defaultConstraintsValue)
Get requested constraints value.
Definition: GUINode.cpp:304
static GUINode_Flow * createFlow(const string &flow)
Create flow.
Definition: GUINode.cpp:340
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * SCROLL
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
void setChildrenRenderOffsetX(float childrenRenderOffSetX)
Set children render offset x.
vector< GUINode * > subNodes
Definition: GUIParentNode.h:63
void setChildrenRenderOffsetY(float childrenRenderOffSetY)
Set children render offset y.
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void scrollToNodeX(const string &node, const string &toNode)
Register deferred scroll to node X.
void scrollToNodeY(const string &node, const string &toNode)
Register deferred scroll to node Y.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void removeTickNode(GUINode *node)
Remove tick node.
const string & getApplicationRootPathName()
void forceLayout(GUINode *node)
Force layout node content (e.g.
void addNodeElementNodeDependency(const string &elementNodeId, const string &nodeId)
Add node to element node dependency.
void bindTexture(int32_t textureId)
Bind texture.
void setEffectColorAdd(const GUIColor &color)
Set effect color add.
Definition: GUIRenderer.h:170
void popEffects()
Pop effects.
Definition: GUIRenderer.h:371
void setEffectColorMul(const GUIColor &color)
Set effect color mul.
Definition: GUIRenderer.h:162
void pushEffects(const vector< GUIEffect * > &effects)
Push effects @oaran effects effects.
Definition: GUIRenderer.h:356
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.
2D vector 2 class
Definition: Vector2.h:19
Console class.
Definition: Console.h:26
const string & getName() const
Definition: Enum.h:30
bool equals(Enum *enumObject) const
Compare enum with another enum.
Definition: Enum.h:45
Integer class.
Definition: Integer.h:26
String tokenizer class.
void tokenize(const string &str, const string &delimiters)
Tokenize.
String tools class.
Definition: StringTools.h:20
GUINode_AlignmentVertical * vertical
GUINode_AlignmentHorizontal * horizontal
GUI node border entity.
GUI node padding entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.
Action Interface.
Definition: Action.h:12