TDME2 1.9.121
GUIInputInternalNode.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
17#include <tdme/gui/GUI.h>
18#include <tdme/math/Math.h>
23
38using tdme::gui::GUI;
44
45GUIInputInternalNode::GUIInputInternalNode(
46 GUIScreenNode* screenNode,
47 GUIParentNode* parentNode,
48 const string& id,
49 GUINode_Flow* flow,
50 const GUINode_Alignments& alignments,
51 const GUINode_RequestedConstraints& requestedConstraints,
52 const GUIColor& backgroundColor,
53 const string& backgroundImage,
54 const GUINode_Scale9Grid& backgroundImageScale9Grid,
55 const GUIColor& backgroundImageEffectColorMul,
56 const GUIColor& backgroundImageEffectColorAdd,
57 const GUINode_Border& border,
58 const GUINode_Padding& padding,
59 const GUINodeConditions& showOn,
60 const GUINodeConditions& hideOn,
61 const string& font,
62 const string& color,
63 const string& colorDisabled,
64 const MutableString& text,
65 int maxLength
66 ):
67 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
68{
69 this->font = font.empty() == true?nullptr:GUI::getFont(screenNode->getApplicationRootPathName(), font);
70 this->color = color.empty() == true || color.length() == 0 ? GUIColor() : GUIColor(color);
71 this->colorDisabled = colorDisabled.empty() == true || colorDisabled.length() == 0 ? GUIColor() : GUIColor(colorDisabled);
72 this->text = text;
73 this->maxLength = maxLength;
74 if (this->font != nullptr) this->font->initialize();
75 this->controller = new GUIInputInternalController(this);
76 this->controller->initialize();
77}
78
80{
81 try {
82 auto maxLength = Integer::parse(s);
83 return maxLength;
84 } catch (Exception& exception) {
85 Console::print(string("GUIInputInternalNode::createMaxLength(): An error occurred: "));
86 Console::println(string(exception.what()));
87 return 0;
88 }
89}
90
92{
93 return "text";
94}
95
97{
98 return true;
99}
100
102{
103 return font == nullptr?0:font->getTextWidth(text) + border.left + border.right + padding.left + padding.right;
104}
105
107{
108 return font == nullptr?0:font->getLineHeight() + border.top + border.bottom + padding.top + padding.bottom;
109}
110
112{
113 if (font != nullptr) font->dispose();
115 this->controller->dispose();
116}
117
119{
120 if (shouldRender() == false) return;
121
122 GUINode::render(guiRenderer);
123 auto inputInternalController = required_dynamic_cast<GUIInputInternalController*>(this->controller);
124 auto inputNode = this->getParentControllerNode();
125 auto inputNodeController = required_dynamic_cast<GUIInputController*>(inputNode->getController());
126 auto disable = inputNodeController->isDisabled();
127 auto index = inputInternalController->getIndex();
128 auto selectionIndex = inputInternalController->getSelectionIndex();
129 if (font != nullptr) {
131 guiRenderer,
134 text,
135 inputInternalController->getOffset(),
136 0,
137 disable == false?color:colorDisabled,
138 selectionIndex == -1 || selectionIndex == index?-1:Math::min(selectionIndex, index),
139 selectionIndex == -1 || selectionIndex == index?-1:Math::max(selectionIndex, index),
140 inputNode->getBackgroundColor()
141 );
142 }
143 if (screenNode->getGUI() != nullptr &&
144 static_cast<GUIParentNode*>(screenNode->getGUI()->getFocussedNode()) == inputNode &&
145 inputInternalController->isShowCursor() == true &&
146 inputInternalController->getCursorMode() == GUIInputInternalController::CURSORMODE_SHOW &&
147 (selectionIndex == -1 || selectionIndex == index)) {
148 auto screenWidth = screenNode->getScreenWidth();
149 auto screenHeight = screenNode->getScreenHeight();
150 float left = computedConstraints.left + computedConstraints.alignmentLeft + border.left + padding.left + (font != nullptr?font->getTextIndexX(text, inputInternalController->getOffset(), 0, inputInternalController->getIndex()):0);
152 float width = 2;
154 auto& colorData = (disable == false?color:colorDisabled).getArray();
155 guiRenderer->bindTexture(0);
156 guiRenderer->addQuad(((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 0.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 1.0f, 1.0f, ((left + width) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 1.0f, 0.0f, ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f, colorData[0], colorData[1], colorData[2], colorData[3], 0.0f, 0.0f);
157 guiRenderer->render();
158 }
159}
160
GUI module class.
Definition: GUI.h:66
GUIElementNode * getFocussedNode()
Definition: GUI.cpp:316
static GUIFont * getFont(const string &applicationRootPath, const string &fileName)
Get font.
Definition: GUI.cpp:108
static int createMaxLength(const string &s)
Create max length.
void render(GUIRenderer *guiRenderer) override
Render.
GUI element node conditions.
GUI node controller base class.
virtual void initialize()=0
Initialize controller after element has been created.
virtual void dispose()=0
Dispose controller.
GUI node base class.
Definition: GUINode.h:63
GUINodeController * controller
Definition: GUINode.h:162
GUINode_Border border
Definition: GUINode.h:159
friend class GUIInputInternalController
Definition: GUINode.h:76
virtual void render(GUIRenderer *guiRenderer)
Render.
Definition: GUINode.cpp:508
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
GUINode_Padding padding
Definition: GUINode.h:158
GUIScreenNode * screenNode
Definition: GUINode.h:146
bool shouldRender()
Determine if to render.
Definition: GUINode.h:295
GUIParentNode * getParentControllerNode()
Definition: GUINode.cpp:1053
virtual void dispose()
Dispose node.
Definition: GUINode.cpp:460
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
const string & getApplicationRootPathName()
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
Definition: GUIFont.h:48
void drawString(GUIRenderer *guiRenderer, int x, int y, const MutableString &text, int offset, int length, const GUIColor &color, int selectionStartIndex=-1, int selectionEndIndex=-1, const GUIColor &backgroundColor=GUIColor::GUICOLOR_TRANSPARENT)
Draw string.
Definition: GUIFont.cpp:294
int getTextIndexX(const MutableString &text, int offset, int length, int index)
Get text index X of given text and index.
Definition: GUIFont.cpp:173
int getTextWidth(const MutableString &text)
Text width.
Definition: GUIFont.cpp:204
void bindTexture(int32_t textureId)
Bind texture.
void addQuad(float x1, float y1, float colorR1, float colorG1, float colorB1, float colorA1, float tu1, float tv1, float x2, float y2, float colorR2, float colorG2, float colorB2, float colorA2, float tu2, float tv2, float x3, float y3, float colorR3, float colorG3, float colorB3, float colorA3, float tu3, float tv3, float x4, float y4, float colorR4, float colorG4, float colorB4, float colorA4, float tu4, float tv4)
Add quad Note: quad vertices order 1 2 +-—+ | | | | +-—+ 4 3.
Standard math functions.
Definition: Math.h:21
Console class.
Definition: Console.h:26
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
std::exception Exception
Exception base class.
Definition: Exception.h:19
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.