2014-03-15 17:18:50 +00:00
|
|
|
#include "GuiMsgBox.h"
|
|
|
|
#include "../Renderer.h"
|
|
|
|
#include "../components/TextComponent.h"
|
|
|
|
#include "../components/ButtonComponent.h"
|
|
|
|
#include "../components/MenuComponent.h" // for makeButtonGrid
|
2014-03-15 22:06:16 +00:00
|
|
|
#include "../Util.h"
|
2014-03-15 17:18:50 +00:00
|
|
|
|
2014-03-29 01:58:45 +00:00
|
|
|
#define HORIZONTAL_PADDING_PX 20
|
|
|
|
|
2014-03-15 17:18:50 +00:00
|
|
|
GuiMsgBox::GuiMsgBox(Window* window, const std::string& text,
|
|
|
|
const std::string& name1, const std::function<void()>& func1,
|
|
|
|
const std::string& name2, const std::function<void()>& func2,
|
|
|
|
const std::string& name3, const std::function<void()>& func3) : GuiComponent(window),
|
|
|
|
mBackground(window, ":/frame.png"), mGrid(window, Eigen::Vector2i(1, 2))
|
|
|
|
{
|
|
|
|
float width = Renderer::getScreenWidth() * 0.6f; // max width
|
|
|
|
float minWidth = Renderer::getScreenWidth() * 0.3f; // minimum width
|
|
|
|
|
2014-05-01 19:47:33 +00:00
|
|
|
mMsg = std::make_shared<TextComponent>(mWindow, text, Font::get(FONT_SIZE_MEDIUM), 0x777777FF, ALIGN_CENTER);
|
2014-03-29 01:58:45 +00:00
|
|
|
mGrid.setEntry(mMsg, Eigen::Vector2i(0, 0), false, false);
|
|
|
|
|
2014-03-15 17:18:50 +00:00
|
|
|
// create the buttons
|
|
|
|
mButtons.push_back(std::make_shared<ButtonComponent>(mWindow, name1, name1, std::bind(&GuiMsgBox::deleteMeAndCall, this, func1)));
|
|
|
|
if(!name2.empty())
|
|
|
|
mButtons.push_back(std::make_shared<ButtonComponent>(mWindow, name2, name3, std::bind(&GuiMsgBox::deleteMeAndCall, this, func2)));
|
|
|
|
if(!name3.empty())
|
|
|
|
mButtons.push_back(std::make_shared<ButtonComponent>(mWindow, name3, name3, std::bind(&GuiMsgBox::deleteMeAndCall, this, func3)));
|
|
|
|
|
2014-03-15 22:06:16 +00:00
|
|
|
// set accelerator automatically (button to press when "b" is pressed)
|
|
|
|
if(mButtons.size() == 1)
|
|
|
|
{
|
|
|
|
mAcceleratorFunc = mButtons.front()->getPressedFunc();
|
|
|
|
}else{
|
|
|
|
for(auto it = mButtons.begin(); it != mButtons.end(); it++)
|
|
|
|
{
|
|
|
|
if(strToUpper((*it)->getText()) == "OK" || strToUpper((*it)->getText()) == "NO")
|
|
|
|
{
|
|
|
|
mAcceleratorFunc = (*it)->getPressedFunc();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-15 17:18:50 +00:00
|
|
|
// put the buttons into a ComponentGrid
|
|
|
|
mButtonGrid = makeButtonGrid(mWindow, mButtons);
|
2014-03-15 18:39:19 +00:00
|
|
|
mGrid.setEntry(mButtonGrid, Eigen::Vector2i(0, 1), true, false, Eigen::Vector2i(1, 1), GridFlags::BORDER_TOP);
|
2014-03-15 17:18:50 +00:00
|
|
|
|
2014-03-29 01:58:45 +00:00
|
|
|
// decide final width
|
|
|
|
if(mMsg->getSize().x() < width && mButtonGrid->getSize().x() < width)
|
2014-03-15 17:18:50 +00:00
|
|
|
{
|
2014-03-29 01:58:45 +00:00
|
|
|
// mMsg and buttons are narrower than width
|
|
|
|
width = std::max(mButtonGrid->getSize().x(), mMsg->getSize().x());
|
|
|
|
width = std::max(width, minWidth);
|
2014-03-15 17:18:50 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 01:58:45 +00:00
|
|
|
// now that we know width, we can find height
|
|
|
|
mMsg->setSize(width, 0); // mMsg->getSize.y() now returns the proper length
|
2014-05-01 16:37:40 +00:00
|
|
|
const float msgHeight = std::max(Font::get(FONT_SIZE_LARGE)->getHeight(), mMsg->getSize().y()*1.225f);
|
2014-03-29 01:58:45 +00:00
|
|
|
setSize(width + HORIZONTAL_PADDING_PX*2, msgHeight + mButtonGrid->getSize().y());
|
2014-03-15 17:18:50 +00:00
|
|
|
|
|
|
|
// center for good measure
|
|
|
|
setPosition((Renderer::getScreenWidth() - mSize.x()) / 2.0f, (Renderer::getScreenHeight() - mSize.y()) / 2.0f);
|
|
|
|
|
|
|
|
addChild(&mBackground);
|
|
|
|
addChild(&mGrid);
|
|
|
|
}
|
|
|
|
|
2014-03-15 22:06:16 +00:00
|
|
|
bool GuiMsgBox::input(InputConfig* config, Input input)
|
|
|
|
{
|
|
|
|
if(mAcceleratorFunc && config->isMappedTo("b", input) && input.value != 0)
|
|
|
|
{
|
|
|
|
mAcceleratorFunc();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GuiComponent::input(config, input);
|
|
|
|
}
|
|
|
|
|
2014-03-15 17:18:50 +00:00
|
|
|
void GuiMsgBox::onSizeChanged()
|
|
|
|
{
|
|
|
|
mGrid.setSize(mSize);
|
2014-03-21 16:54:48 +00:00
|
|
|
mGrid.setRowHeightPerc(1, mButtonGrid->getSize().y() / mSize.y());
|
2014-03-29 01:58:45 +00:00
|
|
|
|
|
|
|
// update messagebox size
|
|
|
|
mMsg->setSize(mSize.x() - HORIZONTAL_PADDING_PX*2, mGrid.getRowHeight(0));
|
|
|
|
mGrid.onSizeChanged();
|
|
|
|
|
|
|
|
mBackground.fitTo(mSize, Eigen::Vector3f::Zero(), Eigen::Vector2f(-32, -32));
|
2014-03-15 17:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GuiMsgBox::deleteMeAndCall(const std::function<void()>& func)
|
|
|
|
{
|
|
|
|
if(func)
|
|
|
|
func();
|
|
|
|
|
|
|
|
delete this;
|
|
|
|
}
|
2014-03-24 01:33:27 +00:00
|
|
|
|
|
|
|
std::vector<HelpPrompt> GuiMsgBox::getHelpPrompts()
|
|
|
|
{
|
|
|
|
return mGrid.getHelpPrompts();
|
|
|
|
}
|