ES-DE/es-core/src/components/SwitchComponent.cpp

87 lines
2 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: MIT
//
// EmulationStation Desktop Edition
// SwitchComponent.cpp
//
// Basic on/off switch used in menus.
//
#include "SwitchComponent.h"
2017-11-01 22:21:10 +00:00
#include "resources/Font.h"
SwitchComponent::SwitchComponent(bool state)
: mState {state}
2022-01-16 17:18:28 +00:00
, mOriginalValue {state}
, mColorOriginalValue {DEFAULT_COLORSHIFT}
, mColorChangedValue {DEFAULT_COLORSHIFT}
{
mImage.setImage(":/graphics/off.svg");
mImage.setResize(0, Font::get(FONT_SIZE_MEDIUM)->getLetterHeight());
mSize = mImage.getSize();
}
bool SwitchComponent::input(InputConfig* config, Input input)
{
2020-07-13 18:58:25 +00:00
if (config->isMappedTo("a", input) && input.value) {
// Ignore input if the component has been disabled.
if (!mEnabled)
return true;
mState = !mState;
onStateChanged();
if (mToggleCallback)
mToggleCallback();
return true;
}
return false;
}
void SwitchComponent::render(const glm::mat4& parentTrans)
{
glm::mat4 trans {parentTrans * getTransform()};
mImage.render(trans);
renderChildren(trans);
}
void SwitchComponent::setState(bool state)
{
mState = state;
onStateChanged();
}
std::string SwitchComponent::getValue() const { return mState ? "true" : "false"; }
void SwitchComponent::setValue(const std::string& statestring)
{
if (statestring == "true")
mState = true;
else
mState = false;
mOriginalValue = mState;
onStateChanged();
}
void SwitchComponent::onStateChanged()
{
mImage.setImage(mState ? ":/graphics/on.svg" : ":/graphics/off.svg");
mImage.setResize(mSize);
// Change the color of the switch to reflect the changes.
if (mState == mOriginalValue)
mImage.setColorShift(mColorOriginalValue);
else
mImage.setColorShift(mColorChangedValue);
}
std::vector<HelpPrompt> SwitchComponent::getHelpPrompts()
{
std::vector<HelpPrompt> prompts;
prompts.push_back(HelpPrompt("a", "toggle"));
return prompts;
}