TDME2 1.9.121
ColorPickerScreenController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
16#include <tdme/gui/GUI.h>
17#include <tdme/gui/GUIParser.h>
23#include <tdme/utilities/Hex.h>
27
28using std::string;
29
31
53
54ColorPickerScreenController::ColorPickerScreenController()
55{
56}
57
59{
60 if (onColorChangeAction != nullptr) delete onColorChangeAction;
61}
62
64{
65 return screenNode;
66}
67
69{
70 try {
71 screenNode = GUIParser::parse("resources/engine/gui", "popup_colorpicker.xml");
72 screenNode->setVisible(false);
76 redInput = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("colorpicker_red"));
77 greenInput = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("colorpicker_green"));
78 blueInput = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("colorpicker_blue"));
79 alphaInput = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("colorpicker_alpha"));
80 hexInput = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("colorpicker_hex"));
81 brightnessSlider = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("slider_colorpicker_brightness"));
82 auto colorPickerImage = dynamic_cast<GUIImageNode*>(screenNode->getNodeById("colorpicker_image"));
83 colorPickerImage->setController(new ColorPickerImageController(colorPickerImage, this));
84 } catch (Exception& exception) {
85 Console::print(string("ColorPickerScreenController::initialize(): An error occurred: "));
86 Console::println(string(exception.what()));
87 }
88}
89
91{
92 screenNode = nullptr;
93}
94
95void ColorPickerScreenController::show(const Color4Base& color, Action* onColorChangeAction)
96{
97 this->color = color;
98 this->onColorChangeAction = onColorChangeAction;
101 screenNode->setVisible(true);
102}
103
105{
106 if (onColorChangeAction != nullptr) {
107 delete onColorChangeAction;
108 onColorChangeAction = nullptr;
109 }
110 screenNode->setVisible(false);
111}
112
114 if (node->getId() == "colorpicker_red") {
115 color.setRed(Float::parse(node->getController()->getValue().getString()) / 255.0f);
116 updateColor();
118 } else
119 if (node->getId() == "colorpicker_green") {
120 color.setGreen(Float::parse(node->getController()->getValue().getString()) / 255.0f);
121 updateColor();
123 } else
124 if (node->getId() == "colorpicker_blue") {
125 color.setBlue(Float::parse(node->getController()->getValue().getString()) / 255.0f);
126 updateColor();
128 } else
129 if (node->getId() == "colorpicker_alpha") {
130 color.setAlpha(Float::parse(node->getController()->getValue().getString()) / 255.0f);
131 updateColor();
133 } else
134 if (node->getId() == "colorpicker_hex") {
135 auto hexString = StringTools::trim(node->getController()->getValue().getString());
136 if (StringTools::startsWith(hexString, "#") == true) hexString = StringTools::substring(hexString, 1);
137 if (hexString.size() >= 2) {
138 color.setRed(static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 0, 2)) / 255.0f));
139 }
140 if (hexString.size() >= 4) {
141 color.setGreen(static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 2, 4)) / 255.0f));
142 }
143 if (hexString.size() >= 6) {
144 color.setBlue(static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 4, 6)) / 255.0f));
145 }
146 if (hexString.size() >= 8) {
147 color.setAlpha(static_cast<float>(Hex::decodeInt(StringTools::substring(hexString, 6, 8)) / 255.0f));
148 }
149 updateColor();
150 } else
151 if (node->getId() == "slider_colorpicker_brightness") {
152 auto currentBrightness = (color.getRed() + color.getGreen() + color.getBlue()) / 3.0f;
153 auto newBrightness = Float::parse(node->getController()->getValue().getString());
154 auto brightnessAdjustment = 1.0f + (newBrightness - currentBrightness);
155 color.setRed(color.getRed() * brightnessAdjustment);
156 color.setGreen(color.getGreen() * brightnessAdjustment);
157 color.setBlue(color.getBlue() * brightnessAdjustment);
158 updateColor();
160 }
162}
163
165{
167 if (StringTools::startsWith(node->getId(), "colorpicker_caption_close_") == true) { // TODO: a.drewke, check with DH) {
168 close();
169 }
170 }
171}
172
174}
175
177 if (node->getId() == "colorpicker_hex") {
179 }
180}
181
182
189}
190
192 string hexRed = Hex::encodeInt(Integer::parse(redInput->getController()->getValue().getString()));
193 string hexGreen = Hex::encodeInt(Integer::parse(greenInput->getController()->getValue().getString()));
194 string hexBlue = Hex::encodeInt(Integer::parse(blueInput->getController()->getValue().getString()));
195 string hexAlpha = Hex::encodeInt(Integer::parse(alphaInput->getController()->getValue().getString()));
196 while (hexRed.size() < 2) hexRed = "0" + hexRed;
197 while (hexGreen.size() < 2) hexGreen = "0" + hexGreen;
198 while (hexBlue.size() < 2) hexBlue = "0" + hexBlue;
199 while (hexAlpha.size() < 2) hexAlpha = "0" + hexAlpha;
200 hexInput->getController()->setValue(MutableString("#" + hexRed + hexGreen + hexBlue + (hexAlpha == "ff"?"":hexAlpha)));
201}
202
204 this->color = color;
205 updateColor();
208}
Color 4 base definition class.
Definition: Color4Base.h:19
void setGreen(float green)
Definition: Color4Base.h:132
void setAlpha(float alpha)
Definition: Color4Base.h:160
GUI parser.
Definition: GUIParser.h:39
GUI node controller base class.
virtual void setValue(const MutableString &value)=0
Set value.
virtual const MutableString & getValue()=0
GUI node base class.
Definition: GUINode.h:63
const string & getId()
Definition: GUINode.h:329
void setController(GUINodeController *controller)
Set up node controller.
Definition: GUINode.cpp:1074
GUINodeController * getController()
Definition: GUINode.h:586
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void setVisible(bool visible)
Set visible.
void addChangeListener(GUIChangeListener *listener)
Add change listener.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void addActionListener(GUIActionListener *listener)
Add action listener.
void addFocusListener(GUIFocusListener *listener)
Add focus listener.
void onValueChanged(GUIElementNode *node) override
On value changed.
void show(const Color4Base &color, Action *onColorChangeAction)
Shows the pop up.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23
Integer to hex string conversion utility class.
Definition: Hex.h:16
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
const string & getString() const
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
GUI action listener interface.
GUI change listener interface.
GUI focus listener interface.
Action Interface.
Definition: Action.h:12
virtual void performAction()=0
Perform action.