2013-08-22 20:29:50 +00:00
|
|
|
#include "ButtonComponent.h"
|
|
|
|
#include "../Renderer.h"
|
|
|
|
#include "../Window.h"
|
|
|
|
|
2013-08-23 02:41:40 +00:00
|
|
|
ButtonComponent::ButtonComponent(Window* window) : GuiComponent(window),
|
2013-09-07 22:43:36 +00:00
|
|
|
mBox(window, ":/button.png"),
|
|
|
|
mFocused(false),
|
2014-03-08 17:48:47 +00:00
|
|
|
mTextColorFocused(0xFFFFFFFF), mTextColorUnfocused(0x777777FF)
|
2013-08-22 20:29:50 +00:00
|
|
|
{
|
|
|
|
setSize(64, 48);
|
|
|
|
}
|
|
|
|
|
2013-08-23 02:41:40 +00:00
|
|
|
void ButtonComponent::onSizeChanged()
|
|
|
|
{
|
2014-03-08 17:48:47 +00:00
|
|
|
mBox.fitTo(mSize, Eigen::Vector3f::Zero(), Eigen::Vector2f(-32, -32));
|
2013-08-23 02:41:40 +00:00
|
|
|
}
|
|
|
|
|
2013-08-22 20:29:50 +00:00
|
|
|
void ButtonComponent::setPressedFunc(std::function<void()> f)
|
|
|
|
{
|
|
|
|
mPressedFunc = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ButtonComponent::input(InputConfig* config, Input input)
|
|
|
|
{
|
2013-09-19 23:41:14 +00:00
|
|
|
if(config->isMappedTo("a", input) && input.value != 0)
|
2013-08-22 20:29:50 +00:00
|
|
|
{
|
2013-08-23 17:21:22 +00:00
|
|
|
if(mPressedFunc)
|
|
|
|
mPressedFunc();
|
2013-08-22 20:29:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GuiComponent::input(config, input);
|
|
|
|
}
|
|
|
|
|
2014-03-08 17:48:47 +00:00
|
|
|
void ButtonComponent::setText(const std::string& text, const std::string& helpText)
|
2013-08-22 20:29:50 +00:00
|
|
|
{
|
|
|
|
mText = text;
|
2014-01-25 23:34:29 +00:00
|
|
|
mHelpText = helpText;
|
2014-03-08 17:48:47 +00:00
|
|
|
|
2013-08-22 20:29:50 +00:00
|
|
|
std::shared_ptr<Font> f = getFont();
|
2013-09-07 22:43:36 +00:00
|
|
|
mTextCache = std::unique_ptr<TextCache>(f->buildTextCache(mText, 0, 0, getCurTextColor()));
|
2013-08-22 20:29:50 +00:00
|
|
|
|
|
|
|
setSize(mTextCache->metrics.size + Eigen::Vector2f(12, 12));
|
2014-01-25 23:34:29 +00:00
|
|
|
|
|
|
|
updateHelpPrompts();
|
2013-08-22 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
2013-09-07 22:43:36 +00:00
|
|
|
void ButtonComponent::onFocusGained()
|
|
|
|
{
|
|
|
|
mFocused = true;
|
2014-03-08 17:48:47 +00:00
|
|
|
mBox.setImagePath(":/button_filled.png");
|
2013-09-07 22:43:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ButtonComponent::onFocusLost()
|
|
|
|
{
|
|
|
|
mFocused = false;
|
2014-03-08 17:48:47 +00:00
|
|
|
mBox.setImagePath(":/button.png");
|
2013-09-07 22:43:36 +00:00
|
|
|
}
|
|
|
|
|
2013-08-22 20:29:50 +00:00
|
|
|
void ButtonComponent::render(const Eigen::Affine3f& parentTrans)
|
|
|
|
{
|
|
|
|
Eigen::Affine3f trans = parentTrans * getTransform();
|
|
|
|
|
2013-08-23 02:41:40 +00:00
|
|
|
mBox.render(trans);
|
|
|
|
|
2013-08-22 20:29:50 +00:00
|
|
|
if(mTextCache)
|
|
|
|
{
|
|
|
|
Eigen::Vector3f centerOffset((mSize.x() - mTextCache->metrics.size.x()) / 2, (mSize.y() - mTextCache->metrics.size.y()) / 2, 0);
|
|
|
|
trans = trans.translate(centerOffset);
|
|
|
|
|
|
|
|
Renderer::setMatrix(trans);
|
2013-09-07 22:43:36 +00:00
|
|
|
mTextCache->setColor(getCurTextColor());
|
2013-08-22 20:29:50 +00:00
|
|
|
getFont()->renderTextCache(mTextCache.get());
|
|
|
|
trans = trans.translate(-centerOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderChildren(trans);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Font> ButtonComponent::getFont()
|
|
|
|
{
|
2013-10-04 23:09:54 +00:00
|
|
|
return Font::get(FONT_SIZE_SMALL);
|
2013-08-22 20:29:50 +00:00
|
|
|
}
|
2013-09-07 22:43:36 +00:00
|
|
|
|
|
|
|
unsigned int ButtonComponent::getCurTextColor() const
|
|
|
|
{
|
|
|
|
if(!mFocused)
|
|
|
|
return mTextColorUnfocused;
|
|
|
|
else
|
|
|
|
return mTextColorFocused;
|
|
|
|
}
|
2014-01-25 23:34:29 +00:00
|
|
|
|
|
|
|
std::vector<HelpPrompt> ButtonComponent::getHelpPrompts()
|
|
|
|
{
|
|
|
|
std::vector<HelpPrompt> prompts;
|
|
|
|
prompts.push_back(HelpPrompt("a", mHelpText.empty() ? mText.c_str() : mHelpText.c_str()));
|
|
|
|
return prompts;
|
|
|
|
}
|