2020-06-28 16:39:18 +00:00
|
|
|
//
|
|
|
|
// ImageComponent.cpp
|
|
|
|
//
|
|
|
|
// Handles images: loading, resizing, cropping, color shifting etc.
|
|
|
|
//
|
|
|
|
|
2014-06-20 01:30:09 +00:00
|
|
|
#include "components/ImageComponent.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
|
|
|
|
#include "resources/TextureResource.h"
|
2014-06-20 01:30:09 +00:00
|
|
|
#include "Log.h"
|
2018-01-23 00:31:18 +00:00
|
|
|
#include "Settings.h"
|
2014-06-20 01:30:09 +00:00
|
|
|
#include "ThemeData.h"
|
2012-08-02 01:43:55 +00:00
|
|
|
|
2017-10-28 20:24:35 +00:00
|
|
|
Vector2i ImageComponent::getTextureSize() const
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
if (mTexture)
|
|
|
|
return mTexture->getSize();
|
|
|
|
else
|
|
|
|
return Vector2i::Zero();
|
2013-08-06 13:15:20 +00:00
|
|
|
}
|
|
|
|
|
2018-04-12 09:00:47 +00:00
|
|
|
Vector2f ImageComponent::getSize() const
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
return GuiComponent::getSize() * (mBottomRightCrop - mTopLeftCrop);
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageComponent::ImageComponent(
|
|
|
|
Window* window,
|
|
|
|
bool forceLoad,
|
|
|
|
bool dynamic)
|
|
|
|
: GuiComponent(window),
|
|
|
|
mTargetIsMax(false),
|
|
|
|
mTargetIsMin(false),
|
|
|
|
mFlipX(false),
|
|
|
|
mFlipY(false),
|
|
|
|
mTargetSize(0, 0),
|
|
|
|
mColorShift(0xFFFFFFFF),
|
|
|
|
mColorShiftEnd(0xFFFFFFFF),
|
|
|
|
mColorGradientHorizontal(true),
|
|
|
|
mForceLoad(forceLoad),
|
|
|
|
mDynamic(dynamic),
|
|
|
|
mFadeOpacity(0),
|
|
|
|
mFading(false),
|
|
|
|
mRotateByTargetSize(false),
|
|
|
|
mTopLeftCrop(0.0f, 0.0f),
|
|
|
|
mBottomRightCrop(1.0f, 1.0f)
|
|
|
|
{
|
|
|
|
updateColors();
|
2012-08-02 01:43:55 +00:00
|
|
|
}
|
|
|
|
|
2013-06-02 15:08:32 +00:00
|
|
|
ImageComponent::~ImageComponent()
|
2012-08-02 01:43:55 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-21 16:49:29 +00:00
|
|
|
void ImageComponent::resize()
|
2012-08-09 21:19:07 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
if (!mTexture)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const Vector2f textureSize = mTexture->getSourceImageSize();
|
|
|
|
if (textureSize == Vector2f::Zero())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (mTexture->isTiled()) {
|
|
|
|
mSize = mTargetSize;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// SVG rasterization is determined by height and rasterization is done in terms of pixels.
|
|
|
|
// If rounding is off enough in the rasterization step (for images with extreme aspect
|
|
|
|
// ratios), it can cause cutoff when the aspect ratio breaks.
|
|
|
|
// So we always make sure the resultant height is an integer to make sure cutoff doesn't
|
|
|
|
// happen, and scale width from that (you'll see this scattered throughout the function).
|
|
|
|
// This is probably not the best way, so if you're familiar with this problem and have a
|
|
|
|
// better solution, please make a pull request!
|
|
|
|
if (mTargetIsMax) {
|
|
|
|
mSize = textureSize;
|
|
|
|
|
|
|
|
Vector2f resizeScale((mTargetSize.x() / mSize.x()), (mTargetSize.y() / mSize.y()));
|
|
|
|
|
|
|
|
if (resizeScale.x() < resizeScale.y()) {
|
|
|
|
// This will be mTargetSize.x(). We can't exceed it, nor be lower than it.
|
|
|
|
mSize[0] *= resizeScale.x();
|
|
|
|
// We need to make sure we're not creating an image larger than max size.
|
|
|
|
mSize[1] = Math::min(Math::round(mSize[1] *= resizeScale.x()), mTargetSize.y());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// This will be mTargetSize.y(). We can't exceed it.
|
|
|
|
mSize[1] = Math::round(mSize[1] * resizeScale.y());
|
|
|
|
// For SVG rasterization, always calculate width from rounded height (see comment
|
|
|
|
// above). We need to make sure we're not creating an image larger than max size.
|
|
|
|
mSize[0] = Math::min((mSize[1] / textureSize.y()) * textureSize.x(),
|
|
|
|
mTargetSize.x());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (mTargetIsMin) {
|
|
|
|
mSize = textureSize;
|
|
|
|
|
|
|
|
Vector2f resizeScale((mTargetSize.x() / mSize.x()), (mTargetSize.y() / mSize.y()));
|
|
|
|
|
|
|
|
if (resizeScale.x() > resizeScale.y()) {
|
|
|
|
mSize[0] *= resizeScale.x();
|
|
|
|
mSize[1] *= resizeScale.x();
|
|
|
|
|
|
|
|
float cropPercent = (mSize.y() - mTargetSize.y()) / (mSize.y() * 2);
|
|
|
|
crop(0, cropPercent, 0, cropPercent);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mSize[0] *= resizeScale.y();
|
|
|
|
mSize[1] *= resizeScale.y();
|
|
|
|
|
|
|
|
float cropPercent = (mSize.x() - mTargetSize.x()) / (mSize.x() * 2);
|
|
|
|
crop(cropPercent, 0, cropPercent, 0);
|
|
|
|
}
|
|
|
|
// For SVG rasterization, always calculate width from rounded height (see comment
|
|
|
|
// above). We need to make sure we're not creating an image smaller than min size.
|
|
|
|
mSize[1] = Math::max(Math::round(mSize[1]), mTargetSize.y());
|
|
|
|
mSize[0] = Math::max((mSize[1] / textureSize.y()) * textureSize.x(), mTargetSize.x());
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// If both components are set, we just stretch.
|
|
|
|
// If no components are set, we don't resize at all.
|
|
|
|
mSize = mTargetSize == Vector2f::Zero() ? textureSize : mTargetSize;
|
|
|
|
|
|
|
|
// If only one component is set, we resize in a way that maintains aspect ratio.
|
|
|
|
// For SVG rasterization, we always calculate width from rounded height (see
|
|
|
|
// comment above).
|
|
|
|
if (!mTargetSize.x() && mTargetSize.y()) {
|
|
|
|
mSize[1] = Math::round(mTargetSize.y());
|
|
|
|
mSize[0] = (mSize.y() / textureSize.y()) * textureSize.x();
|
|
|
|
}
|
|
|
|
else if (mTargetSize.x() && !mTargetSize.y()) {
|
|
|
|
mSize[1] = Math::round((mTargetSize.x() / textureSize.x()) * textureSize.y());
|
|
|
|
mSize[0] = (mSize.y() / textureSize.y()) * textureSize.x();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mSize[0] = Math::round(mSize.x());
|
|
|
|
mSize[1] = Math::round(mSize.y());
|
|
|
|
// mSize.y() should already be rounded.
|
|
|
|
mTexture->rasterizeAt((size_t)mSize.x(), (size_t)mSize.y());
|
|
|
|
|
|
|
|
onSizeChanged();
|
2014-04-12 01:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::onSizeChanged()
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
updateVertices();
|
2012-08-13 18:32:53 +00:00
|
|
|
}
|
|
|
|
|
2017-10-01 03:17:58 +00:00
|
|
|
void ImageComponent::setDefaultImage(std::string path)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mDefaultPath = path;
|
2017-10-01 03:17:58 +00:00
|
|
|
}
|
|
|
|
|
2014-01-19 18:23:01 +00:00
|
|
|
void ImageComponent::setImage(std::string path, bool tile)
|
2012-08-09 21:19:07 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
if (path.empty() || !ResourceManager::getInstance()->fileExists(path)) {
|
|
|
|
if (mDefaultPath.empty() || !ResourceManager::getInstance()->fileExists(mDefaultPath))
|
|
|
|
mTexture.reset();
|
|
|
|
else
|
|
|
|
mTexture = TextureResource::get(mDefaultPath, tile, mForceLoad, mDynamic);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mTexture = TextureResource::get(path, tile, mForceLoad, mDynamic);
|
|
|
|
}
|
2012-08-02 01:43:55 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
resize();
|
2013-11-12 23:28:15 +00:00
|
|
|
}
|
|
|
|
|
2014-01-19 18:23:01 +00:00
|
|
|
void ImageComponent::setImage(const char* path, size_t length, bool tile)
|
2013-09-20 23:55:05 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mTexture.reset();
|
2013-09-20 23:55:05 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
mTexture = TextureResource::get("", tile);
|
|
|
|
mTexture->initFromMemory(path, length);
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
resize();
|
2013-09-20 23:55:05 +00:00
|
|
|
}
|
|
|
|
|
2014-01-19 18:23:01 +00:00
|
|
|
void ImageComponent::setImage(const std::shared_ptr<TextureResource>& texture)
|
2012-08-13 18:32:53 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mTexture = texture;
|
|
|
|
resize();
|
2012-08-13 18:32:53 +00:00
|
|
|
}
|
|
|
|
|
2014-01-10 23:45:47 +00:00
|
|
|
void ImageComponent::setResize(float width, float height)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mTargetSize = Vector2f(width, height);
|
|
|
|
mTargetIsMax = false;
|
|
|
|
mTargetIsMin = false;
|
|
|
|
resize();
|
2012-08-13 18:32:53 +00:00
|
|
|
}
|
|
|
|
|
2014-01-10 23:45:47 +00:00
|
|
|
void ImageComponent::setMaxSize(float width, float height)
|
2012-10-05 20:04:12 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mTargetSize = Vector2f(width, height);
|
|
|
|
mTargetIsMax = true;
|
|
|
|
mTargetIsMin = false;
|
|
|
|
resize();
|
2018-04-12 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::setMinSize(float width, float height)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mTargetSize = Vector2f(width, height);
|
|
|
|
mTargetIsMax = false;
|
|
|
|
mTargetIsMin = true;
|
|
|
|
resize();
|
2012-10-05 20:04:12 +00:00
|
|
|
}
|
|
|
|
|
2018-01-23 00:34:30 +00:00
|
|
|
Vector2f ImageComponent::getRotationSize() const
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
return mRotateByTargetSize ? mTargetSize : mSize;
|
2018-01-23 00:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::setRotateByTargetSize(bool rotate)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mRotateByTargetSize = rotate;
|
2018-01-23 00:34:30 +00:00
|
|
|
}
|
|
|
|
|
2018-04-12 09:00:47 +00:00
|
|
|
void ImageComponent::cropLeft(float percent)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
assert(percent >= 0.0f && percent <= 1.0f);
|
|
|
|
mTopLeftCrop.x() = percent;
|
2018-04-12 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::cropTop(float percent)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
assert(percent >= 0.0f && percent <= 1.0f);
|
|
|
|
mTopLeftCrop.y() = percent;
|
2018-04-12 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::cropRight(float percent)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
assert(percent >= 0.0f && percent <= 1.0f);
|
|
|
|
mBottomRightCrop.x() = 1.0f - percent;
|
2018-04-12 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::cropBot(float percent)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
assert(percent >= 0.0f && percent <= 1.0f);
|
|
|
|
mBottomRightCrop.y() = 1.0f - percent;
|
2018-04-12 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::crop(float left, float top, float right, float bot)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
cropLeft(left);
|
|
|
|
cropTop(top);
|
|
|
|
cropRight(right);
|
|
|
|
cropBot(bot);
|
2018-04-12 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::uncrop()
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
crop(0, 0, 0, 0);
|
2018-04-12 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
2013-06-02 15:08:32 +00:00
|
|
|
void ImageComponent::setFlipX(bool flip)
|
2012-10-07 22:25:51 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mFlipX = flip;
|
|
|
|
updateVertices();
|
2012-10-07 22:25:51 +00:00
|
|
|
}
|
|
|
|
|
2013-06-02 15:08:32 +00:00
|
|
|
void ImageComponent::setFlipY(bool flip)
|
2012-10-07 22:25:51 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mFlipY = flip;
|
|
|
|
updateVertices();
|
2012-10-07 22:25:51 +00:00
|
|
|
}
|
|
|
|
|
2013-08-07 22:40:27 +00:00
|
|
|
void ImageComponent::setColorShift(unsigned int color)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mColorShift = color;
|
|
|
|
mColorShiftEnd = color;
|
|
|
|
updateColors();
|
2013-08-07 22:40:27 +00:00
|
|
|
}
|
|
|
|
|
2019-07-04 01:10:17 +00:00
|
|
|
void ImageComponent::setColorShiftEnd(unsigned int color)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mColorShiftEnd = color;
|
|
|
|
updateColors();
|
2019-07-04 01:10:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageComponent::setColorGradientHorizontal(bool horizontal)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mColorGradientHorizontal = horizontal;
|
|
|
|
updateColors();
|
2019-07-04 01:10:17 +00:00
|
|
|
}
|
|
|
|
|
2014-04-12 01:48:13 +00:00
|
|
|
void ImageComponent::setOpacity(unsigned char opacity)
|
2012-08-02 01:43:55 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mOpacity = opacity;
|
|
|
|
updateColors();
|
2012-08-29 21:52:25 +00:00
|
|
|
}
|
2012-08-29 18:53:53 +00:00
|
|
|
|
2014-04-12 01:48:13 +00:00
|
|
|
void ImageComponent::updateVertices()
|
2012-08-29 21:52:25 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
if (!mTexture || !mTexture->isInitialized())
|
|
|
|
return;
|
2014-04-12 01:48:13 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
// We go through this mess to make sure everything is properly rounded.
|
|
|
|
// If we just round vertices at the end, edge cases occur near sizes of 0.5.
|
|
|
|
const Vector2f topLeft = { mSize * mTopLeftCrop };
|
|
|
|
const Vector2f bottomRight = { mSize * mBottomRightCrop };
|
|
|
|
const float px = mTexture->isTiled() ? mSize.x() / getTextureSize().x() : 1.0f;
|
|
|
|
const float py = mTexture->isTiled() ? mSize.y() / getTextureSize().y() : 1.0f;
|
2019-08-31 13:06:23 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
mVertices[0] = { { topLeft.x(), topLeft.y() }, { mTopLeftCrop.x(), py - mTopLeftCrop.y() }, 0 };
|
|
|
|
mVertices[1] = { { topLeft.x(), bottomRight.y() }, { mTopLeftCrop.x(), 1.0f - mBottomRightCrop.y() }, 0 };
|
|
|
|
mVertices[2] = { { bottomRight.x(), topLeft.y() }, { mBottomRightCrop.x() * px, py - mTopLeftCrop.y() }, 0 };
|
|
|
|
mVertices[3] = { { bottomRight.x(), bottomRight.y() }, { mBottomRightCrop.x() * px, 1.0f - mBottomRightCrop.y() }, 0 };
|
2019-08-31 13:06:23 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
updateColors();
|
2012-10-07 22:25:51 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
// Round vertices.
|
|
|
|
for (int i = 0; i < 4; ++i)
|
|
|
|
mVertices[i].pos.round();
|
2019-08-31 16:19:43 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
if (mFlipX) {
|
|
|
|
for (int i = 0; i < 4; ++i)
|
|
|
|
mVertices[i].tex[0] = px - mVertices[i].tex[0];
|
|
|
|
}
|
2019-08-31 16:19:43 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
if (mFlipY) {
|
|
|
|
for (int i = 0; i < 4; ++i)
|
|
|
|
mVertices[i].tex[1] = py - mVertices[i].tex[1];
|
|
|
|
}
|
2012-09-07 21:44:07 +00:00
|
|
|
}
|
|
|
|
|
2014-04-12 01:48:13 +00:00
|
|
|
void ImageComponent::updateColors()
|
2012-09-07 21:44:07 +00:00
|
|
|
{
|
2020-08-17 17:15:05 +00:00
|
|
|
const float opacity = (mOpacity * (mFading ? mFadeOpacity / 255.0 : 1.0)) / 255.0;
|
|
|
|
const unsigned int color = Renderer::convertColor((mColorShift & 0xFFFFFF00) |
|
|
|
|
(unsigned char)((mColorShift & 0xFF) * opacity));
|
|
|
|
const unsigned int colorEnd = Renderer::convertColor((mColorShiftEnd & 0xFFFFFF00) |
|
2020-06-28 16:39:18 +00:00
|
|
|
(unsigned char)((mColorShiftEnd & 0xFF) * opacity));
|
2019-08-08 20:16:11 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
mVertices[0].col = color;
|
|
|
|
mVertices[1].col = mColorGradientHorizontal ? colorEnd : color;
|
2020-08-17 17:15:05 +00:00
|
|
|
mVertices[2].col = mColorGradientHorizontal ? color : colorEnd;
|
2020-06-28 16:39:18 +00:00
|
|
|
mVertices[3].col = colorEnd;
|
2014-04-12 01:48:13 +00:00
|
|
|
}
|
2013-06-21 16:49:29 +00:00
|
|
|
|
2017-10-28 20:24:35 +00:00
|
|
|
void ImageComponent::render(const Transform4x4f& parentTrans)
|
2014-04-12 01:48:13 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
if (!isVisible())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Transform4x4f trans = parentTrans * getTransform();
|
|
|
|
Renderer::setMatrix(trans);
|
|
|
|
|
|
|
|
if (mTexture && mOpacity > 0) {
|
|
|
|
if (Settings::getInstance()->getBool("DebugImage")) {
|
|
|
|
Vector2f targetSizePos = (mTargetSize - mSize) * mOrigin * -1;
|
|
|
|
Renderer::drawRect(targetSizePos.x(), targetSizePos.y(), mTargetSize.x(),
|
|
|
|
mTargetSize.y(), 0xFF000033, 0xFF000033);
|
|
|
|
Renderer::drawRect(0.0f, 0.0f, mSize.x(), mSize.y(), 0x00000033, 0x00000033);
|
|
|
|
}
|
|
|
|
if (mTexture->isInitialized()) {
|
|
|
|
// Actually draw the image.
|
|
|
|
// The bind() function returns false if the texture is not currently loaded. A blank
|
|
|
|
// texture is bound in this case but we want to handle a fade so it doesn't just
|
|
|
|
// 'jump' in when it finally loads.
|
|
|
|
fadeIn(mTexture->bind());
|
|
|
|
Renderer::drawTriangleStrips(&mVertices[0], 4);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG(LogError) << "Image texture is not initialized!";
|
|
|
|
mTexture.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GuiComponent::renderChildren(trans);
|
2012-08-02 01:43:55 +00:00
|
|
|
}
|
2012-09-04 16:45:16 +00:00
|
|
|
|
2017-01-22 23:28:06 +00:00
|
|
|
void ImageComponent::fadeIn(bool textureLoaded)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
if (!mForceLoad) {
|
|
|
|
if (!textureLoaded) {
|
|
|
|
// Start the fade if this is the first time we've encountered the unloaded texture.
|
|
|
|
if (!mFading) {
|
|
|
|
// Start with a zero opacity and flag it as fading.
|
|
|
|
mFadeOpacity = 0;
|
|
|
|
mFading = true;
|
|
|
|
updateColors();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (mFading) {
|
|
|
|
// The texture is loaded and we need to fade it in. The fade is based on the frame
|
|
|
|
// rate and is 1/4 second if running at 60 frames per second although the actual
|
|
|
|
// value is not that important.
|
|
|
|
int opacity = mFadeOpacity + 255 / 15;
|
|
|
|
// See if we've finished fading.
|
|
|
|
if (opacity >= 255) {
|
|
|
|
mFadeOpacity = 255;
|
|
|
|
mFading = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mFadeOpacity = (unsigned char)opacity;
|
|
|
|
}
|
|
|
|
updateColors();
|
|
|
|
}
|
|
|
|
}
|
2017-01-22 23:28:06 +00:00
|
|
|
}
|
|
|
|
|
2013-06-02 15:08:32 +00:00
|
|
|
bool ImageComponent::hasImage()
|
2012-10-10 13:51:48 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
return (bool)mTexture;
|
2012-10-10 13:51:48 +00:00
|
|
|
}
|
2013-04-08 16:52:40 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
void ImageComponent::applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view,
|
|
|
|
const std::string& element, unsigned int properties)
|
2014-01-01 05:39:22 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
using namespace ThemeFlags;
|
2014-01-01 05:39:22 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
GuiComponent::applyTheme(theme, view, element, (properties ^ SIZE) |
|
|
|
|
((properties & (SIZE | POSITION)) ? ORIGIN : 0));
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
const ThemeData::ThemeElement* elem = theme->getElement(view, element, "image");
|
|
|
|
if (!elem)
|
|
|
|
return;
|
2014-01-01 05:39:22 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
Vector2f scale = getParent() ? getParent()->getSize() :
|
|
|
|
Vector2f((float)Renderer::getScreenWidth(), (float)Renderer::getScreenHeight());
|
2017-10-01 03:17:58 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
if (properties & ThemeFlags::SIZE) {
|
|
|
|
if (elem->has("size"))
|
|
|
|
setResize(elem->get<Vector2f>("size") * scale);
|
|
|
|
else if (elem->has("maxSize"))
|
|
|
|
setMaxSize(elem->get<Vector2f>("maxSize") * scale);
|
|
|
|
else if (elem->has("minSize"))
|
|
|
|
setMinSize(elem->get<Vector2f>("minSize") * scale);
|
|
|
|
}
|
2014-01-23 21:30:32 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
if (elem->has("default"))
|
|
|
|
setDefaultImage(elem->get<std::string>("default"));
|
2019-07-04 01:10:17 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
if (properties & PATH && elem->has("path")) {
|
|
|
|
bool tile = (elem->has("tile") && elem->get<bool>("tile"));
|
|
|
|
setImage(elem->get<std::string>("path"), tile);
|
|
|
|
}
|
2019-07-04 01:10:17 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
if (properties & COLOR) {
|
|
|
|
if (elem->has("color"))
|
|
|
|
setColorShift(elem->get<unsigned int>("color"));
|
|
|
|
if (elem->has("colorEnd"))
|
|
|
|
setColorShiftEnd(elem->get<unsigned int>("colorEnd"));
|
|
|
|
if (elem->has("gradientType"))
|
|
|
|
setColorGradientHorizontal(!(elem->get<std::string>("gradientType").compare("horizontal")));
|
|
|
|
}
|
2014-01-01 05:39:22 +00:00
|
|
|
}
|
2014-05-16 21:21:33 +00:00
|
|
|
|
|
|
|
std::vector<HelpPrompt> ImageComponent::getHelpPrompts()
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
std::vector<HelpPrompt> ret;
|
|
|
|
ret.push_back(HelpPrompt("a", "select"));
|
|
|
|
return ret;
|
2014-05-16 21:21:33 +00:00
|
|
|
}
|