2020-09-21 17:17:34 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-28 16:39:18 +00:00
|
|
|
//
|
2020-09-21 17:17:34 +00:00
|
|
|
// EmulationStation Desktop Edition
|
2020-06-28 16:39:18 +00:00
|
|
|
// HelpComponent.cpp
|
|
|
|
//
|
|
|
|
// Help information in icon and text pairs.
|
|
|
|
//
|
|
|
|
|
2014-06-20 01:30:09 +00:00
|
|
|
#include "components/HelpComponent.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
|
|
|
|
#include "components/ComponentGrid.h"
|
2014-06-20 01:30:09 +00:00
|
|
|
#include "components/ImageComponent.h"
|
|
|
|
#include "components/TextComponent.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "resources/TextureResource.h"
|
2018-01-27 17:04:28 +00:00
|
|
|
#include "utils/StringUtil.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "Log.h"
|
|
|
|
#include "Settings.h"
|
2014-01-25 23:34:29 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
#define OFFSET_X 12 // Move the entire thing right by this amount (px).
|
|
|
|
#define OFFSET_Y 12 // Move the entire thing up by this amount (px).
|
2014-03-24 01:33:27 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
#define ICON_TEXT_SPACING 8 // Space between [icon] and [text] (px).
|
|
|
|
#define ENTRY_SPACING 16 // Space between [text] and next [icon] (px).
|
2014-03-24 01:33:27 +00:00
|
|
|
|
2020-12-16 22:59:00 +00:00
|
|
|
static const std::map<std::string, std::string> ICON_PATH_MAP {
|
2020-06-28 16:39:18 +00:00
|
|
|
{ "up/down", ":/help/dpad_updown.svg" },
|
|
|
|
{ "left/right", ":/help/dpad_leftright.svg" },
|
|
|
|
{ "up/down/left/right", ":/help/dpad_all.svg" },
|
2021-03-24 20:20:01 +00:00
|
|
|
{ "thumbstickclick", ":/help/thumbstick_click.svg" },
|
2020-06-28 16:39:18 +00:00
|
|
|
{ "a", ":/help/button_a.svg" },
|
|
|
|
{ "b", ":/help/button_b.svg" },
|
|
|
|
{ "x", ":/help/button_x.svg" },
|
|
|
|
{ "y", ":/help/button_y.svg" },
|
|
|
|
{ "l", ":/help/button_l.svg" },
|
|
|
|
{ "r", ":/help/button_r.svg" },
|
|
|
|
{ "lr", ":/help/button_lr.svg" },
|
|
|
|
{ "start", ":/help/button_start.svg" },
|
|
|
|
{ "select", ":/help/button_select.svg" }
|
2017-11-03 00:33:08 +00:00
|
|
|
};
|
2014-01-25 23:34:29 +00:00
|
|
|
|
|
|
|
HelpComponent::HelpComponent(Window* window) : GuiComponent(window)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void HelpComponent::clearPrompts()
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mPrompts.clear();
|
|
|
|
updateGrid();
|
2014-01-25 23:34:29 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 01:33:27 +00:00
|
|
|
void HelpComponent::setPrompts(const std::vector<HelpPrompt>& prompts)
|
2014-01-25 23:34:29 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mPrompts = prompts;
|
|
|
|
updateGrid();
|
2014-03-24 01:33:27 +00:00
|
|
|
}
|
2014-01-25 23:34:29 +00:00
|
|
|
|
2014-05-29 20:41:47 +00:00
|
|
|
void HelpComponent::setStyle(const HelpStyle& style)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
mStyle = style;
|
|
|
|
updateGrid();
|
2014-05-29 20:41:47 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 01:33:27 +00:00
|
|
|
void HelpComponent::updateGrid()
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
if (!Settings::getInstance()->getBool("ShowHelpPrompts") || mPrompts.empty()) {
|
|
|
|
mGrid.reset();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Font>& font = mStyle.font;
|
|
|
|
|
2020-11-17 22:06:54 +00:00
|
|
|
mGrid = std::make_shared<ComponentGrid>(mWindow,
|
|
|
|
Vector2i(static_cast<int>(mPrompts.size()) * 4, 1));
|
2020-06-28 16:39:18 +00:00
|
|
|
|
|
|
|
// [icon] [spacer1] [text] [spacer2]
|
|
|
|
|
2021-03-27 09:26:13 +00:00
|
|
|
std::vector<std::shared_ptr<ImageComponent>> icons;
|
|
|
|
std::vector<std::shared_ptr<TextComponent>> labels;
|
2020-06-28 16:39:18 +00:00
|
|
|
|
|
|
|
float width = 0;
|
2020-12-28 10:29:32 +00:00
|
|
|
const float height = std::round(font->getLetterHeight() * 1.25f);
|
2020-06-28 16:39:18 +00:00
|
|
|
|
|
|
|
for (auto it = mPrompts.cbegin(); it != mPrompts.cend(); it++) {
|
|
|
|
auto icon = std::make_shared<ImageComponent>(mWindow);
|
|
|
|
icon->setImage(getIconTexture(it->first.c_str()));
|
|
|
|
icon->setColorShift(mStyle.iconColor);
|
|
|
|
icon->setResize(0, height);
|
|
|
|
icons.push_back(icon);
|
|
|
|
|
|
|
|
auto lbl = std::make_shared<TextComponent>(mWindow,
|
|
|
|
Utils::String::toUpper(it->second), font, mStyle.textColor);
|
|
|
|
labels.push_back(lbl);
|
|
|
|
|
2021-01-13 18:45:56 +00:00
|
|
|
width += icon->getSize().x() + lbl->getSize().x() +
|
|
|
|
((ICON_TEXT_SPACING + ENTRY_SPACING) * Renderer::getScreenWidthModifier());
|
2020-06-28 16:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mGrid->setSize(width, height);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < icons.size(); i++) {
|
|
|
|
const int col = i*4;
|
|
|
|
mGrid->setColWidthPerc(col, icons.at(i)->getSize().x() / width);
|
2021-01-13 18:45:56 +00:00
|
|
|
mGrid->setColWidthPerc(col + 1, (ICON_TEXT_SPACING *
|
|
|
|
Renderer::getScreenWidthModifier()) / width);
|
2020-06-28 16:39:18 +00:00
|
|
|
mGrid->setColWidthPerc(col + 2, labels.at(i)->getSize().x() / width);
|
|
|
|
|
|
|
|
mGrid->setEntry(icons.at(i), Vector2i(col, 0), false, false);
|
|
|
|
mGrid->setEntry(labels.at(i), Vector2i(col + 2, 0), false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
mGrid->setPosition(Vector3f(mStyle.position.x(), mStyle.position.y(), 0.0f));
|
|
|
|
//mGrid->setPosition(OFFSET_X, Renderer::getScreenHeight() - mGrid->getSize().y() - OFFSET_Y);
|
|
|
|
mGrid->setOrigin(mStyle.origin);
|
2014-01-25 23:34:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<TextureResource> HelpComponent::getIconTexture(const char* name)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
auto it = mIconCache.find(name);
|
|
|
|
if (it != mIconCache.cend())
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
auto pathLookup = ICON_PATH_MAP.find(name);
|
|
|
|
if (pathLookup == ICON_PATH_MAP.cend()) {
|
|
|
|
LOG(LogError) << "Unknown help icon \"" << name << "\"!";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (!ResourceManager::getInstance()->fileExists(pathLookup->second)) {
|
|
|
|
LOG(LogError) << "Help icon \"" << name <<
|
|
|
|
"\" - corresponding image file \"" << pathLookup->second << "\" misisng!";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<TextureResource> tex = TextureResource::get(pathLookup->second);
|
|
|
|
mIconCache[std::string(name)] = tex;
|
|
|
|
return tex;
|
2014-01-25 23:34:29 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 01:58:16 +00:00
|
|
|
void HelpComponent::setOpacity(unsigned char opacity)
|
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
GuiComponent::setOpacity(opacity);
|
2014-05-15 01:58:16 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
for (unsigned int i = 0; i < mGrid->getChildCount(); i++)
|
|
|
|
mGrid->getChild(i)->setOpacity(opacity);
|
2014-05-15 01:58:16 +00:00
|
|
|
}
|
|
|
|
|
2017-10-28 20:24:35 +00:00
|
|
|
void HelpComponent::render(const Transform4x4f& parentTrans)
|
2014-01-25 23:34:29 +00:00
|
|
|
{
|
2020-06-28 16:39:18 +00:00
|
|
|
Transform4x4f trans = parentTrans * getTransform();
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-06-28 16:39:18 +00:00
|
|
|
if (mGrid)
|
|
|
|
mGrid->render(trans);
|
2014-01-25 23:34:29 +00:00
|
|
|
}
|