TDME2 1.9.121
ColorPickerImageController.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/math/Vector2.h>
21#include <tdme/utilities/Time.h>
22
23using std::string;
24using std::to_string;
25
27
38using tdme::gui::GUI;
44
45ColorPickerImageController::ColorPickerImageController(GUINode* node, ColorPickerScreenController* colorPickerScreenController)
46 : GUINodeController(node), colorPickerScreenController(colorPickerScreenController)
47{
48}
49
51{
52 return false;
53}
54
56{
57}
58
60{
61}
62
64{
65}
66
68{
69}
70
72{
73 Vector2 imageMousePosition;
74 if (node == this->node && this->node->isEventBelongingToNode(event, imageMousePosition) == true && event->getButton() == MOUSE_BUTTON_LEFT) {
75 if (event->getType() == GUIMouseEvent::MOUSEEVENT_PRESSED || event->getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
76 auto imageNode = required_dynamic_cast<GUIImageNode*>(this->node);
77 auto imageNodeWidth = imageNode->getComputedConstraints().width;
78 auto imageNodeHeight = imageNode->getComputedConstraints().height;
79 auto imageNodeTexture = imageNode->getTexture();
80 if (imageNodeTexture != nullptr) {
81 auto textureWidth = imageNodeTexture->getTextureWidth();
82 auto textureHeight = imageNodeTexture->getTextureHeight();
83 auto textureData = imageNodeTexture->getTextureData();
84 auto textureX = static_cast<int>(static_cast<float>(textureWidth) * (imageMousePosition[0] / imageNodeWidth));
85 auto textureY = static_cast<int>(static_cast<float>(textureHeight) * (imageMousePosition[1] / imageNodeHeight));
86 auto textureBytesPerPixel = -1;
87 switch (imageNodeTexture->getDepth()) {
88 case 24:
89 textureBytesPerPixel = 3;
90 break;
91 case 32:
92 textureBytesPerPixel = 4;
93 break;
94 }
95 auto texturePixelOffset = textureY * textureWidth * textureBytesPerPixel + textureX * textureBytesPerPixel;
98 static_cast<float>(textureData->get(texturePixelOffset + 0)) / 255.0f,
99 static_cast<float>(textureData->get(texturePixelOffset + 1)) / 255.0f,
100 static_cast<float>(textureData->get(texturePixelOffset + 2)) / 255.0f,
101 1.0f
102 )
103 );
104 }
105 }
106 event->setProcessed(true);
107 }
108}
109
111{
112}
113
115{
116}
117
119{
120}
121
123{
124}
125
127{
128 return false;
129}
130
132{
133 return value;
134}
135
137{
138}
139
141{
142}
#define MOUSE_BUTTON_LEFT
Color 4 base definition class.
Definition: Color4Base.h:19
GUI module class.
Definition: GUI.h:66
GUI element node conditions.
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
Definition: GUINode.cpp:973
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
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.
Byte buffer class.
Definition: ByteBuffer.h:24
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
Time utility class.
Definition: Time.h:21