mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
eac8a07794
Fixed an error being caused by HelpStyle initializing before the renderer leading to a Font::get(0) command. Fixed a bug that caused unconfigured inputs to be inserted into InputConfig.
36 lines
961 B
C++
36 lines
961 B
C++
#include "HelpStyle.h"
|
|
#include "ThemeData.h"
|
|
#include "Renderer.h"
|
|
#include "resources/Font.h"
|
|
|
|
HelpStyle::HelpStyle()
|
|
{
|
|
position = Eigen::Vector2f(12.0f, Renderer::getScreenHeight() * 0.9515f);
|
|
iconColor = 0x777777FF;
|
|
textColor = 0x777777FF;
|
|
|
|
if(FONT_SIZE_SMALL != 0)
|
|
font = Font::get(FONT_SIZE_SMALL);
|
|
else
|
|
font = nullptr;
|
|
}
|
|
|
|
void HelpStyle::applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view)
|
|
{
|
|
auto elem = theme->getElement(view, "help", "helpsystem");
|
|
if(!elem)
|
|
return;
|
|
|
|
if(elem->has("pos"))
|
|
position = elem->get<Eigen::Vector2f>("pos").cwiseProduct(Eigen::Vector2f((float)Renderer::getScreenWidth(), (float)Renderer::getScreenHeight()));
|
|
|
|
if(elem->has("textColor"))
|
|
textColor = elem->get<unsigned int>("textColor");
|
|
|
|
if(elem->has("iconColor"))
|
|
iconColor = elem->get<unsigned int>("iconColor");
|
|
|
|
if(elem->has("fontPath") || elem->has("fontSize"))
|
|
font = Font::getFromTheme(elem, ThemeFlags::ALL, font);
|
|
}
|