6#include <unordered_set>
47using std::unordered_set;
93 const string& backgroundImage,
95 const GUIColor& backgroundImageEffectColorMul,
96 const GUIColor& backgroundImageEffectColorAdd,
130 vector<string> elementNodeDependencies;
138 vector<string> effectsToRemove;
140 effectsToRemove.push_back(effectIt.first);
142 for (
auto effectToRemoveId: effectsToRemove) {
149 string hierarchicalId;
151 while (_parentNode !=
nullptr) {
152 hierarchicalId = _parentNode->
id +
"." + hierarchicalId;
153 _parentNode = _parentNode->parentNode;
155 hierarchicalId = hierarchicalId +
id;
156 return hierarchicalId;
246 return static_cast<int>((parentValue / 100.0 * value));
288 if (constraint.empty() ==
true || constraint.length() == 0) {
289 return defaultConstraintsType;
291 if (constraint.compare(
"auto") == 0) {
294 if (constraint.compare(
"*") == 0) {
297 if (StringTools::endsWith(constraint,
"%")) {
306 if (constraint.empty() ==
true || constraint.length() == 0) {
307 return defaultConstraintsValue;
309 if (constraint.compare(
"auto") == 0) {
312 if (constraint.compare(
"*") == 0) {
315 if (StringTools::endsWith(constraint,
"%")) {
316 return (Integer::parse(constraint.substr(0, constraint.length() - 1)));
318 return (Integer::parse(constraint));
324 if (value.empty() ==
true || value.length() == 0) {
327 return (Integer::parse(value));
333 if (color.empty() ==
true || color.length() == 0) {
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)
400 for (
auto i = 0; i < conditions.size(); i++) {
401 auto c = conditions[i];
410 if (arguments == 0 && c ==
',') {
411 guiNodeConditions.
add(StringTools::trim(condition));
417 if (condition.empty() ==
false) {
418 guiNodeConditions.
add(StringTools::trim(condition));
421 return guiNodeConditions;
429 if (
showOn.empty() ==
true &&
hideOn.empty() ==
true)
return true;
431 for (
auto i = 0; i <
showOn.size(); i++) {
436 for (
auto i = 0; i <
hideOn.size(); i++) {
446 vector<string> arguments;
447 for (
auto i = 0; i <
hideOn.size(); i++) {
448 auto conditionTerm =
hideOn[i];
450 if (
cfCall(elementNode, function, arguments) ==
true)
return false;
452 for (
auto i = 0; i <
showOn.size(); i++) {
454 if (
cfCall(elementNode, function, arguments) ==
true)
return true;
457 return showOn.empty() ==
true;
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());
488 activeEffects.push_back(effect);
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);
541 ((left) / (screenWidth / 2.0f)) - 1.0f,
542 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
549 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
550 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
557 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
558 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
565 ((left) / (screenWidth / 2.0f)) - 1.0f,
566 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
581 if (scale9Grid.
left == 0 &&
582 scale9Grid.
right == 0 &&
583 scale9Grid.
top == 0 &&
590 ((left) / (screenWidth / 2.0f)) - 1.0f,
591 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
592 1.0f, 1.0f, 1.0f, 1.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,
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,
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,
615 if (scale9Grid.
top == 0 && scale9Grid.
bottom == 0) {
620 if (scale9Grid.
left == 0 && scale9Grid.
right == 0) {
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;
645 float imageScreenScale9Right = imageScreenLeft + imageScreenWidth - scaledScale9Grid.
right;
646 float imageScreenScale9Bottom = imageScreenTop + imageScreenHeight - scaledScale9Grid.
bottom;
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;
656 ((left) / (screenWidth / 2.0f)) - 1.0f,
657 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
658 1.0f, 1.0f, 1.0f, 1.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,
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,
675 1.0f / imageTextureHeight * scale9Grid.
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;
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,
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),
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
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;
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),
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,
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,
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
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;
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,
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,
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),
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;
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),
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,
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;
801 ((left) / (screenWidth / 2.0f)) - 1.0f,
802 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
803 1.0f, 1.0f, 1.0f, 1.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,
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,
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;
830 ((left) / (screenWidth / 2.0f)) - 1.0f,
831 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
832 1.0f, 1.0f, 1.0f, 1.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,
849 1.0f / imageTextureHeight * (imageTextureHeight - scale9Grid.
bottom)
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;
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,
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,
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)
883 float left = imageScreenScale9Left;
884 float top = imageScreenScale9Top;
885 float width = imageScreenWidth - scaledScale9Grid.
left - scaledScale9Grid.
right;
886 float height = imageScreenHeight - scaledScale9Grid.
top - scaledScale9Grid.
bottom;
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)
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);
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);
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);
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);
953 auto childrenRenderOffSetX = 0.0f;
959 return childrenRenderOffSetX;
964 auto childrenRenderOffSetY = 0.0f;
970 return childrenRenderOffSetY;
975 auto eventXScreen =
event->getX();
976 auto eventYScreen =
event->getY();
996 auto belongsToElement =
1001 if (belongsToElement ==
true) {
1005 return belongsToElement;
1016 auto eventXScreen =
event->getX();
1017 auto eventYScreen =
event->getY();
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));
1032 position[1] =
static_cast<int>((eventY - top));
1033 }
else if (eventY > bottom) {
1034 position[1] =
static_cast<int>((eventY - bottom));
1041 auto eventXScreen =
event->getX();
1042 auto eventYScreen =
event->getY();
1049 position[0] = Math::clamp(
static_cast<int>(eventX), left, right) - left;
1050 position[1] = Math::clamp(
static_cast<int>(eventY), top, bottom) - top;
1056 while (node !=
nullptr && node->controller ==
nullptr) {
1076 if (this->controller !=
nullptr) {
1088 while (
true ==
true) {
1089 if (scrollXParentNode == toNode || scrollXParentNode ==
nullptr)
1095 scrollXParentNode = scrollXParentNode->
parentNode;
1097 if (
computedConstraints.
left < scrollXParentNode->getChildrenRenderOffsetX() + scrollXParentNode->computedConstraints.left) {
1103 scrollXParentNode->_scrollToNodeX(toNode);
1110 while (
true ==
true) {
1111 if (scrollYParentNode == toNode || scrollYParentNode ==
nullptr)
return;
1113 scrollYParentNode = scrollYParentNode->
parentNode;
1114 if (scrollYParentNode ==
nullptr)
return;
1116 if (
computedConstraints.
top < scrollYParentNode->getChildrenRenderOffsetY() + scrollYParentNode->computedConstraints.top) {
1122 scrollYParentNode->_scrollToNodeY(toNode);
1134 string indentString;
1135 for (
auto i = 0; i < indent; i++) indentString+=
" ";
1152 ": conditions met: " +
1155 (
dynamic_cast<GUIParentNode*
>(node) !=
nullptr?
"; child count: " + to_string(
dynamic_cast<GUIParentNode*
>(node)->subNodes.size()):
"")
1157 if (
dynamic_cast<GUIParentNode*
>(node) !=
nullptr && (depth == 0 || depthIdx + 1 < depth)) {
1158 auto parentNode = required_dynamic_cast<GUIParentNode*>(node);
1160 dumpNode(subNode, depth, indent + 1, depthIdx + 1);
1166 string indentString;
1167 for (
auto i = 0; i < indent; i++) indentString+=
" ";
1184 ": conditions met: " +
1187 (
dynamic_cast<GUIParentNode*
>(node) !=
nullptr?
"; child count: " + to_string(
dynamic_cast<GUIParentNode*
>(node)->subNodes.size()):
"")
1198 vector<string> arguments;
1199 for (
auto i = 0; i <
hideOn.size(); i++) {
1200 auto conditionTerm =
hideOn[i];
1204 for (
auto i = 0; i <
showOn.size(); i++) {
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));
1219 auto argumentStartIdx = leftParenthesis != string::npos?leftParenthesis + 1:0;
1220 auto argumentEndIdx = rightParenthesis != string::npos?rightParenthesis:term.size();
1222 auto doubleQuote =
false;
1224 for (
auto i = argumentStartIdx; i < argumentEndIdx; i++) {
1228 if (quote ==
true) {
1230 arguments.push_back(StringTools::trim(argument));
1236 if (doubleQuote ==
true) {
1237 doubleQuote =
false;
1238 arguments.push_back(argument);
1242 if (quote ==
false && doubleQuote ==
false && c ==
',') {
1243 arguments.push_back(StringTools::trim(argument));
1249 if (argument.empty() ==
false) {
1250 arguments.push_back(StringTools::trim(argument));
1256 if (function ==
"empty") {
1259 if (function ==
"notEmpty") {
1260 return cfEmpty(arguments) ==
false;
1262 if (function ==
"hasCondition") {
1265 Console::println(
"GUINode::cfCall(): Unknown function: " + function +
": returning false");
1271 if (function ==
"empty") {
1274 if (function ==
"notEmpty") {
1277 if (function ==
"hasCondition") {
1280 Console::println(
"GUINode::cfCallDetermineElementNodeDependencies(): Unknown function: " + function +
": returning false");
1287 for (
auto& argument: arguments) {
1288 string elementNodeId;
1289 auto condition = argument;
1290 if (condition.find(
'.') != -1) {
1296 if (elementNodeToCheck ==
nullptr) {
1297 Console::println(
"GUINode::checkConditions(): element node '" + elementNodeId +
"': not found");
1300 if (elementNodeToCheck->activeConditions.has(condition) ==
true)
return true;
1307 for (
auto& argument: arguments) {
1308 string elementNodeId;
1309 auto condition = argument;
1310 if (condition.find(
'.') != string::npos) {
1315 if (elementNodeId.empty() ==
false) {
1316 elementNodeDependencies.push_back(elementNodeId);
1322 for (
auto& argument: arguments) {
1323 if (argument ==
"false" ||
1325 argument ==
"0.0" ||
1326 argument ==
"\"\"" ||
1327 argument ==
"''")
return true;
1338 if (backgroundImage.length() > 0) {
1353 auto effectIt =
effects.find(
id);
1354 if (effectIt ==
effects.end())
return nullptr;
1355 return effectIt->second;
1360 auto effectIt =
effects.find(
id);
1361 if (effectIt ==
effects.end())
return;
1362 delete effectIt->second;
1375 auto defaultEffect =
getEffect(
"tdme.xmleffect.default");
1378 auto haveInEffect =
false;
1379 auto issuedOutEffect =
false;
1382 for (
auto& condition: conditions) {
1384 auto effect =
getEffect(
"tdme.xmleffect.in.color.on." + condition);
1385 if (effect !=
nullptr && effect->isActive() ==
false) {
1386 haveInEffect =
true;
1391 auto effect =
getEffect(
"tdme.xmleffect.in.position.on." + condition);
1392 if (effect !=
nullptr && effect->isActive() ==
false) {
1393 haveInEffect =
true;
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) {
1408 if (find(conditions.begin(), conditions.end(), condition) != conditions.end())
continue;
1410 auto effect =
getEffect(
"tdme.xmleffect.out.color.on." + condition);
1411 if (effect !=
nullptr && effect->isActive() ==
false) {
1412 issuedOutEffect =
true;
1418 auto effect =
getEffect(
"tdme.xmleffect.out.position.on." + condition);
1419 if (effect !=
nullptr && effect->isActive() ==
false) {
1420 issuedOutEffect =
true;
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) {
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;
1448 case GUIEffect::EFFECTTYPE_POSITION:
1449 havePositionEffect =
true;
1451 case GUIEffect::EFFECTTYPE_NONE:
1456 if (haveColorEffect ==
false || havePositionEffect ==
false) {
1457 if (defaultEffect !=
nullptr) {
1458 switch (defaultEffect->getType()) {
1459 case GUIEffect::EFFECTTYPE_COLOR:
1460 haveColorEffect =
true;
1462 case GUIEffect::EFFECTTYPE_POSITION:
1463 havePositionEffect =
true;
1465 case GUIEffect::EFFECTTYPE_NONE:
1470 if (haveColorEffect ==
false) {
1474 if (havePositionEffect ==
false) {
1478 if (defaultEffect !=
nullptr && haveColorEffect ==
false && havePositionEffect ==
false) {
1479 defaultEffect->start();
1488 for (
auto effectIt:
effects) {
1489 if (effectIt.second->isActive() ==
true) {
const string & getId() const
int32_t getHeight() const
array< float, 4 > & getArray() const
bool equals(const Color4Base &c) const
Compares this color with given color.
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_BLACK
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_TRANSPARENT
static STATIC_DLL_IMPEXT string CONDITION_ALWAYS
GUI element node conditions.
bool add(const string &condition)
Add a condition.
vector< string > conditions
GUI node controller base class.
virtual void dispose()=0
Dispose controller.
GUI node horizontal alignment enum.
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
GUI node vertical alignment enum.
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
static GUINode_Flow * valueOf(const string &name)
Returns enum object given by name.
GUI node requested constraints requested constraints type enum.
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
void cfCallDetermineElementNodeDependencies(const string &function, const vector< string > &arguments, vector< string > &elementNodeDependencies)
Determine element node dependencies - Call condition function with arguments.
bool cfCall(GUIElementNode *elementNode, const string &function, const vector< string > &arguments)
Call condition function with arguments.
GUINodeController * controller
virtual int getContentHeight()=0
static GUINode_RequestedConstraints_RequestedConstraintsType * getRequestedConstraintsType(const string &constraint, GUINode_RequestedConstraints_RequestedConstraintsType *defaultConstraintsType)
Get requested constraints type.
virtual void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds)
Determine mouse event nodes.
GUIColor backgroundImageEffectColorMul
float computeParentChildrenRenderOffsetXTotal()
static GUINode_Alignments createAlignments(const string &horizontal, const string &vertical)
Create alignments.
void scrollToNodeY(GUIParentNode *toNode=nullptr)
Scroll to node Y.
void scrollToNodeX(GUIParentNode *toNode=nullptr)
Scroll to node X.
void onSetConditions(const vector< string > &conditions)
On set condition.
virtual int getContentWidth()=0
void addEffect(const string &id, GUIEffect *effect)
Add effect, effect already registered with the is will be removed.
virtual void setLeft(int left)
Set computed left.
virtual void layoutOnDemand()
Layout on demand.
GUINode_Scale9Grid backgroundImageScale9Grid
bool cfHasCondition(GUIElementNode *elementNode, const vector< string > &arguments)
Condition function: has condition.
virtual ~GUINode()
Destructor.
vector< string > lastConditions
void _scrollToNodeX(GUIParentNode *toNode=nullptr)
Scroll to node X.
void cfDetermineElementNodeDependencies(vector< string > &elementNodeDependencies)
Determine element node dependencies.
static GUIColor getRequestedColor(const string &color, const GUIColor &defaultColor)
Get color.
virtual void render(GUIRenderer *guiRenderer)
Render.
static int getRequestedPixelValue(const string &value, int defaultValue)
Get requested pixel value.
void cfParse(const string &term, string &function, vector< string > &arguments)
Parse condition function term.
GUIColor backgroundImageEffectColorAdd
virtual void computeContentAlignment()
Do content alignment.
GUIParentNode * parentNode
void _scrollToNodeY(GUIParentNode *toNode=nullptr)
Scroll to node Y.
virtual const string getNodeType()=0
static void dumpNode(GUINode *node, int depth=0, int indent=0, int depthIdx=0)
Dump node.
virtual void undoEffects(GUIRenderer *guiRenderer)
Undo effects.
virtual bool isContentNode()=0
Texture * backgroundTexture
bool haveActiveOutEffect()
Determine if we have a out effect active.
GUINode_ComputedConstraints computedConstraints
void cfHasConditionDetermineElementNodeDependencies(const vector< string > &arguments, vector< string > &elementNodeDependencies)
Determine element node dependencies - Condition function: has condition.
unordered_map< string, GUIEffect * > effects
virtual void setTop(int top)
Set computed top.
virtual void setConditionsMet()
Set conditions met for this node and its subnodes.
GUIScreenNode * screenNode
const string getHierarchicalId()
virtual int getAutoWidth()
int layoutConstraintPixel(GUINode_RequestedConstraints_RequestedConstraintsType *type, int autoValue, int parentValue, int value)
Layout constraint.
GUINode_RequestedConstraints requestedConstraints
float computeParentChildrenRenderOffsetYTotal()
bool shouldRender()
Determine if to render.
GUIParentNode * getParentControllerNode()
virtual void dispose()
Dispose node.
bool cfEmpty(const vector< string > &arguments)
Condition function: empty.
void removeEffect(const string &id)
Remove effect.
void setBackgroundImage(const string &backgroundImage)
Set background image.
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
GUIEffectState * effectState
virtual void applyEffects(GUIRenderer *guiRenderer)
Apply effects.
GUINode_Alignments alignments
static void dumpParentNodes(GUINode *node, int indent=0)
Dump parent nodes.
void setController(GUINodeController *controller)
Set up node controller.
bool checkConditions()
Check if conditions are met.
GUIEffect * getEffect(const string &id)
Get effect.
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.
void getEventNodePosition(GUIMouseEvent *event, Vector2 &position)
Get event position clamped to node constraints TODO: use Vector2 instead of array<float,...
virtual void layout()
Layout.
static GUINodeConditions createConditions(const string &conditions)
Create conditions.
static GUINode_Padding createPadding(const string &allPadding, const string &left, const string &top, const string &right, const string &bottom)
Create padding.
static GUINode_Scale9Grid createScale9Grid(const string &all, const string &left, const string &top, const string &right, const string &bottom)
Create scale 9 grid.
void getEventOffNodeRelativePosition(GUIMouseEvent *event, Vector2 &position)
Get event off node relative position TODO: use Vector2 instead of array<float, 2>
virtual int getAutoHeight()
static int getRequestedConstraintsValue(const string &constraint, int defaultConstraintsValue)
Get requested constraints value.
static GUINode_Flow * createFlow(const string &flow)
Create flow.
GUI parent node overflow enum.
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * SCROLL
GUI parent node base class thats supporting child nodes.
void setChildrenRenderOffsetX(float childrenRenderOffSetX)
Set children render offset x.
float getChildrenRenderOffsetX()
float getChildrenRenderOffsetY()
vector< GUINode * > subNodes
void setChildrenRenderOffsetY(float childrenRenderOffSetY)
Set children render offset y.
GUI screen node that represents a screen that can be rendered via GUI system.
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.
void popEffects()
Pop effects.
void setEffectColorMul(const GUIColor &color)
Set effect color mul.
void pushEffects(const vector< GUIEffect * > &effects)
Push effects @oaran effects effects.
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.
const string & getName() const
bool equals(Enum *enumObject) const
Compare enum with another enum.
const string & nextToken()
void tokenize(const string &str, const string &delimiters)
Tokenize.
GUINode_AlignmentVertical * vertical
GUINode_AlignmentHorizontal * horizontal
GUI node computed constraints.
GUI node requested constraints entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.