TDME2 1.9.121
GUIImageNode.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10#include <tdme/engine/Engine.h>
20#include <tdme/gui/GUI.h>
21#include <tdme/math/Math.h>
26
28
29using std::string;
30using std::to_string;
31
46using tdme::gui::GUI;
51
52int GUIImageNode::thumbnailTextureIdx = 0;
53
54GUIImageNode::GUIImageNode(
55 GUIScreenNode* screenNode,
56 GUIParentNode* parentNode,
57 const string& id,
58 GUINode_Flow* flow,
59 const GUINode_Alignments& alignments,
60 const GUINode_RequestedConstraints& requestedConstraints,
61 const GUIColor& backgroundColor,
62 const string& backgroundImage,
63 const GUINode_Scale9Grid& backgroundImageScale9Grid,
64 const GUIColor& backgroundImageEffectColorMul,
65 const GUIColor& backgroundImageEffectColorAdd,
66 const GUINode_Border& border,
67 const GUINode_Padding& padding,
68 const GUINodeConditions& showOn,
69 const GUINodeConditions& hideOn,
70 const string& source,
71 const RequestedDimensionConstraints& requestedDimensionConstraints,
72 bool mirrorX,
73 bool mirrorY,
74 const GUIColor& effectColorMul,
75 const GUIColor& effectColorAdd,
76 const GUINode_Scale9Grid& scale9Grid,
77 const GUINode_Clipping& clipping,
78 const string& mask,
79 float maskMaxValue,
80 float rotation):
82 screenNode,
83 parentNode,
84 id,
85 flow,
86 alignments,
87 requestedConstraints,
88 backgroundColor,
89 backgroundImage,
90 backgroundImageScale9Grid,
91 backgroundImageEffectColorMul,
92 backgroundImageEffectColorAdd,
93 border,
94 padding,
95 showOn,
96 hideOn,
97 requestedDimensionConstraints,
98 mirrorX,
99 mirrorY,
100 effectColorMul,
101 effectColorAdd,
102 scale9Grid,
103 clipping,
104 mask,
105 maskMaxValue
106 )
107{
108 this->setSource(source);
109 if (Math::abs(rotation) > Math::EPSILON) rotate(rotation);
110}
111
113{
114 return "image";
115}
116
118{
119 if (texture != nullptr) Engine::getInstance()->getTextureManager()->removeTexture(texture->getId());
121}
122
123const string& GUIImageNode::getSource() {
124 return source;
125}
126
127void GUIImageNode::setSource(const string& source) {
128 if (texture != nullptr) {
129 Engine::getInstance()->getTextureManager()->removeTexture(texture->getId());
130 texture = nullptr;
131 }
132 this->source = source;
133 if (source.empty() == false) {
134 if (StringTools::endsWith(StringTools::toLowerCase(source), ".tm") == true) {
135 try {
136 vector<uint8_t> thumbnailPNGData;
137 if (FileSystem::getInstance()->getThumbnailAttachment(
138 FileSystem::getInstance()->getPathName(source),
139 FileSystem::getInstance()->getFileName(source),
140 thumbnailPNGData
141 ) == true) {
142 //
143 auto thumbnailTexture = TextureReader::readPNG("tdme.gui.guiimagenode." + to_string(thumbnailTextureIdx++), thumbnailPNGData, true);
144 if (thumbnailTexture != nullptr) {
145 thumbnailTexture->acquireReference();
146 this->texture = thumbnailTexture;
147 } else {
148 this->source = "resources/engine/images/mesh.png";
149 }
150 } else {
151 this->source = "resources/engine/images/mesh.png";
152 }
153 } catch (Exception& exception) {
154 Console::println(string() + "GUIImageNode::setSource(): " + exception.what());
155 }
156 } else
157 if (StringTools::endsWith(StringTools::toLowerCase(source), ".tmodel") == true) {
158 try {
159 vector<uint8_t> thumbnailPNGData;
160 if (PrototypeReader::readThumbnail(
161 FileSystem::getInstance()->getPathName(source),
162 FileSystem::getInstance()->getFileName(source),
163 thumbnailPNGData
164 ) == true) {
165 //
166 auto thumbnailTexture = TextureReader::readPNG("tdme.gui.guiimagenode." + to_string(thumbnailTextureIdx++), thumbnailPNGData, true);
167 if (thumbnailTexture != nullptr) {
168 thumbnailTexture->acquireReference();
169 this->texture = thumbnailTexture;
170 } else {
171 this->source = "resources/engine/images/tdme.png";
172 }
173 } else {
174 this->source = "resources/engine/images/tdme.png";
175 }
176 } catch (Exception& exception) {
177 Console::println(string() + "GUIImageNode::setSource(): " + exception.what());
178 }
179 } else {
180 this->texture = source.empty() == true?nullptr:GUI::getImage(screenNode->getApplicationRootPathName(), source);
181 }
182 }
183 this->textureId = texture == nullptr?0:Engine::getInstance()->getTextureManager()->addTexture(texture, 0);
184 this->textureWidth = texture == nullptr?0:texture->getWidth();
185 this->textureHeight = texture == nullptr?0:texture->getHeight();
186}
187
188void GUIImageNode::rotate(float rotation) {
189 if (texture == nullptr) return;
190 auto rotatedTexture = TextureReader::rotate(texture, rotation);
191 if (rotatedTexture == nullptr) return;
192 if (texture != nullptr) {
193 Engine::getInstance()->getTextureManager()->removeTexture(texture->getId());
194 texture = nullptr;
195 }
196 this->texture = rotatedTexture;
197 this->textureId = texture == nullptr?0:Engine::getInstance()->getTextureManager()->addTexture(texture, 0);
198 this->textureWidth = texture == nullptr?0:texture->getWidth();
199 this->textureHeight = texture == nullptr?0:texture->getHeight();
200}
Engine main class.
Definition: Engine.h:122
const string & getId() const
Definition: Texture.h:60
GUI module class.
Definition: GUI.h:66
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
Definition: GUI.cpp:145
const string getNodeType() override
void dispose() override
Dispose node.
void setSource(const string &source)
Set image source.
static STATIC_DLL_IMPEXT int thumbnailTextureIdx
Definition: GUIImageNode.h:44
void rotate(float rotation)
Rotate image around center.
GUI element node conditions.
GUIScreenNode * screenNode
Definition: GUINode.h:146
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
const string & getApplicationRootPathName()
void dispose() override
Dispose node.
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.