52int GUIImageNode::thumbnailTextureIdx = 0;
54GUIImageNode::GUIImageNode(
62 const string& backgroundImage,
64 const GUIColor& backgroundImageEffectColorMul,
65 const GUIColor& backgroundImageEffectColorAdd,
90 backgroundImageScale9Grid,
91 backgroundImageEffectColorMul,
92 backgroundImageEffectColorAdd,
97 requestedDimensionConstraints,
109 if (Math::abs(rotation) > Math::EPSILON)
rotate(rotation);
119 if (
texture !=
nullptr) Engine::getInstance()->getTextureManager()->removeTexture(
texture->
getId());
129 Engine::getInstance()->getTextureManager()->removeTexture(
texture->
getId());
133 if (
source.empty() ==
false) {
134 if (StringTools::endsWith(StringTools::toLowerCase(
source),
".tm") ==
true) {
136 vector<uint8_t> thumbnailPNGData;
137 if (FileSystem::getInstance()->getThumbnailAttachment(
138 FileSystem::getInstance()->getPathName(
source),
139 FileSystem::getInstance()->getFileName(
source),
143 auto thumbnailTexture = TextureReader::readPNG(
"tdme.gui.guiimagenode." + to_string(
thumbnailTextureIdx++), thumbnailPNGData,
true);
144 if (thumbnailTexture !=
nullptr) {
145 thumbnailTexture->acquireReference();
146 this->
texture = thumbnailTexture;
148 this->source =
"resources/engine/images/mesh.png";
151 this->source =
"resources/engine/images/mesh.png";
154 Console::println(
string() +
"GUIImageNode::setSource(): " + exception.what());
157 if (StringTools::endsWith(StringTools::toLowerCase(
source),
".tmodel") ==
true) {
159 vector<uint8_t> thumbnailPNGData;
160 if (PrototypeReader::readThumbnail(
161 FileSystem::getInstance()->getPathName(
source),
162 FileSystem::getInstance()->getFileName(
source),
166 auto thumbnailTexture = TextureReader::readPNG(
"tdme.gui.guiimagenode." + to_string(
thumbnailTextureIdx++), thumbnailPNGData,
true);
167 if (thumbnailTexture !=
nullptr) {
168 thumbnailTexture->acquireReference();
169 this->
texture = thumbnailTexture;
171 this->source =
"resources/engine/images/tdme.png";
174 this->source =
"resources/engine/images/tdme.png";
177 Console::println(
string() +
"GUIImageNode::setSource(): " + exception.what());
189 if (
texture ==
nullptr)
return;
190 auto rotatedTexture = TextureReader::rotate(
texture, rotation);
191 if (rotatedTexture ==
nullptr)
return;
193 Engine::getInstance()->getTextureManager()->removeTexture(
texture->
getId());
196 this->
texture = rotatedTexture;
const string & getId() const
int32_t getHeight() const
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
const string getNodeType() override
void dispose() override
Dispose node.
void setSource(const string &source)
Set image source.
static STATIC_DLL_IMPEXT int thumbnailTextureIdx
void rotate(float rotation)
Rotate image around center.
const string & getSource()
GUI element node conditions.
GUI node requested constraints requested constraints type enum.
GUIScreenNode * screenNode
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
const string & getApplicationRootPathName()
void dispose() override
Dispose node.
File system singleton class.
std::exception Exception
Exception base class.
GUI node clipping entity.
GUI node computed constraints.
GUI node requested constraints entity.
GUI node scale 9 grid entity.