mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
ac0bdb47ed
(been saving this one for a rainy day...) Fixed sort order assert triggered by std::sort when sorting help prompts.
313 lines
7.6 KiB
C++
313 lines
7.6 KiB
C++
#include "ImageComponent.h"
|
|
#include <iostream>
|
|
#include <boost/filesystem.hpp>
|
|
#include <math.h>
|
|
#include "../Log.h"
|
|
#include "../Renderer.h"
|
|
#include "../ThemeData.h"
|
|
#include "../Util.h"
|
|
#include "../resources/SVGResource.h"
|
|
|
|
Eigen::Vector2i ImageComponent::getTextureSize() const
|
|
{
|
|
if(mTexture)
|
|
return mTexture->getSize();
|
|
else
|
|
return Eigen::Vector2i(0, 0);
|
|
}
|
|
|
|
Eigen::Vector2f ImageComponent::getCenter() const
|
|
{
|
|
return Eigen::Vector2f(mPosition.x() - (getSize().x() * mOrigin.x()) + getSize().x() / 2,
|
|
mPosition.y() - (getSize().y() * mOrigin.y()) + getSize().y() / 2);
|
|
}
|
|
|
|
ImageComponent::ImageComponent(Window* window) : GuiComponent(window),
|
|
mTargetIsMax(false), mFlipX(false), mFlipY(false), mOrigin(0.0, 0.0), mTargetSize(0, 0), mColorShift(0xFFFFFFFF)
|
|
{
|
|
updateColors();
|
|
}
|
|
|
|
ImageComponent::~ImageComponent()
|
|
{
|
|
}
|
|
|
|
void ImageComponent::resize()
|
|
{
|
|
if(!mTexture)
|
|
return;
|
|
|
|
const Eigen::Vector2f textureSize((float)getTextureSize().x(), (float)getTextureSize().y());
|
|
|
|
if(mTexture->isTiled())
|
|
{
|
|
mSize = mTargetSize;
|
|
}else{
|
|
if(mTargetIsMax)
|
|
{
|
|
mSize = textureSize;
|
|
|
|
Eigen::Vector2f resizeScale((mTargetSize.x() / mSize.x()), (mTargetSize.y() / mSize.y()));
|
|
|
|
if(resizeScale.x() < resizeScale.y())
|
|
{
|
|
mSize[0] *= resizeScale.x();
|
|
mSize[1] *= resizeScale.x();
|
|
}else{
|
|
mSize[0] *= resizeScale.y();
|
|
mSize[1] *= resizeScale.y();
|
|
}
|
|
|
|
}else{
|
|
// if both components are set, we just stretch
|
|
// if no components are set, we don't resize at all
|
|
mSize = mTargetSize.isZero() ? textureSize : mTargetSize;
|
|
|
|
// if only one component is set, we resize in a way that maintains aspect ratio
|
|
if(!mTargetSize.x() && mTargetSize.y())
|
|
{
|
|
mSize[0] = (mTargetSize.y() / textureSize.y()) * textureSize.x();
|
|
mSize[1] = mTargetSize.y();
|
|
}else if(mTargetSize.x() && !mTargetSize.y())
|
|
{
|
|
mSize[0] = mTargetSize.x();
|
|
mSize[1] = (mTargetSize.x() / textureSize.x()) * textureSize.y();
|
|
}
|
|
}
|
|
}
|
|
|
|
SVGResource* svg = dynamic_cast<SVGResource*>(mTexture.get());
|
|
if(svg)
|
|
{
|
|
svg->rasterizeAt((int)round(mSize.x()), (int)round(mSize.y()));
|
|
}
|
|
|
|
onSizeChanged();
|
|
}
|
|
|
|
void ImageComponent::onSizeChanged()
|
|
{
|
|
updateVertices();
|
|
}
|
|
|
|
void ImageComponent::setImage(std::string path, bool tile)
|
|
{
|
|
if(path.empty() || !ResourceManager::getInstance()->fileExists(path))
|
|
mTexture.reset();
|
|
else
|
|
mTexture = TextureResource::get(path, tile);
|
|
|
|
resize();
|
|
}
|
|
|
|
void ImageComponent::setImage(const char* path, size_t length, bool tile)
|
|
{
|
|
mTexture.reset();
|
|
|
|
mTexture = TextureResource::get("", tile);
|
|
mTexture->initFromMemory(path, length);
|
|
|
|
resize();
|
|
}
|
|
|
|
void ImageComponent::setImage(const std::shared_ptr<TextureResource>& texture)
|
|
{
|
|
mTexture = texture;
|
|
resize();
|
|
}
|
|
|
|
void ImageComponent::setOrigin(float originX, float originY)
|
|
{
|
|
mOrigin << originX, originY;
|
|
updateVertices();
|
|
}
|
|
|
|
void ImageComponent::setResize(float width, float height)
|
|
{
|
|
mTargetSize << width, height;
|
|
mTargetIsMax = false;
|
|
resize();
|
|
}
|
|
|
|
void ImageComponent::setMaxSize(float width, float height)
|
|
{
|
|
mTargetSize << width, height;
|
|
mTargetIsMax = true;
|
|
resize();
|
|
}
|
|
|
|
void ImageComponent::setFlipX(bool flip)
|
|
{
|
|
mFlipX = flip;
|
|
updateVertices();
|
|
}
|
|
|
|
void ImageComponent::setFlipY(bool flip)
|
|
{
|
|
mFlipY = flip;
|
|
updateVertices();
|
|
}
|
|
|
|
void ImageComponent::setColorShift(unsigned int color)
|
|
{
|
|
mColorShift = color;
|
|
updateColors();
|
|
}
|
|
|
|
void ImageComponent::setOpacity(unsigned char opacity)
|
|
{
|
|
mOpacity = opacity;
|
|
mColorShift = (mColorShift >> 8 << 8) | mOpacity;
|
|
updateColors();
|
|
}
|
|
|
|
void ImageComponent::updateVertices()
|
|
{
|
|
if(!mTexture || !mTexture->isInitialized())
|
|
return;
|
|
|
|
// 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
|
|
Eigen::Vector2f topLeft(-mSize.x() * mOrigin.x(), -mSize.y() * mOrigin.y());
|
|
Eigen::Vector2f bottomRight(mSize.x() * (1 -mOrigin.x()), mSize.y() * (1 - mOrigin.y()));
|
|
|
|
const float width = round(bottomRight.x() - topLeft.x());
|
|
const float height = round(bottomRight.y() - topLeft.y());
|
|
|
|
topLeft[0] = round(topLeft[0]);
|
|
topLeft[1] = round(topLeft[1]);
|
|
bottomRight[0] = topLeft[0] + width;
|
|
bottomRight[1] = topLeft[1] + height;
|
|
|
|
mVertices[0].pos << topLeft.x(), topLeft.y();
|
|
mVertices[1].pos << topLeft.x(), bottomRight.y();
|
|
mVertices[2].pos << bottomRight.x(), topLeft.y();
|
|
|
|
mVertices[3].pos << bottomRight.x(), topLeft.y();
|
|
mVertices[4].pos << topLeft.x(), bottomRight.y();
|
|
mVertices[5].pos << bottomRight.x(), bottomRight.y();
|
|
|
|
float px, py;
|
|
if(mTexture->isTiled())
|
|
{
|
|
px = mSize.x() / getTextureSize().x();
|
|
py = mSize.y() / getTextureSize().y();
|
|
}else{
|
|
px = 1;
|
|
py = 1;
|
|
}
|
|
|
|
mVertices[0].tex << 0, py;
|
|
mVertices[1].tex << 0, 0;
|
|
mVertices[2].tex << px, py;
|
|
|
|
mVertices[3].tex << px, py;
|
|
mVertices[4].tex << 0, 0;
|
|
mVertices[5].tex << px, 0;
|
|
|
|
if(mFlipX)
|
|
{
|
|
for(int i = 0; i < 6; i++)
|
|
mVertices[i].tex[0] = mVertices[i].tex[0] == px ? 0 : px;
|
|
}
|
|
if(mFlipY)
|
|
{
|
|
for(int i = 1; i < 6; i++)
|
|
mVertices[i].tex[1] = mVertices[i].tex[1] == py ? 0 : py;
|
|
}
|
|
}
|
|
|
|
void ImageComponent::updateColors()
|
|
{
|
|
Renderer::buildGLColorArray(mColors, (mColorShift >> 8 << 8)| (getOpacity()), 6);
|
|
}
|
|
|
|
void ImageComponent::render(const Eigen::Affine3f& parentTrans)
|
|
{
|
|
Eigen::Affine3f trans = roundMatrix(parentTrans * getTransform());
|
|
Renderer::setMatrix(trans);
|
|
|
|
if(mTexture && mOpacity > 0)
|
|
{
|
|
if(mTexture->isInitialized())
|
|
{
|
|
// actually draw the image
|
|
mTexture->bind();
|
|
|
|
glEnable(GL_TEXTURE_2D);
|
|
glEnable(GL_BLEND);
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glEnableClientState(GL_VERTEX_ARRAY);
|
|
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
|
|
glEnableClientState(GL_COLOR_ARRAY);
|
|
|
|
glVertexPointer(2, GL_FLOAT, sizeof(Vertex), &mVertices[0].pos);
|
|
glTexCoordPointer(2, GL_FLOAT, sizeof(Vertex), &mVertices[0].tex);
|
|
glColorPointer(4, GL_UNSIGNED_BYTE, 0, mColors);
|
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
|
|
|
glDisableClientState(GL_VERTEX_ARRAY);
|
|
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
|
|
glDisableClientState(GL_COLOR_ARRAY);
|
|
|
|
glDisable(GL_TEXTURE_2D);
|
|
glDisable(GL_BLEND);
|
|
}else{
|
|
LOG(LogError) << "Image texture is not initialized!";
|
|
mTexture.reset();
|
|
}
|
|
}
|
|
|
|
GuiComponent::renderChildren(trans);
|
|
}
|
|
|
|
bool ImageComponent::hasImage()
|
|
{
|
|
return (bool)mTexture;
|
|
}
|
|
|
|
void ImageComponent::applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view, const std::string& element, unsigned int properties)
|
|
{
|
|
LOG(LogInfo) << " req image [" << view << "." << element << "] (flags: " << properties << ")";
|
|
|
|
using namespace ThemeFlags;
|
|
|
|
const ThemeData::ThemeElement* elem = theme->getElement(view, element, "image");
|
|
if(!elem)
|
|
{
|
|
LOG(LogInfo) << " (missing)";
|
|
return;
|
|
}
|
|
|
|
Eigen::Vector2f scale = getParent() ? getParent()->getSize() : Eigen::Vector2f((float)Renderer::getScreenWidth(), (float)Renderer::getScreenHeight());
|
|
|
|
if(properties & POSITION && elem->has("pos"))
|
|
{
|
|
Eigen::Vector2f denormalized = elem->get<Eigen::Vector2f>("pos").cwiseProduct(scale);
|
|
setPosition(Eigen::Vector3f(denormalized.x(), denormalized.y(), 0));
|
|
}
|
|
|
|
if(properties & ThemeFlags::SIZE)
|
|
{
|
|
if(elem->has("size"))
|
|
setResize(elem->get<Eigen::Vector2f>("size").cwiseProduct(scale));
|
|
else if(elem->has("maxSize"))
|
|
setMaxSize(elem->get<Eigen::Vector2f>("maxSize").cwiseProduct(scale));
|
|
}
|
|
|
|
// position + size also implies origin
|
|
if((properties & ORIGIN || (properties & POSITION && properties & ThemeFlags::SIZE)) && elem->has("origin"))
|
|
setOrigin(elem->get<Eigen::Vector2f>("origin"));
|
|
|
|
if(properties & PATH && elem->has("path"))
|
|
{
|
|
bool tile = (elem->has("tile") && elem->get<bool>("tile"));
|
|
setImage(elem->get<std::string>("path"), tile);
|
|
}
|
|
|
|
if(properties & COLOR && elem->has("color"))
|
|
setColorShift(elem->get<unsigned int>("color"));
|
|
}
|