TDME2 1.9.121
GUITextureNode.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
17#include <tdme/gui/GUI.h>
18
20
34using tdme::gui::GUI;
35
36GUITextureNode::GUITextureNode(
37 GUIScreenNode* screenNode,
38 GUIParentNode* parentNode,
39 const string& id,
40 GUINode_Flow* flow,
41 const GUINode_Alignments& alignments,
42 const GUINode_RequestedConstraints& requestedConstraints,
43 const GUIColor& backgroundColor,
44 const string& backgroundImage,
45 const GUINode_Scale9Grid& backgroundImageScale9Grid,
46 const GUIColor& backgroundImageEffectColorMul,
47 const GUIColor& backgroundImageEffectColorAdd,
48 const GUINode_Border& border,
49 const GUINode_Padding& padding,
50 const GUINodeConditions& showOn,
51 const GUINodeConditions& hideOn,
52 Texture* texture,
53 const RequestedDimensionConstraints& requestedDimensionConstraints,
54 bool mirrorX,
55 bool mirrorY,
56 const GUIColor& effectColorMul,
57 const GUIColor& effectColorAdd,
58 const GUINode_Scale9Grid& scale9Grid,
59 const GUINode_Clipping& clipping,
60 const string& mask,
61 float maskMaxValue):
63 screenNode,
64 parentNode,
65 id,
66 flow,
67 alignments,
68 requestedConstraints,
69 backgroundColor,
70 backgroundImage,
71 backgroundImageScale9Grid,
72 backgroundImageEffectColorMul,
73 backgroundImageEffectColorAdd,
74 border,
75 padding,
76 showOn,
77 hideOn,
78 requestedDimensionConstraints,
79 mirrorX,
80 mirrorY,
81 effectColorMul,
82 effectColorAdd,
83 scale9Grid,
84 clipping,
85 mask,
86 maskMaxValue
87 )
88{
89 this->setTexture(texture);
90}
91
93{
94 return "texture";
95}
96
98{
99 if (texture != nullptr) {
100 Engine::getInstance()->getTextureManager()->removeTexture(texture->getId());
102 texture = nullptr;
103 }
105}
106
108 return texture;
109}
110
112 if (this->texture == texture) return;
113 if (this->texture != nullptr) {
114 Engine::getInstance()->getTextureManager()->removeTexture(this->texture->getId());
115 this->texture->releaseReference();
116 }
117 this->texture = texture;
118 if (texture == nullptr) {
119 textureId = 0;
120 textureWidth = 0;
121 textureHeight = 0;
122 return;
123 }
125 textureId = Engine::getInstance()->getTextureManager()->addTexture(texture, 0);
128}
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
const string & getId() const
Definition: Texture.h:60
GUI module class.
Definition: GUI.h:66
GUI element node conditions.
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
void dispose() override
Dispose node.
const string getNodeType() override
void dispose() override
Dispose node.
void setTexture(Texture *texture)
Set texture.
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
Definition: Reference.cpp:20
void acquireReference()
acquires a reference, incrementing the counter
Definition: Reference.cpp:16
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.