5#include <unordered_set>
35using std::unordered_set;
62GUIParentNode::GUIParentNode(
72 const string& backgroundImage,
74 const GUIColor& backgroundImageEffectColorMul,
75 const GUIColor& backgroundImageEffectColorAdd,
81 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
94 for (
auto subNode: detachedSubNodes) {
95 subNode->parentNode =
nullptr;
106 auto _parentControllerNode = parentControllerNode;
107 while (_parentControllerNode !=
nullptr) {
108 _parentControllerNode->getController()->onSubTreeChange();
109 _parentControllerNode = _parentControllerNode->getParentControllerNode();
120 auto _parentControllerNode = parentControllerNode;
121 while (_parentControllerNode !=
nullptr) {
122 _parentControllerNode->getController()->onSubTreeChange();
123 _parentControllerNode = _parentControllerNode->getParentControllerNode();
128 return detachedSubNodes;
137 for (
auto i = 0; i < detachedSubNodes.size(); i++) {
138 auto subNode = detachedSubNodes[i];
147 for (
auto i = 0; i <
subNodes.size(); i++) {
154 auto _parentControllerNode = parentControllerNode;
155 while (_parentControllerNode !=
nullptr) {
156 _parentControllerNode->getController()->onSubTreeChange();
157 _parentControllerNode = _parentControllerNode->getParentControllerNode();
165 for (
auto i = 0; i <
subNodes.size(); i++) {
175 if (
layouted ==
false || resetScrollOffsets ==
true) {
182 auto scrollableWidth = contentWidth - elementWidth;
183 if (scrollableWidth < 0.0f) scrollableWidth = 0.0;
191 auto scrollableHeight = contentHeight - elementHeight;
192 if (scrollableHeight < 0.0f) scrollableHeight = 0.0f;
199 auto _parentControllerNode = parentControllerNode;
200 while (_parentControllerNode !=
nullptr) {
201 _parentControllerNode->getController()->onSubTreeChange();
202 _parentControllerNode = _parentControllerNode->getParentControllerNode();
213 for (
auto i = 0; i <
subNodes.size(); i++) {
223 if (
layouted ==
false || resetScrollOffsets ==
true) {
230 auto scrollableWidth = contentWidth - elementWidth;
231 if (scrollableWidth < 0.0f) scrollableWidth = 0.0;
239 auto scrollableHeight = contentHeight - elementHeight;
240 if (scrollableHeight < 0.0f) scrollableHeight = 0.0f;
248 while (parentControllerNode !=
nullptr) {
249 parentControllerNode->getController()->onSubTreeChange();
250 parentControllerNode = parentControllerNode->getParentControllerNode();
261 "' already has a node attached with given node id '" +
279 for (
auto subNode: detachedSubNodes) {
280 subNode->parentNode =
this;
285 for (
auto i = 0; i <
subNodes.size(); i++) {
301 while (parentControllerNode !=
nullptr) {
302 parentControllerNode->getController()->onSubTreeChange();
303 parentControllerNode = parentControllerNode->getParentControllerNode();
320 if (StringTools::equalsIgnoreCase(StringTools::trim(overflow),
"hidden") ==
true) {
323 if (StringTools::equalsIgnoreCase(StringTools::trim(overflow),
"downsize-children") ==
true) {
326 if (StringTools::equalsIgnoreCase(StringTools::trim(overflow),
"scroll") ==
true) {
329 if (overflow.empty() ==
true || StringTools::trim(overflow).length() == 0) {
333 "Unknown overflow '" +
393 for (
auto i = 0; i <
subNodes.size(); i++) {
402 for (
auto i = 0; i <
subNodes.size(); i++) {
404 if (guiSubNode->conditionsMet ==
false)
continue;
409 for (
auto i = 0; i <
subNodes.size(); i++) {
411 if (guiSubNode->conditionsMet ==
false)
continue;
412 guiSubNode->computedConstraints.alignmentLeft = Math::max(0, (
computedConstraints.
width - guiSubNode->computedConstraints.width) / 2);
416 for (
auto i = 0; i <
subNodes.size(); i++) {
418 if (guiSubNode->conditionsMet ==
false)
continue;
429 for (
auto i = 0; i <
subNodes.size(); i++) {
431 if (guiSubNode->conditionsMet ==
false)
continue;
436 for (
auto i = 0; i <
subNodes.size(); i++) {
438 if (guiSubNode->conditionsMet ==
false)
continue;
439 guiSubNode->computedConstraints.alignmentTop = Math::max(0, (
computedConstraints.
height - guiSubNode->computedConstraints.height) / 2);
443 for (
auto i = 0; i <
subNodes.size(); i++) {
445 if (guiSubNode->conditionsMet ==
false)
continue;
454 if (requireConditionsMet ==
true &&
conditionsMet ==
false)
return;
455 for (
auto i = 0; i <
subNodes.size(); i++) {
457 if (node->controller !=
nullptr) {
458 childControllerNodes.push_back(node);
468 childControllerNodes.clear();
474 for (
auto i = 0; i <
subNodes.size(); i++) {
484 for (
auto i = 0; i <
subNodes.size(); i++) {
486 guiSubNode->setConditionsMet();
509 auto renderOffsetXPixel = 0.0f;
510 auto renderOffsetYPixel = 0.0f;
511 for (
auto *_parentNode =
this; _parentNode !=
nullptr; _parentNode = _parentNode->parentNode) {
512 renderOffsetXPixel += _parentNode->childrenRenderOffsetX;
513 renderOffsetYPixel += _parentNode->childrenRenderOffsetY;
515 auto renderOffsetX = renderOffsetXPixel / (screenWidth / 2.0f);
516 auto renderOffsetY = renderOffsetYPixel / (screenHeight / 2.0f);
517 auto renderAreaLeft = renderAreaLeftCurrent;
518 auto renderAreaTop = renderAreaTopCurrent;
519 auto renderAreaRight = renderAreaRightCurrent;
520 auto renderAreaBottom = renderAreaBottomCurrent;
523 renderAreaLeft = ((left) / (screenWidth / 2.0f)) - 1.0f;
524 renderAreaTop = ((screenHeight - top) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
525 renderAreaRight = ((left + width) / (screenWidth / 2.0f)) - 1.0f;
526 renderAreaBottom = ((screenHeight - top - height) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
540 for (
auto i = 0; i <
subNodes.size(); i++) {
545 if (guiSubNode->layouted ==
false) {
558 float left = guiSubNode->computedConstraints.left + guiSubNode->computedConstraints.alignmentLeft + guiSubNode->border.left;
559 float top = guiSubNode->computedConstraints.top + guiSubNode->computedConstraints.alignmentTop + guiSubNode->border.top;
560 float width = guiSubNode->computedConstraints.width - guiSubNode->border.left - guiSubNode->border.right;
561 float height = guiSubNode->computedConstraints.height - guiSubNode->border.top - guiSubNode->border.bottom;
563 ((left) / (screenWidth / 2.0f)) - 1.0f,
564 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
565 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
566 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
567 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
568 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
569 ((left) / (screenWidth / 2.0f)) - 1.0f,
570 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f) ==
true) {
573 if (guiSubNode->hasEffects() ==
true) guiSubNode->applyEffects(guiRenderer);
574 guiSubNode->render(guiRenderer);
575 if (guiSubNode->hasEffects() ==
true) guiSubNode->undoEffects(guiRenderer);
593 if (guiSubNode->hasEffects() ==
true) guiSubNode->applyEffects(guiRenderer);
594 guiSubNode->render(guiRenderer);
595 if (guiSubNode->hasEffects() ==
true) guiSubNode->undoEffects(guiRenderer);
614 if (event->
getType() == GUIMouseEvent::MOUSEEVENT_WHEEL_MOVED) {
619 auto scrollableWidth = contentWidth - nodeWidth;
620 if (
static_cast<int>(nodeWidth) >=
static_cast<int>(contentWidth)) {
625 event->setProcessed(
true);
634 auto scrollableHeight = contentHeight - nodeHeight;
635 if (
static_cast<int>(nodeHeight) >=
static_cast<int>(contentHeight)) {
640 event->setProcessed(
true);
648 subNode->determineMouseEventNodes(event, floatingNode ==
true || subNode->flow ==
GUINode_Flow::FLOATING, eventNodeIds, eventFloatingNodeIds);
658 for (
auto i = 0; i <
subNodes.size(); i++) {
670 for (
auto i = 0; i <
subNodes.size(); i++) {
682 while (parentControllerNode !=
nullptr) {
683 parentControllerNode->getController()->onSubTreeChange();
684 parentControllerNode = parentControllerNode->getParentControllerNode();
688 if (
layouted ==
false || resetScrollOffsets ==
true) {
695 auto scrollableWidth = contentWidth - elementWidth;
696 if (scrollableWidth < 0.0f) scrollableWidth = 0.0;
704 auto scrollableHeight = contentHeight - elementHeight;
705 if (scrollableHeight < 0.0f) scrollableHeight = 0.0f;
713 for (
auto i = 0; i <
subNodes.size(); i++) {
715 auto guiElementSubNode =
dynamic_cast<GUIElementNode*
>(guiSubNode);
716 if (guiElementSubNode !=
nullptr) {
718 guiElementSubNode->unsetMouseOver();
720 auto guiParentSubNode =
dynamic_cast<GUIParentNode*
>(guiSubNode);
721 if (guiParentSubNode !=
nullptr) guiParentSubNode->
unsetMouseOver();
static GUIScreenNode * parse(const string &pathName, const string &fileName, const unordered_map< string, string > ¶meters=unordered_map< string, string >())
Parses a GUI XML file.
GUIMouseEventType getType()
static STATIC_DLL_IMPEXT string CONDITION_ONMOUSEOVER
GUINodeConditions & getActiveConditions()
GUI element node conditions.
bool remove(const string &condition)
Remove a condition.
GUI node controller base class.
GUI node horizontal alignment enum.
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * RIGHT
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 STATIC_DLL_IMPEXT GUINode_AlignmentVertical * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * TOP
static STATIC_DLL_IMPEXT GUINode_Flow * FLOATING
static STATIC_DLL_IMPEXT GUINode_Flow * INTEGRATED
GUI node requested constraints requested constraints type enum.
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * NONE
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
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.
virtual int getContentWidth()=0
virtual void layoutOnDemand()
Layout on demand.
virtual void render(GUIRenderer *guiRenderer)
Render.
GUINode_ComputedConstraints computedConstraints
virtual void setConditionsMet()
Set conditions met for this node and its subnodes.
GUIScreenNode * screenNode
bool shouldRender()
Determine if to render.
GUIParentNode * getParentControllerNode()
virtual void dispose()
Dispose node.
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
GUINode_Alignments alignments
virtual void layout()
Layout.
static int getRequestedConstraintsValue(const string &constraint, int defaultConstraintsValue)
Get requested constraints value.
GUI parent node overflow enum.
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * DOWNSIZE_CHILDREN
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * HIDDEN
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * SCROLL
GUI parent node base class thats supporting child nodes.
GUIParentNode_Overflow * overflowX
void getChildControllerNodes(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes.
void dispose() override
Dispose node.
virtual void computeHorizontalChildrenAlignment()
Compute horizontal children alignment.
float childrenRenderOffsetY
void setConditionsMet() override
Set conditions met for this node and its subnodes.
void getChildControllerNodesInternal(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes internal.
static GUIParentNode_Overflow * createOverflow(const string &overflow)
Create over flow.
void setChildrenRenderOffsetX(float childrenRenderOffSetX)
Set children render offset x.
GUIParentNode_Overflow * getOverflowX()
bool computeViewportCache
void removeSubNode(GUINode *node, bool resetScrollOffsets)
Remove sub node.
vector< GUINode * > vieportSubNodesCache
void replaceSubNodes(const string &xml, bool resetScrollOffsets)
Replace sub nodes with given XML.
void layout() override
Layout.
void clearSubNodes()
Clear sub nodes.
float getChildrenRenderOffsetX()
void unsetMouseOver()
Unset mouse event condition on element nodes.
GUIParentNode_Overflow * getOverflowY()
vector< GUINode * > floatingNodesCache
void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds) override
Determine mouse event nodes.
void render(GUIRenderer *guiRenderer) override
Render.
float getChildrenRenderOffsetY()
GUIParentNode_Overflow * overflowY
virtual void layoutSubNodes()
Layout sub nodes.
vector< GUINode * > subNodes
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
vector< GUINode * > detachSubNodes()
Detach sub nodes.
void moveNodes(GUIParentNode *otherParentNode)
Move children nodes from other parent node into this parent node.
void setChildrenRenderOffsetY(float childrenRenderOffSetY)
Set children render offset y.
void addSubNode(GUINode *node)
Add sub node.
float childrenRenderOffsetX
virtual void computeVerticalChildrenAlignment()
Compute vertical children alignment.
void addSubNodes(const string &xml, bool resetScrollOffsets)
Add sub nodes with given XML.
void invalidateRenderCaches()
Invalidate render caches.
GUI screen node that represents a screen that can be rendered via GUI system.
void invalidateLayout(GUINode *node)
Mark a node to be invalidated regarding layout.
bool removeNode(GUINode *node)
Add node.
bool addNode(GUINode *node)
Add node.
void setSubRenderAreaBottom(float renderAreaBottom)
Set sub render area bottom.
void setRenderAreaLeft(float renderAreaLeft)
Set up render area left.
float getRenderAreaBottom()
float getRenderAreaLeft()
void setRenderAreaRight(float renderAreaRight)
Set up render area right.
void setRenderAreaTop(float renderAreaTop)
Set up render area top.
void setSubRenderAreaRight(float renderAreaRight)
Set sub render area right.
void setSubRenderAreaLeft(float renderAreaLeft)
Set sub render area left.
bool isQuadVisible(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)
void setSubRenderAreaTop(float renderAreaTop)
Set sub render area top.
void setRenderOffsetY(float renderOffsetY)
Set render offset y.
void setRenderAreaBottom(float renderAreaBottom)
Set up render area bottom.
float getRenderAreaRight()
void setRenderOffsetX(float renderOffsetX)
Set render offset x.
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.