2013-10-01 21:52:30 +00:00
|
|
|
#pragma once
|
2017-10-31 17:12:50 +00:00
|
|
|
#ifndef ES_CORE_COMPONENTS_OPTION_LIST_COMPONENT_H
|
|
|
|
#define ES_CORE_COMPONENTS_OPTION_LIST_COMPONENT_H
|
2013-10-01 21:52:30 +00:00
|
|
|
|
2014-06-20 01:30:09 +00:00
|
|
|
#include "GuiComponent.h"
|
|
|
|
#include "resources/Font.h"
|
|
|
|
#include "Renderer.h"
|
|
|
|
#include "Window.h"
|
|
|
|
#include "components/TextComponent.h"
|
|
|
|
#include "components/ImageComponent.h"
|
|
|
|
#include "components/MenuComponent.h"
|
2014-03-06 01:49:32 +00:00
|
|
|
#include <sstream>
|
2014-06-20 01:30:09 +00:00
|
|
|
#include "Log.h"
|
2013-10-01 21:52:30 +00:00
|
|
|
|
|
|
|
//Used to display a list of options.
|
|
|
|
//Can select one or multiple options.
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
// if !multiSelect
|
|
|
|
// * <- curEntry ->
|
|
|
|
|
|
|
|
// always
|
|
|
|
// * press a -> open full list
|
|
|
|
|
2014-05-31 19:20:14 +00:00
|
|
|
#define CHECKED_PATH ":/checkbox_checked.svg"
|
|
|
|
#define UNCHECKED_PATH ":/checkbox_unchecked.svg"
|
|
|
|
|
2013-10-03 20:58:09 +00:00
|
|
|
template<typename T>
|
2013-10-01 21:52:30 +00:00
|
|
|
class OptionListComponent : public GuiComponent
|
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
private:
|
|
|
|
struct OptionListData
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
std::string name;
|
2013-10-03 20:58:09 +00:00
|
|
|
T object;
|
2014-03-06 01:49:32 +00:00
|
|
|
bool selected;
|
2013-10-03 20:58:09 +00:00
|
|
|
};
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
class OptionListPopup : public GuiComponent
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
private:
|
|
|
|
MenuComponent mMenu;
|
|
|
|
OptionListComponent<T>* mParent;
|
2013-10-06 02:56:06 +00:00
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
public:
|
2014-03-13 19:09:50 +00:00
|
|
|
OptionListPopup(Window* window, OptionListComponent<T>* parent, const std::string& title) : GuiComponent(window),
|
|
|
|
mMenu(window, title.c_str()), mParent(parent)
|
2013-10-12 19:03:32 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
auto font = Font::get(FONT_SIZE_MEDIUM);
|
|
|
|
ComponentListRow row;
|
2014-03-06 19:45:03 +00:00
|
|
|
|
2014-05-29 01:59:11 +00:00
|
|
|
// for select all/none
|
|
|
|
std::vector<ImageComponent*> checkboxes;
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
for(auto it = mParent->mEntries.begin(); it != mParent->mEntries.end(); it++)
|
2013-10-06 02:56:06 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
row.elements.clear();
|
2014-03-15 22:06:16 +00:00
|
|
|
row.addElement(std::make_shared<TextComponent>(mWindow, strToUpper(it->name), font, 0x777777FF), true);
|
2014-03-06 01:49:32 +00:00
|
|
|
|
2014-03-06 19:45:03 +00:00
|
|
|
OptionListData& e = *it;
|
|
|
|
|
|
|
|
if(mParent->mMultiSelect)
|
|
|
|
{
|
|
|
|
// add checkbox
|
|
|
|
auto checkbox = std::make_shared<ImageComponent>(mWindow);
|
2014-05-29 01:59:11 +00:00
|
|
|
checkbox->setImage(it->selected ? CHECKED_PATH : UNCHECKED_PATH);
|
2014-03-22 21:02:25 +00:00
|
|
|
checkbox->setResize(0, font->getLetterHeight());
|
2014-03-06 19:45:03 +00:00
|
|
|
row.addElement(checkbox, false);
|
|
|
|
|
|
|
|
// input handler
|
|
|
|
// update checkbox state & selected value
|
|
|
|
row.makeAcceptInputHandler([this, &e, checkbox]
|
|
|
|
{
|
|
|
|
e.selected = !e.selected;
|
2014-05-29 01:59:11 +00:00
|
|
|
checkbox->setImage(e.selected ? CHECKED_PATH : UNCHECKED_PATH);
|
2014-03-06 19:45:03 +00:00
|
|
|
mParent->onSelectedChanged();
|
|
|
|
});
|
2014-05-29 01:59:11 +00:00
|
|
|
|
|
|
|
// for select all/none
|
|
|
|
checkboxes.push_back(checkbox.get());
|
2014-03-06 19:45:03 +00:00
|
|
|
}else{
|
|
|
|
// input handler for non-multiselect
|
|
|
|
// update selected value and close
|
|
|
|
row.makeAcceptInputHandler([this, &e]
|
|
|
|
{
|
|
|
|
mParent->mEntries.at(mParent->getSelectedId()).selected = false;
|
|
|
|
e.selected = true;
|
|
|
|
mParent->onSelectedChanged();
|
|
|
|
delete this;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// also set cursor to this row if we're not multi-select and this row is selected
|
|
|
|
mMenu.addRow(row, (!mParent->mMultiSelect && it->selected));
|
2013-10-06 02:56:06 +00:00
|
|
|
}
|
2013-10-01 21:52:30 +00:00
|
|
|
|
2014-05-16 21:21:33 +00:00
|
|
|
mMenu.addButton("BACK", "accept", [this] { delete this; });
|
2014-03-13 19:09:50 +00:00
|
|
|
|
2014-05-29 01:59:11 +00:00
|
|
|
if(mParent->mMultiSelect)
|
|
|
|
{
|
|
|
|
mMenu.addButton("SELECT ALL", "select all", [this, checkboxes] {
|
|
|
|
for(unsigned int i = 0; i < mParent->mEntries.size(); i++)
|
|
|
|
{
|
|
|
|
mParent->mEntries.at(i).selected = true;
|
|
|
|
checkboxes.at(i)->setImage(CHECKED_PATH);
|
|
|
|
}
|
|
|
|
mParent->onSelectedChanged();
|
|
|
|
});
|
|
|
|
|
|
|
|
mMenu.addButton("SELECT NONE", "select none", [this, checkboxes] {
|
|
|
|
for(unsigned int i = 0; i < mParent->mEntries.size(); i++)
|
|
|
|
{
|
|
|
|
mParent->mEntries.at(i).selected = false;
|
|
|
|
checkboxes.at(i)->setImage(UNCHECKED_PATH);
|
|
|
|
}
|
|
|
|
mParent->onSelectedChanged();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-03-13 19:09:50 +00:00
|
|
|
mMenu.setPosition((Renderer::getScreenWidth() - mMenu.getSize().x()) / 2, Renderer::getScreenHeight() * 0.15f);
|
2014-03-06 01:49:32 +00:00
|
|
|
addChild(&mMenu);
|
|
|
|
}
|
2013-10-01 21:52:30 +00:00
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
bool input(InputConfig* config, Input input) override
|
|
|
|
{
|
|
|
|
if(config->isMappedTo("b", input) && input.value != 0)
|
2013-10-06 02:56:06 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
delete this;
|
|
|
|
return true;
|
2013-10-06 02:56:06 +00:00
|
|
|
}
|
2013-10-12 19:03:32 +00:00
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
return GuiComponent::input(config, input);
|
2013-10-06 02:56:06 +00:00
|
|
|
}
|
2014-03-15 22:06:16 +00:00
|
|
|
|
|
|
|
std::vector<HelpPrompt> getHelpPrompts() override
|
|
|
|
{
|
2014-05-16 21:21:33 +00:00
|
|
|
auto prompts = mMenu.getHelpPrompts();
|
|
|
|
prompts.push_back(HelpPrompt("b", "back"));
|
|
|
|
return prompts;
|
2014-03-15 22:06:16 +00:00
|
|
|
}
|
2014-03-06 01:49:32 +00:00
|
|
|
};
|
2013-10-06 02:56:06 +00:00
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
public:
|
2017-05-18 10:16:57 +00:00
|
|
|
OptionListComponent(Window* window, const std::string& name, bool multiSelect = false) : GuiComponent(window), mMultiSelect(multiSelect), mName(name),
|
2014-03-06 19:45:03 +00:00
|
|
|
mText(window), mLeftArrow(window), mRightArrow(window)
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-17 00:52:15 +00:00
|
|
|
auto font = Font::get(FONT_SIZE_MEDIUM, FONT_PATH_LIGHT);
|
2014-03-06 01:49:32 +00:00
|
|
|
mText.setFont(font);
|
|
|
|
mText.setColor(0x777777FF);
|
2017-08-15 02:34:34 +00:00
|
|
|
mText.setHorizontalAlignment(ALIGN_CENTER);
|
2014-03-06 01:49:32 +00:00
|
|
|
addChild(&mText);
|
2013-10-03 20:58:09 +00:00
|
|
|
|
2014-03-06 19:45:03 +00:00
|
|
|
if(mMultiSelect)
|
|
|
|
{
|
2014-03-22 18:04:14 +00:00
|
|
|
mRightArrow.setImage(":/arrow.svg");
|
2014-03-06 19:45:03 +00:00
|
|
|
addChild(&mRightArrow);
|
|
|
|
}else{
|
2014-03-22 18:04:14 +00:00
|
|
|
mLeftArrow.setImage(":/option_arrow.svg");
|
2014-03-06 19:45:03 +00:00
|
|
|
mLeftArrow.setFlipX(true);
|
|
|
|
addChild(&mLeftArrow);
|
|
|
|
|
2014-03-22 18:04:14 +00:00
|
|
|
mRightArrow.setImage(":/option_arrow.svg");
|
2014-03-06 19:45:03 +00:00
|
|
|
addChild(&mRightArrow);
|
|
|
|
}
|
|
|
|
|
2014-03-22 18:04:14 +00:00
|
|
|
setSize(mLeftArrow.getSize().x() + mRightArrow.getSize().x(), font->getHeight());
|
2013-10-03 20:58:09 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 19:09:50 +00:00
|
|
|
// handles positioning/resizing of text and arrows
|
2014-03-06 01:49:32 +00:00
|
|
|
void onSizeChanged() override
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-22 21:02:25 +00:00
|
|
|
mLeftArrow.setResize(0, mText.getFont()->getLetterHeight());
|
|
|
|
mRightArrow.setResize(0, mText.getFont()->getLetterHeight());
|
2014-03-06 19:45:03 +00:00
|
|
|
|
|
|
|
if(mSize.x() < (mLeftArrow.getSize().x() + mRightArrow.getSize().x()))
|
|
|
|
LOG(LogWarning) << "OptionListComponent too narrow!";
|
|
|
|
|
2014-03-22 18:04:14 +00:00
|
|
|
mText.setSize(mSize.x() - mLeftArrow.getSize().x() - mRightArrow.getSize().x(), mText.getFont()->getHeight());
|
2014-03-06 19:45:03 +00:00
|
|
|
|
|
|
|
// position
|
|
|
|
mLeftArrow.setPosition(0, (mSize.y() - mLeftArrow.getSize().y()) / 2);
|
|
|
|
mText.setPosition(mLeftArrow.getPosition().x() + mLeftArrow.getSize().x(), (mSize.y() - mText.getSize().y()) / 2);
|
|
|
|
mRightArrow.setPosition(mText.getPosition().x() + mText.getSize().x(), (mSize.y() - mRightArrow.getSize().y()) / 2);
|
2013-10-03 20:58:09 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
bool input(InputConfig* config, Input input) override
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
if(input.value != 0)
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
if(config->isMappedTo("a", input))
|
|
|
|
{
|
|
|
|
open();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if(!mMultiSelect)
|
|
|
|
{
|
|
|
|
if(config->isMappedTo("left", input))
|
|
|
|
{
|
|
|
|
// move selection to previous
|
2014-03-06 19:45:03 +00:00
|
|
|
unsigned int i = getSelectedId();
|
|
|
|
int next = (int)i - 1;
|
|
|
|
if(next < 0)
|
|
|
|
next += mEntries.size();
|
|
|
|
|
|
|
|
mEntries.at(i).selected = false;
|
|
|
|
mEntries.at(next).selected = true;
|
|
|
|
onSelectedChanged();
|
|
|
|
return true;
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
}else if(config->isMappedTo("right", input))
|
|
|
|
{
|
|
|
|
// move selection to next
|
2014-03-06 19:45:03 +00:00
|
|
|
unsigned int i = getSelectedId();
|
|
|
|
int next = (i + 1) % mEntries.size();
|
|
|
|
mEntries.at(i).selected = false;
|
|
|
|
mEntries.at(next).selected = true;
|
|
|
|
onSelectedChanged();
|
|
|
|
return true;
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-03 20:58:09 +00:00
|
|
|
}
|
2014-03-06 01:49:32 +00:00
|
|
|
return GuiComponent::input(config, input);
|
2013-10-03 20:58:09 +00:00
|
|
|
}
|
2013-10-11 00:55:57 +00:00
|
|
|
|
|
|
|
std::vector<T> getSelectedObjects()
|
|
|
|
{
|
|
|
|
std::vector<T> ret;
|
|
|
|
for(auto it = mEntries.begin(); it != mEntries.end(); it++)
|
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
if(it->selected)
|
2013-10-11 00:55:57 +00:00
|
|
|
ret.push_back(it->object);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
T getSelected()
|
2013-10-12 19:03:32 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
assert(mMultiSelect == false);
|
|
|
|
auto selected = getSelectedObjects();
|
|
|
|
assert(selected.size() == 1);
|
|
|
|
return selected.at(0);
|
2013-10-12 19:03:32 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
void add(const std::string& name, const T& obj, bool selected)
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
OptionListData e;
|
|
|
|
e.name = name;
|
|
|
|
e.object = obj;
|
|
|
|
e.selected = selected;
|
2013-10-06 02:56:06 +00:00
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
mEntries.push_back(e);
|
|
|
|
onSelectedChanged();
|
2013-10-03 20:58:09 +00:00
|
|
|
}
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
void selectAll()
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < mEntries.size(); i++)
|
|
|
|
{
|
2017-05-18 10:16:57 +00:00
|
|
|
mEntries.at(i).selected = true;
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
onSelectedChanged();
|
|
|
|
}
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
void selectNone()
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < mEntries.size(); i++)
|
|
|
|
{
|
2017-05-18 10:16:57 +00:00
|
|
|
mEntries.at(i).selected = false;
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
onSelectedChanged();
|
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
private:
|
2014-03-06 19:45:03 +00:00
|
|
|
unsigned int getSelectedId()
|
|
|
|
{
|
|
|
|
assert(mMultiSelect == false);
|
|
|
|
for(unsigned int i = 0; i < mEntries.size(); i++)
|
|
|
|
{
|
|
|
|
if(mEntries.at(i).selected)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(LogWarning) << "OptionListComponent::getSelectedId() - no selected element found, defaulting to 0";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
void open()
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-13 19:09:50 +00:00
|
|
|
mWindow->pushGui(new OptionListPopup(mWindow, this, mName));
|
2013-10-06 02:56:06 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
void onSelectedChanged()
|
2013-10-03 20:58:09 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
if(mMultiSelect)
|
2013-10-26 20:57:46 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
// display # selected
|
|
|
|
std::stringstream ss;
|
2014-03-15 22:06:16 +00:00
|
|
|
ss << getSelectedObjects().size() << " SELECTED";
|
2014-03-06 01:49:32 +00:00
|
|
|
mText.setText(ss.str());
|
2014-03-13 19:09:50 +00:00
|
|
|
mText.setSize(0, mText.getSize().y());
|
2014-03-19 00:55:37 +00:00
|
|
|
setSize(mText.getSize().x() + mRightArrow.getSize().x() + 24, mText.getSize().y());
|
2014-03-13 19:09:50 +00:00
|
|
|
if(mParent) // hack since theres no "on child size changed" callback atm...
|
|
|
|
mParent->onSizeChanged();
|
2014-03-06 01:49:32 +00:00
|
|
|
}else{
|
|
|
|
// display currently selected + l/r cursors
|
|
|
|
for(auto it = mEntries.begin(); it != mEntries.end(); it++)
|
2013-10-26 20:57:46 +00:00
|
|
|
{
|
2014-03-06 01:49:32 +00:00
|
|
|
if(it->selected)
|
2013-10-26 20:57:46 +00:00
|
|
|
{
|
2014-03-15 22:06:16 +00:00
|
|
|
mText.setText(strToUpper(it->name));
|
2014-03-13 19:09:50 +00:00
|
|
|
mText.setSize(0, mText.getSize().y());
|
2014-03-19 00:55:37 +00:00
|
|
|
setSize(mText.getSize().x() + mLeftArrow.getSize().x() + mRightArrow.getSize().x() + 24, mText.getSize().y());
|
2014-03-13 19:09:50 +00:00
|
|
|
if(mParent) // hack since theres no "on child size changed" callback atm...
|
|
|
|
mParent->onSizeChanged();
|
2014-03-06 01:49:32 +00:00
|
|
|
break;
|
2013-10-26 20:57:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-06 01:49:32 +00:00
|
|
|
}
|
2013-10-01 21:52:30 +00:00
|
|
|
|
2014-03-13 19:09:50 +00:00
|
|
|
std::vector<HelpPrompt> getHelpPrompts() override
|
|
|
|
{
|
|
|
|
std::vector<HelpPrompt> prompts;
|
|
|
|
if(!mMultiSelect)
|
|
|
|
prompts.push_back(HelpPrompt("left/right", "change"));
|
2017-05-18 10:16:57 +00:00
|
|
|
|
2014-05-16 21:21:33 +00:00
|
|
|
prompts.push_back(HelpPrompt("a", "select"));
|
2014-03-13 19:09:50 +00:00
|
|
|
return prompts;
|
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
bool mMultiSelect;
|
2013-10-12 19:03:32 +00:00
|
|
|
|
2014-03-13 19:09:50 +00:00
|
|
|
std::string mName;
|
2014-03-06 01:49:32 +00:00
|
|
|
TextComponent mText;
|
2014-03-06 19:45:03 +00:00
|
|
|
ImageComponent mLeftArrow;
|
|
|
|
ImageComponent mRightArrow;
|
2013-10-12 19:03:32 +00:00
|
|
|
|
2014-03-06 01:49:32 +00:00
|
|
|
std::vector<OptionListData> mEntries;
|
2013-10-01 21:52:30 +00:00
|
|
|
};
|
2017-10-31 17:12:50 +00:00
|
|
|
|
|
|
|
#endif // ES_CORE_COMPONENTS_OPTION_LIST_COMPONENT_H
|