mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
80 lines
2.3 KiB
C++
80 lines
2.3 KiB
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// GridTileComponent.h
|
|
//
|
|
// X*Y tile grid, used indirectly by GridGameListView via ImageGridComponent.
|
|
//
|
|
|
|
#ifndef ES_CORE_COMPONENTS_GRID_TILE_COMPONENT_H
|
|
#define ES_CORE_COMPONENTS_GRID_TILE_COMPONENT_H
|
|
|
|
#include "ImageComponent.h"
|
|
#include "NinePatchComponent.h"
|
|
|
|
struct GridTileProperties {
|
|
glm::vec2 mSize;
|
|
glm::vec2 mPadding;
|
|
unsigned int mImageColor;
|
|
std::string mBackgroundImage;
|
|
glm::vec2 mBackgroundCornerSize;
|
|
unsigned int mBackgroundCenterColor;
|
|
unsigned int mBackgroundEdgeColor;
|
|
};
|
|
|
|
class GridTileComponent : public GuiComponent
|
|
{
|
|
public:
|
|
GridTileComponent(Window* window);
|
|
|
|
void render(const glm::mat4& parentTrans) override;
|
|
virtual void applyTheme(const std::shared_ptr<ThemeData>& theme,
|
|
const std::string& view,
|
|
const std::string& element,
|
|
unsigned int properties) override;
|
|
|
|
// Made this a static function because the ImageGridComponent needs to know the default tile
|
|
// max size to calculate the grid dimension before it instantiates the GridTileComponents.
|
|
static glm::vec2 getDefaultTileSize();
|
|
glm::vec2 getSelectedTileSize() const;
|
|
bool isSelected() const;
|
|
|
|
void reset() { setImage(""); }
|
|
|
|
void setImage(const std::string& path);
|
|
void setImage(const std::shared_ptr<TextureResource>& texture);
|
|
void setSelected(bool selected,
|
|
bool allowAnimation = true,
|
|
glm::vec3* pPosition = nullptr,
|
|
bool force = false);
|
|
void setVisible(bool visible);
|
|
|
|
void forceSize(glm::vec2 size, float selectedZoom);
|
|
|
|
glm::vec3 getBackgroundPosition();
|
|
|
|
virtual void update(int deltaTime) override;
|
|
|
|
std::shared_ptr<TextureResource> getTexture();
|
|
|
|
private:
|
|
void resize();
|
|
void calcCurrentProperties();
|
|
void setSelectedZoom(float percent);
|
|
|
|
std::shared_ptr<ImageComponent> mImage;
|
|
NinePatchComponent mBackground;
|
|
|
|
GridTileProperties mDefaultProperties;
|
|
GridTileProperties mSelectedProperties;
|
|
GridTileProperties mCurrentProperties;
|
|
|
|
float mSelectedZoomPercent;
|
|
bool mSelected;
|
|
bool mVisible;
|
|
|
|
glm::vec3 mAnimPosition;
|
|
};
|
|
|
|
#endif // ES_CORE_COMPONENTS_GRID_TILE_COMPONENT_H
|