TDME2 1.9.121
GUIProgressBarController.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <string>
5
6#include <tdme/tdme.h>
15#include <tdme/gui/GUI.h>
16#include <tdme/math/Math.h>
20#include <tdme/utilities/Time.h>
21
22using std::array;
23using std::to_string;
24
32using tdme::gui::GUI;
38
40
41GUIProgressBarController::GUIProgressBarController(GUINode* node): GUIElementController(node)
42{
43}
44
46 return false;
47}
48
50
51}
52
54 barNode = required_dynamic_cast<GUIImageNode*>(this->node->getScreenNode()->getNodeById(this->node->getId() + "_bar"));
55 textNode = required_dynamic_cast<GUITextNode*>(this->node->getScreenNode()->getNodeById(this->node->getId() + "_text"));
56 setValue(MutableString(required_dynamic_cast<GUIElementNode*>(node)->getValue()));
57 GUIElementController::initialize();
58}
59
61 GUIElementController::dispose();
62}
63
65 updateBar();
66}
67
69 GUIElementController::handleMouseEvent(node, event);
70}
71
73 GUIElementController::handleKeyboardEvent(event);
74}
75
77 GUIElementController::tick();
78}
79
81}
82
84}
85
87 return true;
88}
89
91 return value.set(valueFloat, 4);
92}
93
95 this->value.set(value);
96 valueFloat = Math::clamp(Float::parse(this->value.getString()), 0.0f, 1.0f);
97 textNode->setText((MutableString((int)(valueFloat * 100.0f))).append(" %"));
98 updateBar();
99}
100
102 auto barParentNode = barNode->getParentNode();
103 auto barWidth = barParentNode->getComputedConstraints().width - barParentNode->getPadding().left - barParentNode->getPadding().right;
104 barNode->getClipping().right = barWidth - (int)((float)barWidth * valueFloat);
105}
GUI module class.
Definition: GUI.h:66
void initialize() override
Initialize controller after element has been created.
void handleKeyboardEvent(GUIKeyboardEvent *event) override
Handle keyboard event.
void setValue(const MutableString &value) override
Set value.
void handleMouseEvent(GUINode *node, GUIMouseEvent *event) override
Handle mouse event.
void tick() override
Tick method will be executed once per frame.
void setDisabled(bool disabled) override
Set disabled.
GUI node base class.
Definition: GUINode.h:63
GUINode_ComputedConstraints & getComputedConstraints()
Definition: GUINode.h:387
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
GUIParentNode * getParentNode()
Definition: GUINode.h:322
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void setText(const MutableString &text)
Set text.
Definition: GUITextNode.cpp:81
Standard math functions.
Definition: Math.h:21
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23
Mutable string class.
Definition: MutableString.h:16
MutableString & set(char c)
Set character.
const string & getString() const
Time utility class.
Definition: Time.h:21