2014-06-25 16:29:58 +00:00
|
|
|
#include "guis/GuiMenu.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
|
|
|
|
#include "components/OptionListComponent.h"
|
|
|
|
#include "components/SliderComponent.h"
|
|
|
|
#include "components/SwitchComponent.h"
|
2017-06-12 16:38:59 +00:00
|
|
|
#include "guis/GuiCollectionSystemsOptions.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "guis/GuiDetectDevice.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "guis/GuiGeneralScreensaverOptions.h"
|
|
|
|
#include "guis/GuiMsgBox.h"
|
|
|
|
#include "guis/GuiScraperStart.h"
|
|
|
|
#include "guis/GuiSettings.h"
|
2017-11-18 22:23:56 +00:00
|
|
|
#include "views/UIModeController.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "views/ViewController.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "CollectionSystemManager.h"
|
|
|
|
#include "EmulationStation.h"
|
|
|
|
#include "SystemData.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "VolumeControl.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include <SDL_events.h>
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
GuiMenu::GuiMenu(Window* window) : GuiComponent(window), mMenu(window, "MAIN MENU"), mVersion(window)
|
|
|
|
{
|
2017-11-18 22:23:56 +00:00
|
|
|
bool isFullUI = UIModeController::getInstance()->isUIModeFull();
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
if (isFullUI)
|
|
|
|
addEntry("SCRAPER", 0x777777FF, true, [this] { openScraperSettings(); });
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
addEntry("SOUND SETTINGS", 0x777777FF, true, [this] { openSoundSettings(); });
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
|
|
|
|
if (isFullUI)
|
|
|
|
addEntry("UI SETTINGS", 0x777777FF, true, [this] { openUISettings(); });
|
|
|
|
|
|
|
|
if (isFullUI)
|
|
|
|
addEntry("GAME COLLECTION SETTINGS", 0x777777FF, true, [this] { openCollectionSystemSettings(); });
|
|
|
|
|
|
|
|
if (isFullUI)
|
|
|
|
addEntry("OTHER SETTINGS", 0x777777FF, true, [this] { openOtherSettings(); });
|
|
|
|
|
|
|
|
if (isFullUI)
|
|
|
|
addEntry("CONFIGURE INPUT", 0x777777FF, true, [this] { openConfigInput(); });
|
|
|
|
|
2018-05-10 20:08:04 +00:00
|
|
|
addEntry("QUIT", 0x777777FF, true, [this] {openQuitMenu(); });
|
2017-09-08 14:49:47 +00:00
|
|
|
|
|
|
|
addChild(&mMenu);
|
|
|
|
addVersionInfo();
|
|
|
|
setSize(mMenu.getSize());
|
|
|
|
setPosition((Renderer::getScreenWidth() - mSize.x()) / 2, Renderer::getScreenHeight() * 0.15f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiMenu::openScraperSettings()
|
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "SCRAPER");
|
|
|
|
|
|
|
|
// scrape from
|
|
|
|
auto scraper_list = std::make_shared< OptionListComponent< std::string > >(mWindow, "SCRAPE FROM", false);
|
|
|
|
std::vector<std::string> scrapers = getScraperList();
|
2017-11-11 14:56:22 +00:00
|
|
|
for(auto it = scrapers.cbegin(); it != scrapers.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
scraper_list->add(*it, *it, *it == Settings::getInstance()->getString("Scraper"));
|
|
|
|
|
|
|
|
s->addWithLabel("SCRAPE FROM", scraper_list);
|
|
|
|
s->addSaveFunc([scraper_list] { Settings::getInstance()->setString("Scraper", scraper_list->getSelected()); });
|
|
|
|
|
|
|
|
// scrape ratings
|
|
|
|
auto scrape_ratings = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
scrape_ratings->setState(Settings::getInstance()->getBool("ScrapeRatings"));
|
|
|
|
s->addWithLabel("SCRAPE RATINGS", scrape_ratings);
|
|
|
|
s->addSaveFunc([scrape_ratings] { Settings::getInstance()->setBool("ScrapeRatings", scrape_ratings->getState()); });
|
|
|
|
|
|
|
|
// scrape now
|
|
|
|
ComponentListRow row;
|
2014-06-25 16:29:58 +00:00
|
|
|
auto openScrapeNow = [this] { mWindow->pushGui(new GuiScraperStart(mWindow)); };
|
2017-09-08 14:49:47 +00:00
|
|
|
std::function<void()> openAndSave = openScrapeNow;
|
|
|
|
openAndSave = [s, openAndSave] { s->save(); openAndSave(); };
|
|
|
|
row.makeAcceptInputHandler(openAndSave);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
auto scrape_now = std::make_shared<TextComponent>(mWindow, "SCRAPE NOW", Font::get(FONT_SIZE_MEDIUM), 0x777777FF);
|
|
|
|
auto bracket = makeArrow(mWindow);
|
|
|
|
row.addElement(scrape_now, true);
|
|
|
|
row.addElement(bracket, false);
|
|
|
|
s->addRow(row);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
mWindow->pushGui(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiMenu::openSoundSettings()
|
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "SOUND SETTINGS");
|
2017-06-01 20:08:44 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// volume
|
|
|
|
auto volume = std::make_shared<SliderComponent>(mWindow, 0.f, 100.f, 1.f, "%");
|
|
|
|
volume->setValue((float)VolumeControl::getInstance()->getVolume());
|
|
|
|
s->addWithLabel("SYSTEM VOLUME", volume);
|
2017-11-13 22:16:38 +00:00
|
|
|
s->addSaveFunc([volume] { VolumeControl::getInstance()->setVolume((int)Math::round(volume->getValue())); });
|
2017-09-08 14:49:47 +00:00
|
|
|
|
2017-11-18 22:23:56 +00:00
|
|
|
if (UIModeController::getInstance()->isUIModeFull())
|
2017-09-08 14:49:47 +00:00
|
|
|
{
|
2017-06-01 20:08:44 +00:00
|
|
|
#ifdef _RPI_
|
2017-09-08 14:49:47 +00:00
|
|
|
// volume control device
|
|
|
|
auto vol_dev = std::make_shared< OptionListComponent<std::string> >(mWindow, "AUDIO DEVICE", false);
|
|
|
|
std::vector<std::string> transitions;
|
|
|
|
transitions.push_back("PCM");
|
|
|
|
transitions.push_back("Speaker");
|
|
|
|
transitions.push_back("Master");
|
2017-11-11 14:56:22 +00:00
|
|
|
for(auto it = transitions.cbegin(); it != transitions.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
vol_dev->add(*it, *it, Settings::getInstance()->getString("AudioDevice") == *it);
|
|
|
|
s->addWithLabel("AUDIO DEVICE", vol_dev);
|
|
|
|
s->addSaveFunc([vol_dev] {
|
|
|
|
Settings::getInstance()->setString("AudioDevice", vol_dev->getSelected());
|
|
|
|
VolumeControl::getInstance()->deinit();
|
|
|
|
VolumeControl::getInstance()->init();
|
|
|
|
});
|
2017-06-01 20:08:44 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// disable sounds
|
|
|
|
auto sounds_enabled = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
sounds_enabled->setState(Settings::getInstance()->getBool("EnableSounds"));
|
|
|
|
s->addWithLabel("ENABLE NAVIGATION SOUNDS", sounds_enabled);
|
2017-09-14 03:45:28 +00:00
|
|
|
s->addSaveFunc([sounds_enabled] {
|
|
|
|
if (sounds_enabled->getState()
|
|
|
|
&& !Settings::getInstance()->getBool("EnableSounds")
|
|
|
|
&& PowerSaver::getMode() == PowerSaver::INSTANT)
|
|
|
|
{
|
|
|
|
Settings::getInstance()->setString("PowerSaverMode", "default");
|
|
|
|
PowerSaver::init();
|
|
|
|
}
|
|
|
|
Settings::getInstance()->setBool("EnableSounds", sounds_enabled->getState());
|
|
|
|
});
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
auto video_audio = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
video_audio->setState(Settings::getInstance()->getBool("VideoAudio"));
|
|
|
|
s->addWithLabel("ENABLE VIDEO AUDIO", video_audio);
|
|
|
|
s->addSaveFunc([video_audio] { Settings::getInstance()->setBool("VideoAudio", video_audio->getState()); });
|
2017-06-28 16:50:37 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
#ifdef _RPI_
|
|
|
|
// OMX player Audio Device
|
|
|
|
auto omx_audio_dev = std::make_shared< OptionListComponent<std::string> >(mWindow, "OMX PLAYER AUDIO DEVICE", false);
|
|
|
|
std::vector<std::string> devices;
|
|
|
|
devices.push_back("local");
|
|
|
|
devices.push_back("hdmi");
|
|
|
|
devices.push_back("both");
|
|
|
|
// USB audio
|
|
|
|
devices.push_back("alsa:hw:0,0");
|
|
|
|
devices.push_back("alsa:hw:1,0");
|
2017-11-11 14:56:22 +00:00
|
|
|
for (auto it = devices.cbegin(); it != devices.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
omx_audio_dev->add(*it, *it, Settings::getInstance()->getString("OMXAudioDev") == *it);
|
|
|
|
s->addWithLabel("OMX PLAYER AUDIO DEVICE", omx_audio_dev);
|
|
|
|
s->addSaveFunc([omx_audio_dev] {
|
|
|
|
if (Settings::getInstance()->getString("OMXAudioDev") != omx_audio_dev->getSelected())
|
|
|
|
Settings::getInstance()->setString("OMXAudioDev", omx_audio_dev->getSelected());
|
|
|
|
});
|
|
|
|
#endif
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
mWindow->pushGui(s);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
void GuiMenu::openUISettings()
|
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "UI SETTINGS");
|
|
|
|
|
|
|
|
//UI mode
|
|
|
|
auto UImodeSelection = std::make_shared< OptionListComponent<std::string> >(mWindow, "UI MODE", false);
|
2017-11-18 22:23:56 +00:00
|
|
|
std::vector<std::string> UImodes = UIModeController::getInstance()->getUIModes();
|
2017-11-11 14:56:22 +00:00
|
|
|
for (auto it = UImodes.cbegin(); it != UImodes.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
UImodeSelection->add(*it, *it, Settings::getInstance()->getString("UIMode") == *it);
|
|
|
|
s->addWithLabel("UI MODE", UImodeSelection);
|
|
|
|
Window* window = mWindow;
|
2017-11-09 20:51:46 +00:00
|
|
|
s->addSaveFunc([ UImodeSelection, window]
|
2017-09-08 14:49:47 +00:00
|
|
|
{
|
2017-11-09 20:51:46 +00:00
|
|
|
std::string selectedMode = UImodeSelection->getSelected();
|
|
|
|
if (selectedMode != "Full")
|
|
|
|
{
|
|
|
|
std::string msg = "You are changing the UI to a restricted mode:\n" + selectedMode + "\n";
|
|
|
|
msg += "This will hide most menu-options to prevent changes to the system.\n";
|
|
|
|
msg += "To unlock and return to the full UI, enter this code: \n";
|
2017-11-18 22:23:56 +00:00
|
|
|
msg += "\"" + UIModeController::getInstance()->getFormattedPassKeyStr() + "\"\n\n";
|
2017-11-09 20:51:46 +00:00
|
|
|
msg += "Do you want to proceed?";
|
2017-11-18 22:23:56 +00:00
|
|
|
window->pushGui(new GuiMsgBox(window, msg,
|
|
|
|
"YES", [selectedMode] {
|
|
|
|
LOG(LogDebug) << "Setting UI mode to " << selectedMode;
|
2017-11-09 20:51:46 +00:00
|
|
|
Settings::getInstance()->setString("UIMode", selectedMode);
|
2017-11-18 22:23:56 +00:00
|
|
|
Settings::getInstance()->saveFile();
|
|
|
|
}, "NO",nullptr));
|
2017-11-09 20:51:46 +00:00
|
|
|
}
|
2017-09-08 14:49:47 +00:00
|
|
|
});
|
2017-06-01 20:08:44 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// screensaver
|
|
|
|
ComponentListRow screensaver_row;
|
|
|
|
screensaver_row.elements.clear();
|
|
|
|
screensaver_row.addElement(std::make_shared<TextComponent>(mWindow, "SCREENSAVER SETTINGS", Font::get(FONT_SIZE_MEDIUM), 0x777777FF), true);
|
|
|
|
screensaver_row.addElement(makeArrow(mWindow), false);
|
|
|
|
screensaver_row.makeAcceptInputHandler(std::bind(&GuiMenu::openScreensaverOptions, this));
|
|
|
|
s->addRow(screensaver_row);
|
|
|
|
|
|
|
|
// quick system select (left/right in game list view)
|
|
|
|
auto quick_sys_select = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
quick_sys_select->setState(Settings::getInstance()->getBool("QuickSystemSelect"));
|
|
|
|
s->addWithLabel("QUICK SYSTEM SELECT", quick_sys_select);
|
|
|
|
s->addSaveFunc([quick_sys_select] { Settings::getInstance()->setBool("QuickSystemSelect", quick_sys_select->getState()); });
|
|
|
|
|
|
|
|
// carousel transition option
|
|
|
|
auto move_carousel = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
move_carousel->setState(Settings::getInstance()->getBool("MoveCarousel"));
|
|
|
|
s->addWithLabel("CAROUSEL TRANSITIONS", move_carousel);
|
|
|
|
s->addSaveFunc([move_carousel] {
|
|
|
|
if (move_carousel->getState()
|
|
|
|
&& !Settings::getInstance()->getBool("MoveCarousel")
|
|
|
|
&& PowerSaver::getMode() == PowerSaver::INSTANT)
|
|
|
|
{
|
|
|
|
Settings::getInstance()->setString("PowerSaverMode", "default");
|
|
|
|
PowerSaver::init();
|
|
|
|
}
|
|
|
|
Settings::getInstance()->setBool("MoveCarousel", move_carousel->getState());
|
|
|
|
});
|
2017-06-01 20:08:44 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// transition style
|
|
|
|
auto transition_style = std::make_shared< OptionListComponent<std::string> >(mWindow, "TRANSITION STYLE", false);
|
|
|
|
std::vector<std::string> transitions;
|
|
|
|
transitions.push_back("fade");
|
|
|
|
transitions.push_back("slide");
|
|
|
|
transitions.push_back("instant");
|
2017-11-11 14:56:22 +00:00
|
|
|
for(auto it = transitions.cbegin(); it != transitions.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
transition_style->add(*it, *it, Settings::getInstance()->getString("TransitionStyle") == *it);
|
|
|
|
s->addWithLabel("TRANSITION STYLE", transition_style);
|
|
|
|
s->addSaveFunc([transition_style] {
|
|
|
|
if (Settings::getInstance()->getString("TransitionStyle") == "instant"
|
|
|
|
&& transition_style->getSelected() != "instant"
|
|
|
|
&& PowerSaver::getMode() == PowerSaver::INSTANT)
|
|
|
|
{
|
|
|
|
Settings::getInstance()->setString("PowerSaverMode", "default");
|
|
|
|
PowerSaver::init();
|
|
|
|
}
|
|
|
|
Settings::getInstance()->setString("TransitionStyle", transition_style->getSelected());
|
2014-06-25 16:29:58 +00:00
|
|
|
});
|
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// theme set
|
|
|
|
auto themeSets = ThemeData::getThemeSets();
|
|
|
|
|
|
|
|
if(!themeSets.empty())
|
|
|
|
{
|
2017-11-11 14:56:22 +00:00
|
|
|
std::map<std::string, ThemeSet>::const_iterator selectedSet = themeSets.find(Settings::getInstance()->getString("ThemeSet"));
|
|
|
|
if(selectedSet == themeSets.cend())
|
|
|
|
selectedSet = themeSets.cbegin();
|
2017-09-08 14:49:47 +00:00
|
|
|
|
|
|
|
auto theme_set = std::make_shared< OptionListComponent<std::string> >(mWindow, "THEME SET", false);
|
2017-11-11 14:56:22 +00:00
|
|
|
for(auto it = themeSets.cbegin(); it != themeSets.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
theme_set->add(it->first, it->first, it == selectedSet);
|
|
|
|
s->addWithLabel("THEME SET", theme_set);
|
|
|
|
|
|
|
|
Window* window = mWindow;
|
|
|
|
s->addSaveFunc([window, theme_set]
|
|
|
|
{
|
|
|
|
bool needReload = false;
|
|
|
|
if(Settings::getInstance()->getString("ThemeSet") != theme_set->getSelected())
|
|
|
|
needReload = true;
|
|
|
|
|
|
|
|
Settings::getInstance()->setString("ThemeSet", theme_set->getSelected());
|
|
|
|
|
|
|
|
if(needReload)
|
|
|
|
{
|
|
|
|
CollectionSystemManager::get()->updateSystemsList();
|
2018-03-15 20:46:09 +00:00
|
|
|
ViewController::get()->goToStart();
|
2017-09-08 14:49:47 +00:00
|
|
|
ViewController::get()->reloadAll(); // TODO - replace this with some sort of signal-based implementation
|
|
|
|
}
|
2017-06-12 16:38:59 +00:00
|
|
|
});
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GameList view style
|
|
|
|
auto gamelist_style = std::make_shared< OptionListComponent<std::string> >(mWindow, "GAMELIST VIEW STYLE", false);
|
|
|
|
std::vector<std::string> styles;
|
|
|
|
styles.push_back("automatic");
|
|
|
|
styles.push_back("basic");
|
|
|
|
styles.push_back("detailed");
|
|
|
|
styles.push_back("video");
|
2018-04-17 16:05:33 +00:00
|
|
|
styles.push_back("grid");
|
2018-03-22 07:03:12 +00:00
|
|
|
|
2017-11-11 14:56:22 +00:00
|
|
|
for (auto it = styles.cbegin(); it != styles.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
gamelist_style->add(*it, *it, Settings::getInstance()->getString("GamelistViewStyle") == *it);
|
|
|
|
s->addWithLabel("GAMELIST VIEW STYLE", gamelist_style);
|
|
|
|
s->addSaveFunc([gamelist_style] {
|
|
|
|
bool needReload = false;
|
|
|
|
if (Settings::getInstance()->getString("GamelistViewStyle") != gamelist_style->getSelected())
|
|
|
|
needReload = true;
|
|
|
|
Settings::getInstance()->setString("GamelistViewStyle", gamelist_style->getSelected());
|
|
|
|
if (needReload)
|
|
|
|
ViewController::get()->reloadAll();
|
|
|
|
});
|
2017-08-02 19:56:33 +00:00
|
|
|
|
2017-10-24 15:38:25 +00:00
|
|
|
// Optionally start in selected system
|
|
|
|
auto systemfocus_list = std::make_shared< OptionListComponent<std::string> >(mWindow, "START ON SYSTEM", false);
|
|
|
|
systemfocus_list->add("NONE", "", Settings::getInstance()->getString("StartupSystem") == "");
|
2017-11-11 14:56:22 +00:00
|
|
|
for (auto it = SystemData::sSystemVector.cbegin(); it != SystemData::sSystemVector.cend(); it++)
|
2017-10-24 15:38:25 +00:00
|
|
|
{
|
|
|
|
if ("retropie" != (*it)->getName())
|
|
|
|
{
|
|
|
|
systemfocus_list->add((*it)->getName(), (*it)->getName(), Settings::getInstance()->getString("StartupSystem") == (*it)->getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s->addWithLabel("START ON SYSTEM", systemfocus_list);
|
|
|
|
s->addSaveFunc([systemfocus_list] {
|
|
|
|
Settings::getInstance()->setString("StartupSystem", systemfocus_list->getSelected());
|
|
|
|
});
|
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// show help
|
|
|
|
auto show_help = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
show_help->setState(Settings::getInstance()->getBool("ShowHelpPrompts"));
|
|
|
|
s->addWithLabel("ON-SCREEN HELP", show_help);
|
|
|
|
s->addSaveFunc([show_help] { Settings::getInstance()->setBool("ShowHelpPrompts", show_help->getState()); });
|
|
|
|
|
2018-05-10 20:08:04 +00:00
|
|
|
// enable filters (ForceDisableFilters)
|
|
|
|
auto enable_filter = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
enable_filter->setState(!Settings::getInstance()->getBool("ForceDisableFilters"));
|
|
|
|
s->addWithLabel("ENABLE FILTERS", enable_filter);
|
|
|
|
s->addSaveFunc([enable_filter] {
|
|
|
|
bool filter_is_enabled = !Settings::getInstance()->getBool("ForceDisableFilters");
|
|
|
|
Settings::getInstance()->setBool("ForceDisableFilters", !enable_filter->getState());
|
|
|
|
if (enable_filter->getState() != filter_is_enabled) ViewController::get()->ReloadAndGoToStart();
|
|
|
|
});
|
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
mWindow->pushGui(s);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiMenu::openOtherSettings()
|
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "OTHER SETTINGS");
|
|
|
|
|
|
|
|
// maximum vram
|
|
|
|
auto max_vram = std::make_shared<SliderComponent>(mWindow, 0.f, 1000.f, 10.f, "Mb");
|
|
|
|
max_vram->setValue((float)(Settings::getInstance()->getInt("MaxVRAM")));
|
|
|
|
s->addWithLabel("VRAM LIMIT", max_vram);
|
2017-11-13 22:16:38 +00:00
|
|
|
s->addSaveFunc([max_vram] { Settings::getInstance()->setInt("MaxVRAM", (int)Math::round(max_vram->getValue())); });
|
2017-09-08 14:49:47 +00:00
|
|
|
|
|
|
|
// power saver
|
|
|
|
auto power_saver = std::make_shared< OptionListComponent<std::string> >(mWindow, "POWER SAVER MODES", false);
|
|
|
|
std::vector<std::string> modes;
|
|
|
|
modes.push_back("disabled");
|
|
|
|
modes.push_back("default");
|
|
|
|
modes.push_back("enhanced");
|
|
|
|
modes.push_back("instant");
|
2017-11-11 14:56:22 +00:00
|
|
|
for (auto it = modes.cbegin(); it != modes.cend(); it++)
|
2017-09-08 14:49:47 +00:00
|
|
|
power_saver->add(*it, *it, Settings::getInstance()->getString("PowerSaverMode") == *it);
|
|
|
|
s->addWithLabel("POWER SAVER MODES", power_saver);
|
|
|
|
s->addSaveFunc([this, power_saver] {
|
|
|
|
if (Settings::getInstance()->getString("PowerSaverMode") != "instant" && power_saver->getSelected() == "instant") {
|
|
|
|
Settings::getInstance()->setString("TransitionStyle", "instant");
|
|
|
|
Settings::getInstance()->setBool("MoveCarousel", false);
|
2017-09-14 03:45:28 +00:00
|
|
|
Settings::getInstance()->setBool("EnableSounds", false);
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
|
|
|
Settings::getInstance()->setString("PowerSaverMode", power_saver->getSelected());
|
|
|
|
PowerSaver::init();
|
|
|
|
});
|
2017-08-02 19:56:33 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// gamelists
|
|
|
|
auto save_gamelists = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
save_gamelists->setState(Settings::getInstance()->getBool("SaveGamelistsOnExit"));
|
|
|
|
s->addWithLabel("SAVE METADATA ON EXIT", save_gamelists);
|
|
|
|
s->addSaveFunc([save_gamelists] { Settings::getInstance()->setBool("SaveGamelistsOnExit", save_gamelists->getState()); });
|
2017-06-01 20:08:44 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
auto parse_gamelists = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
parse_gamelists->setState(Settings::getInstance()->getBool("ParseGamelistOnly"));
|
|
|
|
s->addWithLabel("PARSE GAMESLISTS ONLY", parse_gamelists);
|
|
|
|
s->addSaveFunc([parse_gamelists] { Settings::getInstance()->setBool("ParseGamelistOnly", parse_gamelists->getState()); });
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2017-07-24 23:12:40 +00:00
|
|
|
#ifndef WIN32
|
2017-09-08 14:49:47 +00:00
|
|
|
// hidden files
|
|
|
|
auto hidden_files = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
hidden_files->setState(Settings::getInstance()->getBool("ShowHiddenFiles"));
|
|
|
|
s->addWithLabel("SHOW HIDDEN FILES", hidden_files);
|
|
|
|
s->addSaveFunc([hidden_files] { Settings::getInstance()->setBool("ShowHiddenFiles", hidden_files->getState()); });
|
2017-07-24 23:12:40 +00:00
|
|
|
#endif
|
|
|
|
|
2017-03-25 17:02:28 +00:00
|
|
|
#ifdef _RPI_
|
2017-09-08 14:49:47 +00:00
|
|
|
// Video Player - VideoOmxPlayer
|
|
|
|
auto omx_player = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
omx_player->setState(Settings::getInstance()->getBool("VideoOmxPlayer"));
|
|
|
|
s->addWithLabel("USE OMX PLAYER (HW ACCELERATED)", omx_player);
|
|
|
|
s->addSaveFunc([omx_player]
|
|
|
|
{
|
|
|
|
// need to reload all views to re-create the right video components
|
|
|
|
bool needReload = false;
|
|
|
|
if(Settings::getInstance()->getBool("VideoOmxPlayer") != omx_player->getState())
|
|
|
|
needReload = true;
|
|
|
|
|
|
|
|
Settings::getInstance()->setBool("VideoOmxPlayer", omx_player->getState());
|
|
|
|
|
|
|
|
if(needReload)
|
|
|
|
ViewController::get()->reloadAll();
|
|
|
|
});
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
#endif
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
// framerate
|
|
|
|
auto framerate = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
framerate->setState(Settings::getInstance()->getBool("DrawFramerate"));
|
|
|
|
s->addWithLabel("SHOW FRAMERATE", framerate);
|
|
|
|
s->addSaveFunc([framerate] { Settings::getInstance()->setBool("DrawFramerate", framerate->getState()); });
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2016-03-26 03:31:13 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
mWindow->pushGui(s);
|
2017-06-01 20:08:44 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
2017-06-01 20:08:44 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
void GuiMenu::openConfigInput()
|
|
|
|
{
|
|
|
|
Window* window = mWindow;
|
|
|
|
window->pushGui(new GuiMsgBox(window, "ARE YOU SURE YOU WANT TO CONFIGURE INPUT?", "YES",
|
|
|
|
[window] {
|
|
|
|
window->pushGui(new GuiDetectDevice(window, false, nullptr));
|
|
|
|
}, "NO", nullptr)
|
|
|
|
);
|
2016-03-26 01:57:05 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
void GuiMenu::openQuitMenu()
|
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "QUIT");
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
Window* window = mWindow;
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
ComponentListRow row;
|
2017-11-18 22:23:56 +00:00
|
|
|
if (UIModeController::getInstance()->isUIModeFull())
|
2017-09-08 14:49:47 +00:00
|
|
|
{
|
|
|
|
row.makeAcceptInputHandler([window] {
|
|
|
|
window->pushGui(new GuiMsgBox(window, "REALLY RESTART?", "YES",
|
2016-01-17 04:24:28 +00:00
|
|
|
[] {
|
2017-09-08 14:49:47 +00:00
|
|
|
if(quitES("/tmp/es-restart") != 0)
|
|
|
|
LOG(LogWarning) << "Restart terminated with non-zero result!";
|
|
|
|
}, "NO", nullptr));
|
|
|
|
});
|
|
|
|
row.addElement(std::make_shared<TextComponent>(window, "RESTART EMULATIONSTATION", Font::get(FONT_SIZE_MEDIUM), 0x777777FF), true);
|
|
|
|
s->addRow(row);
|
2016-01-17 04:24:28 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
|
|
|
|
if(Settings::getInstance()->getBool("ShowExit"))
|
|
|
|
{
|
2014-06-25 16:29:58 +00:00
|
|
|
row.elements.clear();
|
|
|
|
row.makeAcceptInputHandler([window] {
|
2017-09-08 14:49:47 +00:00
|
|
|
window->pushGui(new GuiMsgBox(window, "REALLY QUIT?", "YES",
|
|
|
|
[] {
|
|
|
|
SDL_Event ev;
|
|
|
|
ev.type = SDL_QUIT;
|
|
|
|
SDL_PushEvent(&ev);
|
2014-06-25 16:29:58 +00:00
|
|
|
}, "NO", nullptr));
|
|
|
|
});
|
2017-09-08 14:49:47 +00:00
|
|
|
row.addElement(std::make_shared<TextComponent>(window, "QUIT EMULATIONSTATION", Font::get(FONT_SIZE_MEDIUM), 0x777777FF), true);
|
2014-06-25 16:29:58 +00:00
|
|
|
s->addRow(row);
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
row.elements.clear();
|
|
|
|
row.makeAcceptInputHandler([window] {
|
|
|
|
window->pushGui(new GuiMsgBox(window, "REALLY RESTART?", "YES",
|
|
|
|
[] {
|
2017-09-08 13:20:07 +00:00
|
|
|
if (quitES("/tmp/es-sysrestart") != 0)
|
2017-09-08 14:49:47 +00:00
|
|
|
LOG(LogWarning) << "Restart terminated with non-zero result!";
|
|
|
|
}, "NO", nullptr));
|
2014-06-25 16:29:58 +00:00
|
|
|
});
|
2017-09-08 14:49:47 +00:00
|
|
|
row.addElement(std::make_shared<TextComponent>(window, "RESTART SYSTEM", Font::get(FONT_SIZE_MEDIUM), 0x777777FF), true);
|
|
|
|
s->addRow(row);
|
|
|
|
|
|
|
|
row.elements.clear();
|
|
|
|
row.makeAcceptInputHandler([window] {
|
|
|
|
window->pushGui(new GuiMsgBox(window, "REALLY SHUTDOWN?", "YES",
|
|
|
|
[] {
|
|
|
|
if (quitES("/tmp/es-shutdown") != 0)
|
|
|
|
LOG(LogWarning) << "Shutdown terminated with non-zero result!";
|
|
|
|
}, "NO", nullptr));
|
|
|
|
});
|
|
|
|
row.addElement(std::make_shared<TextComponent>(window, "SHUTDOWN SYSTEM", Font::get(FONT_SIZE_MEDIUM), 0x777777FF), true);
|
|
|
|
s->addRow(row);
|
|
|
|
|
|
|
|
mWindow->pushGui(s);
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
void GuiMenu::addVersionInfo()
|
|
|
|
{
|
2018-02-08 17:28:39 +00:00
|
|
|
std::string buildDate = (Settings::getInstance()->getBool("Debug") ? std::string( " (" + Utils::String::toUpper(PROGRAM_BUILT_STRING) + ")") : (""));
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
mVersion.setFont(Font::get(FONT_SIZE_SMALL));
|
2017-07-20 07:07:02 +00:00
|
|
|
mVersion.setColor(0x5E5E5EFF);
|
2018-02-08 17:28:39 +00:00
|
|
|
mVersion.setText("EMULATIONSTATION V" + Utils::String::toUpper(PROGRAM_VERSION_STRING) + buildDate);
|
2017-08-15 02:34:34 +00:00
|
|
|
mVersion.setHorizontalAlignment(ALIGN_CENTER);
|
2014-06-25 16:29:58 +00:00
|
|
|
addChild(&mVersion);
|
|
|
|
}
|
|
|
|
|
2017-06-01 20:08:44 +00:00
|
|
|
void GuiMenu::openScreensaverOptions() {
|
2017-09-09 03:45:50 +00:00
|
|
|
mWindow->pushGui(new GuiGeneralScreensaverOptions(mWindow, "SCREENSAVER SETTINGS"));
|
2017-06-12 16:38:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GuiMenu::openCollectionSystemSettings() {
|
|
|
|
mWindow->pushGui(new GuiCollectionSystemsOptions(mWindow));
|
2017-06-01 20:08:44 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
void GuiMenu::onSizeChanged()
|
|
|
|
{
|
|
|
|
mVersion.setSize(mSize.x(), 0);
|
|
|
|
mVersion.setPosition(0, mSize.y() - mVersion.getSize().y());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiMenu::addEntry(const char* name, unsigned int color, bool add_arrow, const std::function<void()>& func)
|
|
|
|
{
|
|
|
|
std::shared_ptr<Font> font = Font::get(FONT_SIZE_MEDIUM);
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
// populate the list
|
|
|
|
ComponentListRow row;
|
|
|
|
row.addElement(std::make_shared<TextComponent>(mWindow, name, font, color), true);
|
|
|
|
|
|
|
|
if(add_arrow)
|
|
|
|
{
|
|
|
|
std::shared_ptr<ImageComponent> bracket = makeArrow(mWindow);
|
|
|
|
row.addElement(bracket, false);
|
|
|
|
}
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
row.makeAcceptInputHandler(func);
|
|
|
|
|
|
|
|
mMenu.addRow(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GuiMenu::input(InputConfig* config, Input input)
|
|
|
|
{
|
|
|
|
if(GuiComponent::input(config, input))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if((config->isMappedTo("b", input) || config->isMappedTo("start", input)) && input.value != 0)
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-28 18:13:00 +00:00
|
|
|
HelpStyle GuiMenu::getHelpStyle()
|
|
|
|
{
|
|
|
|
HelpStyle style = HelpStyle();
|
|
|
|
style.applyTheme(ViewController::get()->getState().getSystem()->getTheme(), "system");
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
std::vector<HelpPrompt> GuiMenu::getHelpPrompts()
|
|
|
|
{
|
|
|
|
std::vector<HelpPrompt> prompts;
|
|
|
|
prompts.push_back(HelpPrompt("up/down", "choose"));
|
|
|
|
prompts.push_back(HelpPrompt("a", "select"));
|
|
|
|
prompts.push_back(HelpPrompt("start", "close"));
|
|
|
|
return prompts;
|
|
|
|
}
|