TDME2 1.9.121
GUINode.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5#include <unordered_map>
6#include <unordered_set>
7#include <vector>
8
9#include <tdme/tdme.h>
13#include <tdme/gui/fwd-tdme.h>
25#include <tdme/math/Vector2.h>
27
28using std::array;
29using std::string;
30using std::unordered_map;
31using std::unordered_set;
32using std::vector;
33
56
57/**
58 * GUI node base class
59 * @author Andreas Drewke
60 * @version $Id$
61 */
63{
64 friend class tdme::gui::GUI;
65 friend class GUIElementNode;
66 friend class GUIImageNode;
67 friend class GUILayerNode;
68 friend class GUILayoutNode;
69 friend class GUIParentNode;
70 friend class GUIScreenNode;
71 friend class GUITableNode;
72 friend class GUITableCellNode;
73 friend class GUITableRowNode;
77 friend class GUINodeConditions;
78 friend class GUINode_Flow;
83
84private:
86
87 /**
88 * Determine element node dependencies
89 * @param elementNodeDependencies element node dependencies
90 */
91 void cfDetermineElementNodeDependencies(vector<string>& elementNodeDependencies);
92
93 /**
94 * Parse condition function term
95 * @param term term
96 * @param function function
97 * @param arguments function arguments
98 */
99 void cfParse(const string& term, string& function, vector<string>& arguments);
100
101 /**
102 * Call condition function with arguments
103 * @param elementNode element node to work with
104 * @param function function to be called
105 * @param arguments function arguments
106 * @return condition met
107 */
108 bool cfCall(GUIElementNode* elementNode, const string& function, const vector<string>& arguments);
109
110 /**
111 * Determine element node dependencies - Call condition function with arguments
112 * @param function function to be called
113 * @param arguments function arguments
114 * @param elementNodeDependencies element node dependencies
115 */
116 void cfCallDetermineElementNodeDependencies(const string& function, const vector<string>& arguments, vector<string>& elementNodeDependencies);
117
118 /**
119 * Condition function: empty
120 * @param arguments arguments
121 * Argument should look like 'test', "test", '', "", 123, 0, 123.4, 0.0 for now
122 * Arguments or OR connected
123 * @return if 1 argument has not been empty
124 */
125 bool cfEmpty(const vector<string>& arguments);
126
127 /**
128 * Condition function: has condition
129 * @param elementNode element node to work with
130 * @param arguments arguments
131 * Format of arguments: [elementid.]condition
132 * Arguments or OR connected
133 * @return if 1 condition has been met
134 */
135 bool cfHasCondition(GUIElementNode* elementNode, const vector<string>& arguments);
136
137 /**
138 * Determine element node dependencies - Condition function: has condition
139 * @param arguments arguments
140 * Format of arguments: [elementid.]condition
141 * Arguments or OR connected
142 */
143 void cfHasConditionDetermineElementNodeDependencies(const vector<string>& arguments, vector<string>& elementNodeDependencies);
144
145protected:
148 string id;
163 unordered_map<string, GUIEffect*> effects;
169 vector<string> lastConditions;
171
172 /**
173 * Public constructor
174 * @param screenNode screen node
175 * @param parentNode parent node
176 * @param id id
177 * @param flow flow
178 * @param alignments alignments
179 * @param requestedConstraints requested constraints
180 * @param backgroundColor background color
181 * @param backgroundImage background image
182 * @param backgroundImageScale9Grid background image scale 9 grid
183 * @param backgroundImageEffectColorMul background image effect color mul
184 * @param backgroundImageEffectColorAdd background image effect color add
185 * @param border border
186 * @param padding padding
187 * @param showOn show on
188 * @param hideOn hide on
189 */
190 GUINode(
193 const string& id,
198 const string& backgroundImage,
202 const GUINode_Border& border,
206 );
207
208 /**
209 * Destructor
210 */
211 virtual ~GUINode();
212
213 /**
214 * @return is content node
215 */
216 virtual bool isContentNode() = 0;
217
218 /**
219 * Set computed left
220 * @param left left
221 */
222 virtual void setLeft(int left);
223
224 /**
225 * Set computed top
226 * @param top top
227 */
228 virtual void setTop(int top);
229
230 /**
231 * Layout
232 */
233 virtual void layout();
234
235 /**
236 * Do content alignment
237 */
238 virtual void computeContentAlignment();
239
240 /**
241 * Layout constraint
242 * @param type type
243 * @param autoValue auto value
244 * @param parentValue parent value
245 * @param value value
246 * @return pixel
247 */
248 int layoutConstraintPixel(GUINode_RequestedConstraints_RequestedConstraintsType* type, int autoValue, int parentValue, int value);
249
250 /**
251 * Get requested constraints type
252 * @param constraint constraint
253 * @param defaultConstraintsType default constraints type
254 * @return requested constraints type
255 */
257
258 /**
259 * Get requested constraints value
260 * @param constraint constraint
261 * @param defaultConstraintsValue default constraints value
262 * @return requested constraints value
263 */
264 static int getRequestedConstraintsValue(const string& constraint, int defaultConstraintsValue);
265
266 /**
267 * Get requested pixel value
268 * @param value value
269 * @param defaultValue default value
270 * @return value
271 */
272 static int getRequestedPixelValue(const string& value, int defaultValue);
273
274 /**
275 * Check if conditions are met
276 * @return conditions met
277 */
278 bool checkConditions();
279
280 /**
281 * On set condition
282 * @param conditions conditions
283 */
284 void onSetConditions(const vector<string>& conditions);
285
286 /**
287 * Determine if we have a out effect active
288 */
289 bool haveActiveOutEffect();
290
291 /**
292 * Determine if to render
293 * @return if node will be rendered
294 */
295 inline bool shouldRender() {
296 return conditionsMet == true || haveActiveOutEffect() == true;
297 }
298
299 /**
300 * Scroll to node X
301 * @param toNode stop at node to node
302 */
303 void _scrollToNodeX(GUIParentNode* toNode = nullptr);
304
305 /**
306 * Scroll to node Y
307 * @param toNode stop at node to node
308 */
309 void _scrollToNodeY(GUIParentNode* toNode = nullptr);
310
311public:
312 /**
313 * @return scren node
314 */
316 return screenNode;
317 }
318
319 /**
320 * @return parent node
321 */
323 return parentNode;
324 }
325
326 /**
327 * @return id
328 */
329 inline const string& getId() {
330 return id;
331 }
332
333 /**
334 * @return hierarchical id
335 */
336 const string getHierarchicalId();
337
338 /**
339 * @return node type
340 */
341 virtual const string getNodeType() = 0;
342
343 /**
344 * @return content width including border, margin
345 */
346 virtual int getContentWidth() = 0;
347
348 /**
349 * @return content height including border, margin
350 */
351 virtual int getContentHeight() = 0;
352
353 /**
354 * @return auto width if auto width requested or content width
355 */
356 virtual int getAutoWidth();
357
358 /**
359 * @return auto height if auto height requested or content height
360 */
361 virtual int getAutoHeight();
362
363 /**
364 * @return border
365 */
367 return border;
368 }
369
370 /**
371 * @return padding
372 */
374 return padding;
375 }
376
377 /**
378 * @return requested constraints
379 */
382 }
383
384 /**
385 * @return computed constraints
386 */
388 return computedConstraints;
389 }
390
391 /**
392 * @return background color
393 */
395 return backgroundColor;
396 }
397
398 /**
399 * Create alignments
400 * @param horizontal horizontal
401 * @param vertical vertical
402 * @return alignments
403 */
404 static GUINode_Alignments createAlignments(const string& horizontal, const string& vertical);
405
406 /**
407 * Create requested constraints
408 * @param left left
409 * @param top top
410 * @param width width
411 * @param height height
412 * @param factor factor
413 * @return requested constraints
414 */
415 static GUINode_RequestedConstraints createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor);
416
417 /**
418 * Get color
419 * @param color color
420 * @param defaultColor default color
421 * @throws tdme::gui::GUIParserException
422 * @return value
423 */
424 static GUIColor getRequestedColor(const string& color, const GUIColor& defaultColor);
425
426 /**
427 * Create flow
428 * @param flow flow
429 * @return flow
430 */
431 static GUINode_Flow* createFlow(const string& flow);
432
433 /**
434 * Create border
435 * @param allBorder all border
436 * @param left left
437 * @param top top
438 * @param right right
439 * @param bottom bottom
440 * @param allBorderColor all border color
441 * @param leftColor left color
442 * @param topColor top color
443 * @param rightColor right color
444 * @param bottomColor bottom color
445 * @return border
446 */
447 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);
448
449 /**
450 * Create padding
451 * @param allPadding all padding
452 * @param left left
453 * @param top top
454 * @param right right
455 * @param bottom bottom
456 * @return padding
457 */
458 static GUINode_Padding createPadding(const string& allPadding, const string& left, const string& top, const string& right, const string& bottom);
459
460 /**
461 * Create scale 9 grid
462 * @param all all
463 * @param left left
464 * @param top top
465 * @param right right
466 * @param bottom bottom
467 * @return scale 9 grid
468 */
469 static GUINode_Scale9Grid createScale9Grid(const string& all, const string& left, const string& top, const string& right, const string& bottom);
470
471 /**
472 * Create conditions
473 * @param conditions conditions
474 */
475 static GUINodeConditions createConditions(const string& conditions);
476
477 /**
478 * Dispose node
479 */
480 virtual void dispose();
481
482 /**
483 * Determine if conditions are set
484 * @return if conditions are set
485 */
486 inline bool isConditionsMet() {
487 return conditionsMet;
488 }
489
490 /**
491 * Set conditions met for this node and its subnodes
492 */
493 virtual void setConditionsMet();
494
495 /**
496 * Layout on demand
497 */
498 virtual void layoutOnDemand();
499
500 /**
501 * @return if node has effects
502 */
503 inline bool hasEffects() {
504 return effects.empty() == false;
505 }
506
507 /**
508 * Apply effects
509 * @param guiRenderer gui renderer
510 */
511 virtual void applyEffects(GUIRenderer* guiRenderer);
512
513 /**
514 * Undo effects
515 * @param guiRenderer gui renderer
516 */
517 virtual void undoEffects(GUIRenderer* guiRenderer);
518
519 /**
520 * Render
521 * @param guiRenderer gui renderer
522 * @param floatingNodes floating nodes
523 */
524 virtual void render(GUIRenderer* guiRenderer);
525
526 /**
527 * @return compute parent children render offset X total
528 */
530
531 /**
532 * @return compute children render offset Y total
533 */
535
536 /**
537 * Is event belonging to node
538 * @param event event
539 * @param position
540 * @return boolean
541 */
542 bool isEventBelongingToNode(GUIMouseEvent* event, Vector2& position);
543
544 /**
545 * Is event belonging to node
546 * @param event event
547 * @return boolean
548 */
550
551 /**
552 * Get event off node relative position
553 * TODO: use Vector2 instead of array<float, 2>
554 * @param event event
555 * @param position (will return x = 0 if in node on x axis, will return x < 0 (-pixel) if on the left of element, x > 0 (+pixel) if on the right of element, y behaves analogous to x)
556 * @return void
557 */
559
560 /**
561 * Get event position clamped to node constraints
562 * TODO: use Vector2 instead of array<float, 2>
563 * @param event event
564 * @param position position clamped to node constraints
565 * @return void
566 */
567 void getEventNodePosition(GUIMouseEvent* event, Vector2& position);
568
569 /**
570 * @return first parent node in tree with controller node attached
571 */
573
574 /**
575 * Determine mouse event nodes
576 * @param event event
577 * @param floatingNode if node is floating node
578 * @param eventNodeIds event node ids
579 * @param eventFloatingNodeIds event floating node ids
580 */
581 virtual void determineMouseEventNodes(GUIMouseEvent* event, bool floatingNode, unordered_set<string>& eventNodeIds, unordered_set<string>& eventFloatingNodeIds);
582
583 /**
584 * @return controller
585 */
587 return controller;
588 }
589
590 /**
591 * Set up node controller
592 * @param controller controller
593 */
595
596 /**
597 * Scroll to node Y
598 * @param toNode stop at node to node
599 */
600 void scrollToNodeY(GUIParentNode* toNode = nullptr);
601
602 /**
603 * Scroll to node X
604 * @param toNode stop at node to node
605 */
606 void scrollToNodeX(GUIParentNode* toNode = nullptr);
607
608 /**
609 * Set background image
610 * @param backgroundImage background image
611 */
612 void setBackgroundImage(const string& backgroundImage);
613
614 /**
615 * @return GUI effect offset X
616 */
617 inline int getGUIEffectOffsetX() {
618 return guiEffectOffsetX;
619 }
620
621 /**
622 * Set GUI effect offset X
623 * @param guiEffectOffsetX gui effect offset X
624 */
626 this->guiEffectOffsetX = guiEffectOffsetX;
627 }
628
629 /**
630 * @return GUI effect offset Y
631 */
632 inline int getGUIEffectOffsetY() {
633 return guiEffectOffsetY;
634 }
635
636 /**
637 * Set GUI effect offset Y
638 * @param guiEffectOffsetY gui effect offset Y
639 */
641 this->guiEffectOffsetY = guiEffectOffsetY;
642 }
643
644 /**
645 * @return effect state
646 */
648 return effectState;
649 }
650
651 /**
652 * Get effect
653 * @param id id
654 * @return effect or null
655 */
656 GUIEffect* getEffect(const string& id);
657
658 /**
659 * Add effect, effect already registered with the is will be removed
660 * @param id id
661 * @param effect effect
662 */
663 void addEffect(const string& id, GUIEffect* effect);
664
665 /**
666 * Remove effect
667 * @param id id
668 */
669 void removeEffect(const string& id);
670
671 /**
672 * Dump node
673 * @param node node to dump
674 * @param depth depth
675 * @param indent indention
676 * @param depthIdx depth index
677 */
678 static void dumpNode(GUINode* node, int depth = 0, int indent = 0, int depthIdx = 0);
679
680 /**
681 * Dump parent nodes
682 * @param node node to dump from
683 * @param indent indention
684 */
685 static void dumpParentNodes(GUINode* node, int indent = 0);
686
687};
GUI module class.
Definition: GUI.h:66
GUI effect base class.
Definition: GUIEffect.h:23
GUI element node conditions.
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
GUINodeConditions hideOn
Definition: GUINode.h:161
void setGUIEffectOffsetY(int guiEffectOffsetY)
Set GUI effect offset Y.
Definition: GUINode.h:640
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(GUIScreenNode *screenNode, GUIParentNode *parentNode, const string &id, GUINode_Flow *flow, const GUINode_Alignments &alignments, const GUINode_RequestedConstraints &requestedConstraints, const GUIColor &backgroundColor, const string &backgroundImage, const GUINode_Scale9Grid &backgroundImageScale9Grid, const GUIColor &backgroundImageEffectColorMul, const GUIColor &backgroundImageEffectColorAdd, const GUINode_Border &border, const GUINode_Padding &padding, const GUINodeConditions &showOn, const GUINodeConditions &hideOn)
Public constructor.
Definition: GUINode.cpp:85
GUINode_Border border
Definition: GUINode.h:159
GUINode_Padding & getPadding()
Definition: GUINode.h:373
GUINode_RequestedConstraints & getRequestsConstraints()
Definition: GUINode.h:380
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
GUIColor & getBackgroundColor()
Definition: GUINode.h:394
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
bool isConditionsMet()
Determine if conditions are set.
Definition: GUINode.h:486
void setGUIEffectOffsetX(int guiEffectOffsetX)
Set GUI effect offset X.
Definition: GUINode.h:625
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
GUINode_ComputedConstraints & getComputedConstraints()
Definition: GUINode.h:387
virtual void applyEffects(GUIRenderer *guiRenderer)
Apply effects.
Definition: GUINode.cpp:478
GUINode_Border & getBorder()
Definition: GUINode.h:366
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
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
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
GUIParentNode * getParentNode()
Definition: GUINode.h:322
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
GUIEffectState * getEffectState()
Definition: GUINode.h:647
GUINodeController * getController()
Definition: GUINode.h:586
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
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
2D vector 2 class
Definition: Vector2.h:19
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.