46 :
GUINodeController(node), colorPickerScreenController(colorPickerScreenController)
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()) {
89 textureBytesPerPixel = 3;
92 textureBytesPerPixel = 4;
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,
106 event->setProcessed(
true);
Color 4 base definition class.
GUIMouseEventType getType()
GUI element node conditions.
GUI node controller base class.
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
GUI screen node that represents a screen that can be rendered via GUI system.