TDME2 1.9.121
GUITextureBaseNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7#include <tdme/gui/fwd-tdme.h>
16
17using std::string;
18
35
36/**
37 * GUI texture base node
38 * @author Andreas Drewke
39 * @version $Id$
40 */
42 : public GUINode
43{
45public:
47 float horizontalScale { 1.0f };
48 float verticalScale { 1.0f };
49 };
50
51private:
53 bool mirrorX { false };
54 bool mirrorY { false };
58 Texture* maskTexture { nullptr };
60 int32_t maskTextureId { 0 };
61
65 string mask;
66
67protected:
68 int32_t textureId { 0 };
69 int textureWidth { 0 };
70 int textureHeight { 0 };
71
72 /**
73 * Constructor
74 * @param screenNode screen node
75 * @param parentNode parent node
76 * @param id id
77 * @param flow flow
78 * @param alignments alignments
79 * @param requestedConstraints requested constraints
80 * @param backgroundColor background color
81 * @param backgroundImage background image
82 * @param backgroundImageScale9Grid background image scale 9 grid
83 * @param backgroundImageEffectColorMul background image effect color mul
84 * @param backgroundImageEffectColorAdd background image effect color add
85 * @param border border
86 * @param padding padding
87 * @param showOn show on
88 * @param hideOn hide on
89 * @param requestedDimensionConstraints requested dimension constraints
90 * @param mirrorX mirror X
91 * @param mirrorY mirror Y
92 * @param effectColorMul effect color mul
93 * @param effectColorAdd effect color add
94 * @param scale9Grid scale 9 grid
95 * @param clipping clipping
96 * @param mask mask image
97 * @param maskMaxValue maximum value of mask to display image
98 * @throws tdme::gui::GUIParserException
99 */
103 const string& id,
108 const string& backgroundImage,
112 const GUINode_Border& border,
116 const RequestedDimensionConstraints& requestedDimensionConstraints,
117 bool mirrorX,
118 bool mirrorY,
123 const string& mask,
124 float maskMaxValue
125 );
126
127 /**
128 * @return node type
129 */
130 const string getNodeType() override = 0;
131 bool isContentNode() override;
132
133public:
134 // overridden methods
135 int getContentWidth() override;
136 int getContentHeight() override;
137 void dispose() override;
138 void render(GUIRenderer* guiRenderer) override;
139
140 /**
141 * Set texture matrix
142 * @param textureMatrix texture matrix
143 */
145
146 /**
147 * @return effect color mul
148 */
150
151 /**
152 * Set effect color mul
153 * @param effectColorMul effect color mul
154 */
156
157 /**
158 * @return effect color add
159 */
161
162 /**
163 * Set effect color add
164 * @param effectColorAdd effect color add
165 */
167
168 /**
169 * @return clipping
170 */
172
173 /**
174 * Create clipping
175 * @param allClipping all sides
176 * @param left left
177 * @param top top
178 * @param right right
179 * @param bottom bottom
180 */
181 static GUINode_Clipping createClipping(const string& allClipping, const string& left, const string& top, const string& right, const string& bottom);
182
183 /**
184 * @return mask source
185 */
186 const string& getMask();
187
188 /**
189 * Set mask source
190 * @param mask mask source
191 */
192 void setMask(const string& mask);
193
194 /**
195 * @return maximum value of mask to display image
196 */
198 return maskMaxValue;
199 }
200
201 /**
202 * Set maximum value of mask to display image
203 * @param maskMinValue value of mask to display image
204 */
206 this->maskMaxValue = maskMaxValue;
207 }
208
209 /**
210 * Create requested dimension constraints
211 * @param width width
212 * @param height height
213 * @return requested constraints
214 */
215 static RequestedDimensionConstraints createRequestedDimensionConstraints(const string& width, const string& height);
216
217};
GUI parser.
Definition: GUIParser.h:39
GUI element node conditions.
GUI node base class.
Definition: GUINode.h:63
GUINodeConditions hideOn
Definition: GUINode.h:161
GUIColor backgroundImageEffectColorMul
Definition: GUINode.h:156
GUINode_Border border
Definition: GUINode.h:159
GUINode_Scale9Grid backgroundImageScale9Grid
Definition: GUINode.h:155
GUIColor backgroundImageEffectColorAdd
Definition: GUINode.h:157
GUIParentNode * parentNode
Definition: GUINode.h:147
GUINode_Padding padding
Definition: GUINode.h:158
GUIScreenNode * screenNode
Definition: GUINode.h:146
GUINode_RequestedConstraints requestedConstraints
Definition: GUINode.h:150
GUINode_Alignments alignments
Definition: GUINode.h:149
GUINodeConditions showOn
Definition: GUINode.h:160
GUINode_Flow * flow
Definition: GUINode.h:85
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
static GUINode_Clipping createClipping(const string &allClipping, const string &left, const string &top, const string &right, const string &bottom)
Create clipping.
void setEffectColorMul(const GUIColor &effectColorMul)
Set effect color mul.
void dispose() override
Dispose node.
void setMaskMaxValue(float maskMaxValue)
Set maximum value of mask to display image.
static RequestedDimensionConstraints createRequestedDimensionConstraints(const string &width, const string &height)
Create requested dimension constraints.
const string getNodeType() override=0
void setTextureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
void setMask(const string &mask)
Set mask source.
GUITextureBaseNode(GUIScreenNode *screenNode, GUIParentNode *parentNode, const string &id, GUINode_Flow *flow, const GUINode_Alignments &alignments, const GUINode_RequestedConstraints &requestedConstraints, const GUIColor &backgroundColor, const string &backgroundImage, const GUINode_Scale9Grid &backgroundImageScale9Grid, const GUIColor &backgroundImageEffectColorMul, const GUIColor &backgroundImageEffectColorAdd, const GUINode_Border &border, const GUINode_Padding &padding, const GUINodeConditions &showOn, const GUINodeConditions &hideOn, const RequestedDimensionConstraints &requestedDimensionConstraints, bool mirrorX, bool mirrorY, const GUIColor &effectColorMul, const GUIColor &effectColorAdd, const GUINode_Scale9Grid &scale9Grid, const GUINode_Clipping &clipping, const string &mask, float maskMaxValue)
Constructor.
RequestedDimensionConstraints requestedDimensionConstraints
void render(GUIRenderer *guiRenderer) override
Render.
void setEffectColorAdd(const GUIColor &effectColorAdd)
Set effect color add.
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.