2020-09-15 20:57:54 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
2020-09-15 20:57:54 +00:00
|
|
|
// EmulationStation Desktop Edition
|
2020-06-21 12:25:28 +00:00
|
|
|
// GuiMenu.cpp
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
2020-06-21 12:25:28 +00:00
|
|
|
// Main menu.
|
|
|
|
// Some submenus are covered in separate source files.
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "guis/GuiMenu.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#include "CollectionSystemsManager.h"
|
|
|
|
#include "EmulationStation.h"
|
|
|
|
#include "FileFilterIndex.h"
|
|
|
|
#include "FileSorts.h"
|
|
|
|
#include "Platform.h"
|
|
|
|
#include "Scripting.h"
|
|
|
|
#include "SystemData.h"
|
|
|
|
#include "VolumeControl.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "components/OptionListComponent.h"
|
|
|
|
#include "components/SliderComponent.h"
|
|
|
|
#include "components/SwitchComponent.h"
|
2021-08-22 13:26:38 +00:00
|
|
|
#include "guis/GuiAlternativeEmulators.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"
|
2021-05-16 11:12:31 +00:00
|
|
|
#include "guis/GuiMediaViewerOptions.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "guis/GuiMsgBox.h"
|
2020-06-06 11:10:33 +00:00
|
|
|
#include "guis/GuiScraperMenu.h"
|
2021-05-16 11:12:31 +00:00
|
|
|
#include "guis/GuiScreensaverOptions.h"
|
2021-09-17 20:23:41 +00:00
|
|
|
#include "guis/GuiTextEditKeyboardPopup.h"
|
|
|
|
#include "guis/GuiTextEditPopup.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"
|
2021-07-07 18:03:42 +00:00
|
|
|
#include "views/gamelist/IGameListView.h"
|
2020-06-26 16:03:55 +00:00
|
|
|
|
|
|
|
#include <SDL2/SDL_events.h>
|
2021-07-07 18:03:42 +00:00
|
|
|
#include <algorithm>
|
2020-06-26 16:03:55 +00:00
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
GuiMenu::GuiMenu(Window* window)
|
|
|
|
: GuiComponent(window)
|
|
|
|
, mMenu(window, "MAIN MENU")
|
|
|
|
, mVersion(window)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
bool isFullUI = UIModeController::getInstance()->isUIModeFull();
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (isFullUI)
|
2021-05-22 20:48:44 +00:00
|
|
|
addEntry("SCRAPER", 0x777777FF, true, [this] { openScraperOptions(); });
|
2020-06-06 11:10:33 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (isFullUI)
|
2021-05-22 20:48:44 +00:00
|
|
|
addEntry("UI SETTINGS", 0x777777FF, true, [this] { openUIOptions(); });
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2021-05-22 20:48:44 +00:00
|
|
|
addEntry("SOUND SETTINGS", 0x777777FF, true, [this] { openSoundOptions(); });
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2021-05-23 08:35:59 +00:00
|
|
|
if (isFullUI)
|
2021-07-07 18:03:42 +00:00
|
|
|
addEntry("INPUT DEVICE SETTINGS", 0x777777FF, true, [this] { openInputDeviceOptions(); });
|
2021-05-23 08:35:59 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (isFullUI)
|
2021-07-07 18:03:42 +00:00
|
|
|
addEntry("GAME COLLECTION SETTINGS", 0x777777FF, true,
|
|
|
|
[this] { openCollectionSystemOptions(); });
|
2017-09-08 14:49:47 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (isFullUI)
|
2021-05-22 20:48:44 +00:00
|
|
|
addEntry("OTHER SETTINGS", 0x777777FF, true, [this] { openOtherOptions(); });
|
2017-09-08 14:49:47 +00:00
|
|
|
|
2021-06-21 20:15:27 +00:00
|
|
|
// TEMPORARY - disabled for now, will be used in the future.
|
2021-07-07 18:03:42 +00:00
|
|
|
// if (isFullUI)
|
|
|
|
// addEntry("UTILITIES", 0x777777FF, true, [this] {
|
|
|
|
// openUtilitiesMenu(); });
|
2021-05-23 09:03:56 +00:00
|
|
|
|
2020-12-17 22:45:29 +00:00
|
|
|
if (!Settings::getInstance()->getBool("ForceKiosk") &&
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("UIMode") != "kiosk") {
|
2020-12-17 22:45:29 +00:00
|
|
|
if (Settings::getInstance()->getBool("ShowQuitMenu"))
|
2021-07-07 18:03:42 +00:00
|
|
|
addEntry("QUIT", 0x777777FF, true, [this] { openQuitMenu(); });
|
2020-12-17 22:45:29 +00:00
|
|
|
else
|
2021-07-07 18:03:42 +00:00
|
|
|
addEntry("QUIT EMULATIONSTATION", 0x777777FF, false, [this] { openQuitMenu(); });
|
2020-12-17 22:45:29 +00:00
|
|
|
}
|
2017-09-08 14:49:47 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
addChild(&mMenu);
|
|
|
|
addVersionInfo();
|
|
|
|
setSize(mMenu.getSize());
|
2021-08-16 16:25:01 +00:00
|
|
|
setPosition((Renderer::getScreenWidth() - mSize.x) / 2.0f, Renderer::getScreenHeight() * 0.13f);
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
|
|
|
|
2020-09-15 20:57:54 +00:00
|
|
|
GuiMenu::~GuiMenu()
|
|
|
|
{
|
|
|
|
// This is required for the situation where scrolling started just before the menu
|
|
|
|
// was openened. Without this, the scrolling would run until manually stopped after
|
|
|
|
// the menu has been closed.
|
|
|
|
ViewController::get()->stopScrolling();
|
|
|
|
}
|
|
|
|
|
2021-08-22 12:29:43 +00:00
|
|
|
void GuiMenu::openScraperOptions()
|
|
|
|
{
|
|
|
|
// Open the scraper menu.
|
|
|
|
mWindow->pushGui(new GuiScraperMenu(mWindow, "SCRAPER"));
|
|
|
|
}
|
2017-09-08 14:49:47 +00:00
|
|
|
|
2021-05-22 20:48:44 +00:00
|
|
|
void GuiMenu::openUIOptions()
|
2017-09-08 14:49:47 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
auto s = new GuiSettings(mWindow, "UI SETTINGS");
|
|
|
|
|
|
|
|
// Optionally start in selected system/gamelist.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto startup_system = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "GAMELIST ON STARTUP", false);
|
2020-11-05 17:18:11 +00:00
|
|
|
startup_system->add("NONE", "", Settings::getInstance()->getString("StartupSystem") == "");
|
2021-10-09 11:09:14 +00:00
|
|
|
for (auto it = SystemData::sSystemVector.cbegin(); // Line break.
|
|
|
|
it != SystemData::sSystemVector.cend(); it++) {
|
2021-01-30 14:52:10 +00:00
|
|
|
if ((*it)->getName() != "retropie") {
|
|
|
|
// If required, abbreviate the system name so it doesn't overlap the setting name.
|
2021-10-10 15:29:05 +00:00
|
|
|
float maxNameLength = mSize.x * 0.48f;
|
2021-10-09 11:09:14 +00:00
|
|
|
startup_system->add((*it)->getFullName(), (*it)->getName(),
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("StartupSystem") ==
|
2021-10-09 11:09:14 +00:00
|
|
|
(*it)->getName(),
|
|
|
|
maxNameLength);
|
2020-07-15 16:02:11 +00:00
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
2021-01-30 14:52:10 +00:00
|
|
|
s->addWithLabel("GAMELIST ON STARTUP", startup_system);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([startup_system, s] {
|
|
|
|
if (startup_system->getSelected() != Settings::getInstance()->getString("StartupSystem")) {
|
|
|
|
Settings::getInstance()->setString("StartupSystem", startup_system->getSelected());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// GameList view style.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto gamelist_view_style = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "GAMELIST VIEW STYLE", false);
|
2021-03-21 10:21:45 +00:00
|
|
|
std::string selectedViewStyle = Settings::getInstance()->getString("GamelistViewStyle");
|
|
|
|
gamelist_view_style->add("automatic", "automatic", selectedViewStyle == "automatic");
|
|
|
|
gamelist_view_style->add("basic", "basic", selectedViewStyle == "basic");
|
|
|
|
gamelist_view_style->add("detailed", "detailed", selectedViewStyle == "detailed");
|
|
|
|
gamelist_view_style->add("video", "video", selectedViewStyle == "video");
|
|
|
|
gamelist_view_style->add("grid (experimental)", "grid", selectedViewStyle == "grid");
|
|
|
|
// If there are no objects returned, then there must be a manually modified entry in the
|
|
|
|
// configuration file. Simply set the view style to Automatic in this case.
|
|
|
|
if (gamelist_view_style->getSelectedObjects().size() == 0)
|
|
|
|
gamelist_view_style->selectEntry(0);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addWithLabel("GAMELIST VIEW STYLE", gamelist_view_style);
|
|
|
|
s->addSaveFunc([gamelist_view_style, s] {
|
|
|
|
if (gamelist_view_style->getSelected() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("GamelistViewStyle")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setString("GamelistViewStyle",
|
2021-07-07 18:03:42 +00:00
|
|
|
gamelist_view_style->getSelected());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsReloading();
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2020-11-05 17:18:11 +00:00
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Transition style.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto transition_style = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "TRANSITION STYLE", false);
|
2020-06-21 12:25:28 +00:00
|
|
|
std::vector<std::string> transitions;
|
|
|
|
transitions.push_back("slide");
|
2020-12-25 16:25:23 +00:00
|
|
|
transitions.push_back("fade");
|
2020-06-21 12:25:28 +00:00
|
|
|
transitions.push_back("instant");
|
|
|
|
for (auto it = transitions.cbegin(); it != transitions.cend(); it++)
|
2021-07-07 18:03:42 +00:00
|
|
|
transition_style->add(*it, *it,
|
|
|
|
Settings::getInstance()->getString("TransitionStyle") == *it);
|
2020-06-21 12:25:28 +00:00
|
|
|
s->addWithLabel("TRANSITION STYLE", transition_style);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([transition_style, s] {
|
|
|
|
if (transition_style->getSelected() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("TransitionStyle")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setString("TransitionStyle", transition_style->getSelected());
|
|
|
|
s->setNeedsSaving();
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Theme selection.
|
|
|
|
auto themeSets = ThemeData::getThemeSets();
|
2020-07-15 16:02:11 +00:00
|
|
|
if (!themeSets.empty()) {
|
2020-06-21 12:25:28 +00:00
|
|
|
std::map<std::string, ThemeSet>::const_iterator selectedSet =
|
2021-07-07 18:03:42 +00:00
|
|
|
themeSets.find(Settings::getInstance()->getString("ThemeSet"));
|
2020-06-21 12:25:28 +00:00
|
|
|
if (selectedSet == themeSets.cend())
|
|
|
|
selectedSet = themeSets.cbegin();
|
2021-07-07 18:03:42 +00:00
|
|
|
auto theme_set = std::make_shared<OptionListComponent<std::string>>(mWindow, getHelpStyle(),
|
|
|
|
"THEME SET", false);
|
2021-10-09 11:09:14 +00:00
|
|
|
for (auto it = themeSets.cbegin(); it != themeSets.cend(); it++) {
|
|
|
|
// If required, abbreviate the theme set name so it doesn't overlap the setting name.
|
|
|
|
float maxNameLength = mSize.x * 0.62f;
|
|
|
|
theme_set->add(it->first, it->first, it == selectedSet, maxNameLength);
|
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
s->addWithLabel("THEME SET", theme_set);
|
2021-04-05 08:05:08 +00:00
|
|
|
s->addSaveFunc([this, theme_set, s] {
|
2020-11-05 17:18:11 +00:00
|
|
|
if (theme_set->getSelected() != Settings::getInstance()->getString("ThemeSet")) {
|
|
|
|
Scripting::fireEvent("theme-changed", theme_set->getSelected(),
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("ThemeSet"));
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setString("ThemeSet", theme_set->getSelected());
|
2021-04-05 08:01:32 +00:00
|
|
|
CollectionSystemsManager::get()->updateSystemsList();
|
2021-04-05 08:05:08 +00:00
|
|
|
mWindow->setChangedThemeSet();
|
2021-04-05 11:27:42 +00:00
|
|
|
// This is required so that the custom collection system does not disappear
|
|
|
|
// if the user is editing a custom collection when switching theme sets.
|
|
|
|
if (CollectionSystemsManager::get()->isEditing()) {
|
|
|
|
CollectionSystemsManager::get()->exitEditMode();
|
|
|
|
s->setNeedsCollectionsUpdate();
|
|
|
|
}
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsReloading();
|
2021-04-05 08:05:08 +00:00
|
|
|
s->setNeedsGoToStart();
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// UI mode.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto ui_mode = std::make_shared<OptionListComponent<std::string>>(mWindow, getHelpStyle(),
|
|
|
|
"UI MODE", false);
|
2020-11-05 17:18:11 +00:00
|
|
|
std::vector<std::string> uiModes;
|
|
|
|
uiModes.push_back("full");
|
|
|
|
uiModes.push_back("kiosk");
|
|
|
|
uiModes.push_back("kid");
|
2020-12-17 22:45:29 +00:00
|
|
|
std::string setMode;
|
|
|
|
if (Settings::getInstance()->getBool("ForceKiosk"))
|
|
|
|
setMode = "kiosk";
|
|
|
|
else if (Settings::getInstance()->getBool("ForceKid"))
|
|
|
|
setMode = "kid";
|
|
|
|
else
|
|
|
|
setMode = Settings::getInstance()->getString("UIMode");
|
2020-11-05 17:18:11 +00:00
|
|
|
for (auto it = uiModes.cbegin(); it != uiModes.cend(); it++)
|
2020-12-17 22:45:29 +00:00
|
|
|
ui_mode->add(*it, *it, setMode == *it);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addWithLabel("UI MODE", ui_mode);
|
|
|
|
s->addSaveFunc([ui_mode, this, s] {
|
|
|
|
std::string selectedMode = ui_mode->getSelected();
|
2021-01-05 09:45:32 +00:00
|
|
|
// If any of the force flags are set, then always apply and save the setting.
|
|
|
|
if (selectedMode == Settings::getInstance()->getString("UIMode") &&
|
2021-07-07 18:03:42 +00:00
|
|
|
!Settings::getInstance()->getBool("ForceFull") &&
|
|
|
|
!Settings::getInstance()->getBool("ForceKiosk") &&
|
|
|
|
!Settings::getInstance()->getBool("ForceKid")) {
|
2021-01-05 09:45:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (selectedMode != "full") {
|
2021-01-17 10:11:07 +00:00
|
|
|
std::string msg = "YOU ARE CHANGING THE UI TO THE RESTRICTED MODE\n'" +
|
2021-07-07 18:03:42 +00:00
|
|
|
Utils::String::toUpper(selectedMode) + "'\n";
|
2021-01-17 10:11:07 +00:00
|
|
|
if (selectedMode == "kiosk") {
|
|
|
|
msg += "THIS WILL HIDE MOST MENU OPTIONS TO PREVENT\n";
|
|
|
|
msg += "CHANGES TO THE SYSTEM\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
msg += "THIS WILL LIMIT THE AVAILABLE GAMES TO THE ONES\n";
|
|
|
|
msg += "FLAGGED SUITABLE FOR CHILDREN\n";
|
|
|
|
}
|
2020-06-22 15:27:53 +00:00
|
|
|
msg += "TO UNLOCK AND RETURN TO THE FULL UI, ENTER THIS CODE: \n";
|
2021-01-17 10:11:07 +00:00
|
|
|
msg += UIModeController::getInstance()->getFormattedPassKeyStr() + "\n\n";
|
2020-06-22 15:27:53 +00:00
|
|
|
msg += "DO YOU WANT TO PROCEED?";
|
2021-07-07 18:03:42 +00:00
|
|
|
mWindow->pushGui(new GuiMsgBox(
|
|
|
|
mWindow, this->getHelpStyle(), msg, "YES",
|
|
|
|
[this, selectedMode] {
|
|
|
|
LOG(LogDebug) << "GuiMenu::openUISettings(): Setting UI mode to '"
|
|
|
|
<< selectedMode << "'.";
|
|
|
|
Settings::getInstance()->setString("UIMode", selectedMode);
|
|
|
|
Settings::getInstance()->setBool("ForceFull", false);
|
|
|
|
Settings::getInstance()->setBool("ForceKiosk", false);
|
|
|
|
Settings::getInstance()->setBool("ForceKid", false);
|
|
|
|
Settings::getInstance()->saveFile();
|
|
|
|
UIModeController::getInstance()->setCurrentUIMode(selectedMode);
|
|
|
|
for (auto it = SystemData::sSystemVector.cbegin();
|
|
|
|
it != SystemData::sSystemVector.cend(); it++) {
|
|
|
|
if ((*it)->getThemeFolder() == "custom-collections") {
|
|
|
|
for (FileData* customSystem :
|
|
|
|
(*it)->getRootFolder()->getChildrenListToDisplay())
|
|
|
|
customSystem->getSystem()->getIndex()->resetFilters();
|
|
|
|
}
|
|
|
|
(*it)->sortSystem();
|
|
|
|
(*it)->getIndex()->resetFilters();
|
2021-01-05 09:45:32 +00:00
|
|
|
}
|
2021-07-07 18:03:42 +00:00
|
|
|
ViewController::get()->reloadAll();
|
|
|
|
ViewController::get()->goToSystem(SystemData::sSystemVector.front(), false);
|
|
|
|
mWindow->invalidateCachedBackground();
|
|
|
|
},
|
|
|
|
"NO", nullptr));
|
2020-11-05 17:18:11 +00:00
|
|
|
}
|
2021-01-05 09:45:32 +00:00
|
|
|
else {
|
2021-07-07 18:03:42 +00:00
|
|
|
LOG(LogDebug) << "GuiMenu::openUISettings(): Setting UI mode to '" << selectedMode
|
|
|
|
<< "'.";
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setString("UIMode", ui_mode->getSelected());
|
2020-12-17 22:45:29 +00:00
|
|
|
Settings::getInstance()->setBool("ForceFull", false);
|
|
|
|
Settings::getInstance()->setBool("ForceKiosk", false);
|
|
|
|
Settings::getInstance()->setBool("ForceKid", false);
|
2021-01-05 09:45:32 +00:00
|
|
|
UIModeController::getInstance()->setCurrentUIMode("full");
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
2021-01-05 09:45:32 +00:00
|
|
|
s->setNeedsSorting();
|
|
|
|
s->setNeedsSortingCollections();
|
|
|
|
s->setNeedsResetFilters();
|
|
|
|
s->setNeedsReloading();
|
|
|
|
s->setNeedsGoToSystem(SystemData::sSystemVector.front());
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-15 16:02:11 +00:00
|
|
|
// Default gamelist sort order.
|
|
|
|
typedef OptionListComponent<const FileData::SortType*> SortList;
|
|
|
|
std::string sortOrder;
|
2021-07-07 18:03:42 +00:00
|
|
|
auto default_sort_order =
|
|
|
|
std::make_shared<SortList>(mWindow, getHelpStyle(), "DEFAULT SORT ORDER", false);
|
2021-01-08 19:30:21 +00:00
|
|
|
// Exclude the System sort options.
|
2021-01-09 12:44:18 +00:00
|
|
|
unsigned int numSortTypes = static_cast<unsigned int>(FileSorts::SortTypes.size() - 2);
|
2021-01-08 19:30:21 +00:00
|
|
|
for (unsigned int i = 0; i < numSortTypes; i++) {
|
|
|
|
if (FileSorts::SortTypes[i].description ==
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("DefaultSortOrder")) {
|
2021-01-08 19:30:21 +00:00
|
|
|
sortOrder = FileSorts::SortTypes[i].description;
|
2020-07-15 16:02:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-06-16 17:05:24 +00:00
|
|
|
// If an invalid sort order was defined in es_settings.xml, then apply the default
|
2020-07-15 16:02:11 +00:00
|
|
|
// sort order 'filename, ascending'.
|
|
|
|
if (sortOrder == "")
|
2020-12-14 16:25:41 +00:00
|
|
|
sortOrder = Settings::getInstance()->getDefaultString("DefaultSortOrder");
|
2021-01-08 19:30:21 +00:00
|
|
|
for (unsigned int i = 0; i < numSortTypes; i++) {
|
|
|
|
const FileData::SortType& sort = FileSorts::SortTypes[i];
|
2020-07-15 16:02:11 +00:00
|
|
|
if (sort.description == sortOrder)
|
2020-11-05 17:18:11 +00:00
|
|
|
default_sort_order->add(sort.description, &sort, true);
|
2020-07-15 16:02:11 +00:00
|
|
|
else
|
2020-11-05 17:18:11 +00:00
|
|
|
default_sort_order->add(sort.description, &sort, false);
|
2020-07-15 16:02:11 +00:00
|
|
|
}
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addWithLabel("DEFAULT SORT ORDER", default_sort_order);
|
|
|
|
s->addSaveFunc([default_sort_order, sortOrder, s] {
|
|
|
|
std::string selectedSortOrder = default_sort_order.get()->getSelected()->description;
|
2020-07-15 16:02:11 +00:00
|
|
|
if (selectedSortOrder != sortOrder) {
|
|
|
|
Settings::getInstance()->setString("DefaultSortOrder", selectedSortOrder);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsSorting();
|
|
|
|
s->setNeedsSortingCollections();
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2020-07-15 16:02:11 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-09-13 11:21:38 +00:00
|
|
|
// Open menu effect.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto menu_opening_effect = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "MENU OPENING EFFECT", false);
|
2021-06-22 15:52:57 +00:00
|
|
|
std::string selectedMenuEffect = Settings::getInstance()->getString("MenuOpeningEffect");
|
|
|
|
menu_opening_effect->add("SCALE-UP", "scale-up", selectedMenuEffect == "scale-up");
|
|
|
|
menu_opening_effect->add("NONE", "none", selectedMenuEffect == "none");
|
|
|
|
// If there are no objects returned, then there must be a manually modified entry in the
|
|
|
|
// configuration file. Simply set the opening effect to "scale-up" in this case.
|
|
|
|
if (menu_opening_effect->getSelectedObjects().size() == 0)
|
|
|
|
menu_opening_effect->selectEntry(0);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addWithLabel("MENU OPENING EFFECT", menu_opening_effect);
|
|
|
|
s->addSaveFunc([menu_opening_effect, s] {
|
|
|
|
if (menu_opening_effect->getSelected() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("MenuOpeningEffect")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setString("MenuOpeningEffect",
|
2021-07-07 18:03:42 +00:00
|
|
|
menu_opening_effect->getSelected());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
2020-09-13 11:21:38 +00:00
|
|
|
});
|
2021-03-18 18:46:45 +00:00
|
|
|
|
2021-06-14 17:15:22 +00:00
|
|
|
// Launch screen duration.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto launch_screen_duration = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "LAUNCH SCREEN DURATION", false);
|
2021-06-14 17:15:22 +00:00
|
|
|
std::string selectedDuration = Settings::getInstance()->getString("LaunchScreenDuration");
|
|
|
|
launch_screen_duration->add("NORMAL", "normal", selectedDuration == "normal");
|
|
|
|
launch_screen_duration->add("BRIEF", "brief", selectedDuration == "brief");
|
|
|
|
launch_screen_duration->add("LONG", "long", selectedDuration == "long");
|
|
|
|
launch_screen_duration->add("DISABLED", "disabled", selectedDuration == "disabled");
|
|
|
|
// If there are no objects returned, then there must be a manually modified entry in the
|
|
|
|
// configuration file. Simply set the duration to "normal" in this case.
|
|
|
|
if (launch_screen_duration->getSelectedObjects().size() == 0)
|
|
|
|
launch_screen_duration->selectEntry(0);
|
|
|
|
s->addWithLabel("LAUNCH SCREEN DURATION", launch_screen_duration);
|
|
|
|
s->addSaveFunc([launch_screen_duration, s] {
|
|
|
|
if (launch_screen_duration->getSelected() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("LaunchScreenDuration")) {
|
2021-06-14 17:15:22 +00:00
|
|
|
Settings::getInstance()->setString("LaunchScreenDuration",
|
2021-07-07 18:03:42 +00:00
|
|
|
launch_screen_duration->getSelected());
|
2021-06-14 17:15:22 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-08-22 12:29:43 +00:00
|
|
|
// Media viewer.
|
|
|
|
ComponentListRow media_viewer_row;
|
|
|
|
media_viewer_row.elements.clear();
|
|
|
|
media_viewer_row.addElement(std::make_shared<TextComponent>(mWindow, "MEDIA VIEWER SETTINGS",
|
|
|
|
Font::get(FONT_SIZE_MEDIUM),
|
|
|
|
0x777777FF),
|
|
|
|
true);
|
|
|
|
media_viewer_row.addElement(makeArrow(mWindow), false);
|
|
|
|
media_viewer_row.makeAcceptInputHandler(std::bind(&GuiMenu::openMediaViewerOptions, this));
|
|
|
|
s->addRow(media_viewer_row);
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(USE_OPENGL_21)
|
2021-03-18 18:46:45 +00:00
|
|
|
// Blur background when the menu is open.
|
|
|
|
auto menu_blur_background = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
menu_blur_background->setState(Settings::getInstance()->getBool("MenuBlurBackground"));
|
|
|
|
s->addWithLabel("BLUR BACKGROUND WHEN MENU IS OPEN", menu_blur_background);
|
|
|
|
s->addSaveFunc([menu_blur_background, s] {
|
|
|
|
if (menu_blur_background->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("MenuBlurBackground")) {
|
2021-03-18 18:46:45 +00:00
|
|
|
Settings::getInstance()->setBool("MenuBlurBackground",
|
2021-07-07 18:03:42 +00:00
|
|
|
menu_blur_background->getState());
|
2021-03-18 18:46:45 +00:00
|
|
|
s->setNeedsSaving();
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2021-03-18 18:46:45 +00:00
|
|
|
}
|
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2020-09-13 12:28:06 +00:00
|
|
|
|
2020-11-17 16:20:25 +00:00
|
|
|
// Display pillarboxes (and letterboxes) for videos in the gamelists.
|
|
|
|
auto gamelist_video_pillarbox = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
gamelist_video_pillarbox->setState(Settings::getInstance()->getBool("GamelistVideoPillarbox"));
|
|
|
|
s->addWithLabel("DISPLAY PILLARBOXES FOR GAMELIST VIDEOS", gamelist_video_pillarbox);
|
|
|
|
s->addSaveFunc([gamelist_video_pillarbox, s] {
|
|
|
|
if (gamelist_video_pillarbox->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("GamelistVideoPillarbox")) {
|
2020-11-17 16:20:25 +00:00
|
|
|
Settings::getInstance()->setBool("GamelistVideoPillarbox",
|
2021-07-07 18:03:42 +00:00
|
|
|
gamelist_video_pillarbox->getState());
|
2020-11-17 16:20:25 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(USE_OPENGL_21)
|
2020-11-05 17:18:11 +00:00
|
|
|
// Render scanlines for videos in the gamelists.
|
|
|
|
auto gamelist_video_scanlines = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
gamelist_video_scanlines->setState(Settings::getInstance()->getBool("GamelistVideoScanlines"));
|
|
|
|
s->addWithLabel("RENDER SCANLINES FOR GAMELIST VIDEOS", gamelist_video_scanlines);
|
|
|
|
s->addSaveFunc([gamelist_video_scanlines, s] {
|
|
|
|
if (gamelist_video_scanlines->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("GamelistVideoScanlines")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("GamelistVideoScanlines",
|
2021-07-07 18:03:42 +00:00
|
|
|
gamelist_video_scanlines->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2020-09-13 11:21:38 +00:00
|
|
|
|
2020-07-28 17:44:17 +00:00
|
|
|
// Sort folders on top of the gamelists.
|
|
|
|
auto folders_on_top = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
folders_on_top->setState(Settings::getInstance()->getBool("FoldersOnTop"));
|
|
|
|
s->addWithLabel("SORT FOLDERS ON TOP OF GAMELISTS", folders_on_top);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([folders_on_top, s] {
|
2021-07-07 18:03:42 +00:00
|
|
|
if (folders_on_top->getState() != Settings::getInstance()->getBool("FoldersOnTop")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("FoldersOnTop", folders_on_top->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsSorting();
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2020-07-28 17:44:17 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Sort favorites on top of non-favorites in the gamelists.
|
|
|
|
auto favorites_first = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
favorites_first->setState(Settings::getInstance()->getBool("FavoritesFirst"));
|
|
|
|
s->addWithLabel("SORT FAVORITE GAMES ABOVE NON-FAVORITES", favorites_first);
|
2021-07-07 18:03:42 +00:00
|
|
|
s->addSaveFunc([favorites_first, s] {
|
|
|
|
if (favorites_first->getState() != Settings::getInstance()->getBool("FavoritesFirst")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("FavoritesFirst", favorites_first->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsSorting();
|
|
|
|
s->setNeedsSortingCollections();
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-10-25 20:29:54 +00:00
|
|
|
// Enable gamelist star markings for favorite games.
|
2020-11-05 17:18:11 +00:00
|
|
|
auto favorites_star = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
favorites_star->setState(Settings::getInstance()->getBool("FavoritesStar"));
|
|
|
|
s->addWithLabel("ADD STAR MARKINGS TO FAVORITE GAMES", favorites_star);
|
|
|
|
s->addSaveFunc([favorites_star, s] {
|
|
|
|
if (favorites_star->getState() != Settings::getInstance()->getBool("FavoritesStar")) {
|
|
|
|
Settings::getInstance()->setBool("FavoritesStar", favorites_star->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsReloading();
|
2021-03-21 17:46:45 +00:00
|
|
|
s->setInvalidateCachedBackground();
|
2020-10-25 20:29:54 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-06-28 20:05:24 +00:00
|
|
|
// Use ASCII for special characters in the gamelist view instead of the Font Awesome symbols.
|
|
|
|
auto special_chars_ascii = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
special_chars_ascii->setState(Settings::getInstance()->getBool("SpecialCharsASCII"));
|
|
|
|
s->addWithLabel("USE PLAIN ASCII FOR SPECIAL GAMELIST CHARACTERS", special_chars_ascii);
|
|
|
|
s->addSaveFunc([special_chars_ascii, s] {
|
|
|
|
if (special_chars_ascii->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("SpecialCharsASCII")) {
|
|
|
|
Settings::getInstance()->setBool("SpecialCharsASCII", special_chars_ascii->getState());
|
2021-06-28 20:05:24 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsReloading();
|
|
|
|
s->setInvalidateCachedBackground();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-01-12 21:41:28 +00:00
|
|
|
// Enable quick list scrolling overlay.
|
|
|
|
auto list_scroll_overlay = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
list_scroll_overlay->setState(Settings::getInstance()->getBool("ListScrollOverlay"));
|
|
|
|
s->addWithLabel("ENABLE QUICK LIST SCROLLING OVERLAY", list_scroll_overlay);
|
|
|
|
s->addSaveFunc([list_scroll_overlay, s] {
|
|
|
|
if (list_scroll_overlay->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("ListScrollOverlay")) {
|
2021-01-12 21:41:28 +00:00
|
|
|
Settings::getInstance()->setBool("ListScrollOverlay", list_scroll_overlay->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-09-17 20:23:41 +00:00
|
|
|
// Enable virtual (on-screen) keyboard.
|
|
|
|
auto virtual_keyboard = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
virtual_keyboard->setState(Settings::getInstance()->getBool("VirtualKeyboard"));
|
|
|
|
s->addWithLabel("ENABLE VIRTUAL KEYBOARD", virtual_keyboard);
|
|
|
|
s->addSaveFunc([virtual_keyboard, s] {
|
|
|
|
if (virtual_keyboard->getState() != Settings::getInstance()->getBool("VirtualKeyboard")) {
|
|
|
|
Settings::getInstance()->setBool("VirtualKeyboard", virtual_keyboard->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setInvalidateCachedBackground();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-10-10 16:15:37 +00:00
|
|
|
// Enable menu scroll indicators.
|
|
|
|
auto scroll_indicators = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
scroll_indicators->setState(Settings::getInstance()->getBool("ScrollIndicators"));
|
|
|
|
s->addWithLabel("ENABLE MENU SCROLL INDICATORS", scroll_indicators);
|
|
|
|
s->addSaveFunc([scroll_indicators, s] {
|
|
|
|
if (scroll_indicators->getState() != Settings::getInstance()->getBool("ScrollIndicators")) {
|
|
|
|
Settings::getInstance()->setBool("ScrollIndicators", scroll_indicators->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setInvalidateCachedBackground();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-10-31 09:01:19 +00:00
|
|
|
// Enable the 'Y' button for tagging games as favorites.
|
|
|
|
auto favorites_add_button = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
favorites_add_button->setState(Settings::getInstance()->getBool("FavoritesAddButton"));
|
2021-05-16 12:03:13 +00:00
|
|
|
s->addWithLabel("ENABLE TOGGLE FAVORITES BUTTON", favorites_add_button);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([favorites_add_button, s] {
|
2020-10-31 09:01:19 +00:00
|
|
|
if (Settings::getInstance()->getBool("FavoritesAddButton") !=
|
2021-07-07 18:03:42 +00:00
|
|
|
favorites_add_button->getState()) {
|
2020-10-31 09:01:19 +00:00
|
|
|
Settings::getInstance()->setBool("FavoritesAddButton",
|
2021-07-07 18:03:42 +00:00
|
|
|
favorites_add_button->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
2020-10-31 09:01:19 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-05-16 12:03:13 +00:00
|
|
|
// Enable the thumbstick click buttons for jumping to a random system or game.
|
|
|
|
auto random_add_button = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
random_add_button->setState(Settings::getInstance()->getBool("RandomAddButton"));
|
|
|
|
s->addWithLabel("ENABLE RANDOM SYSTEM OR GAME BUTTON", random_add_button);
|
|
|
|
s->addSaveFunc([random_add_button, s] {
|
2021-07-07 18:03:42 +00:00
|
|
|
if (Settings::getInstance()->getBool("RandomAddButton") != random_add_button->getState()) {
|
|
|
|
Settings::getInstance()->setBool("RandomAddButton", random_add_button->getState());
|
2021-05-16 12:03:13 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
// Gamelist filters.
|
|
|
|
auto gamelist_filters = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
gamelist_filters->setState(Settings::getInstance()->getBool("GamelistFilters"));
|
|
|
|
s->addWithLabel("ENABLE GAMELIST FILTERS", gamelist_filters);
|
|
|
|
s->addSaveFunc([gamelist_filters, s] {
|
2021-07-07 18:03:42 +00:00
|
|
|
if (Settings::getInstance()->getBool("GamelistFilters") != gamelist_filters->getState()) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("GamelistFilters", gamelist_filters->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsReloading();
|
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
});
|
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
// Quick system select (navigate left/right in gamelist view).
|
|
|
|
auto quick_system_select = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
quick_system_select->setState(Settings::getInstance()->getBool("QuickSystemSelect"));
|
|
|
|
s->addWithLabel("ENABLE QUICK SYSTEM SELECT", quick_system_select);
|
|
|
|
s->addSaveFunc([quick_system_select, s] {
|
|
|
|
if (Settings::getInstance()->getBool("QuickSystemSelect") !=
|
2021-07-07 18:03:42 +00:00
|
|
|
quick_system_select->getState()) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("QuickSystemSelect", quick_system_select->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
// On-screen help prompts.
|
|
|
|
auto show_help_prompts = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
show_help_prompts->setState(Settings::getInstance()->getBool("ShowHelpPrompts"));
|
|
|
|
s->addWithLabel("DISPLAY ON-SCREEN HELP", show_help_prompts);
|
|
|
|
s->addSaveFunc([show_help_prompts, s] {
|
|
|
|
if (Settings::getInstance()->getBool("ShowHelpPrompts") != show_help_prompts->getState()) {
|
|
|
|
Settings::getInstance()->setBool("ShowHelpPrompts", show_help_prompts->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2020-09-13 12:28:06 +00:00
|
|
|
// Play videos immediately (overrides theme setting).
|
|
|
|
auto play_videos_immediately = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
play_videos_immediately->setState(Settings::getInstance()->getBool("PlayVideosImmediately"));
|
|
|
|
s->addWithLabel("PLAY VIDEOS IMMEDIATELY (OVERRIDE THEME)", play_videos_immediately);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([play_videos_immediately, s] {
|
|
|
|
if (Settings::getInstance()->getBool("PlayVideosImmediately") !=
|
2021-07-07 18:03:42 +00:00
|
|
|
play_videos_immediately->getState()) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("PlayVideosImmediately",
|
2021-07-07 18:03:42 +00:00
|
|
|
play_videos_immediately->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-09-13 12:28:06 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
mWindow->pushGui(s);
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
|
|
|
|
2021-05-22 20:48:44 +00:00
|
|
|
void GuiMenu::openSoundOptions()
|
2020-11-05 17:18:11 +00:00
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "SOUND SETTINGS");
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
// TEMPORARY - Hide the volume slider on macOS and BSD Unix until the volume control logic
|
|
|
|
// has been implemented for these operating systems.
|
|
|
|
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
|
2020-11-05 17:18:11 +00:00
|
|
|
// System volume.
|
|
|
|
auto system_volume = std::make_shared<SliderComponent>(mWindow, 0.f, 100.f, 1.f, "%");
|
|
|
|
system_volume->setValue(static_cast<float>(VolumeControl::getInstance()->getVolume()));
|
|
|
|
s->addWithLabel("SYSTEM VOLUME", system_volume);
|
|
|
|
s->addSaveFunc([system_volume] {
|
2021-07-07 18:03:42 +00:00
|
|
|
VolumeControl::getInstance()->setVolume(
|
|
|
|
static_cast<int>(std::round(system_volume->getValue())));
|
2021-03-18 20:55:56 +00:00
|
|
|
// Explicitly delete the VolumeControl instance so that it will reinitialize the
|
|
|
|
// next time the menu is entered. This is the easiest way to detect new default
|
2021-03-19 17:25:37 +00:00
|
|
|
// audio devices or changes to the audio volume done by the operating system.
|
2021-03-18 20:55:56 +00:00
|
|
|
VolumeControl::getInstance()->deleteInstance();
|
2020-11-05 17:18:11 +00:00
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2020-11-05 17:18:11 +00:00
|
|
|
|
2020-12-20 15:41:58 +00:00
|
|
|
// Volume for navigation sounds.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto sound_volume_navigation = std::make_shared<SliderComponent>(mWindow, 0.f, 100.f, 1.f, "%");
|
|
|
|
sound_volume_navigation->setValue(
|
|
|
|
static_cast<float>(Settings::getInstance()->getInt("SoundVolumeNavigation")));
|
2020-12-20 23:23:22 +00:00
|
|
|
s->addWithLabel("NAVIGATION SOUNDS VOLUME", sound_volume_navigation);
|
2020-12-20 15:41:58 +00:00
|
|
|
s->addSaveFunc([sound_volume_navigation, s] {
|
|
|
|
if (sound_volume_navigation->getValue() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
static_cast<float>(Settings::getInstance()->getInt("SoundVolumeNavigation"))) {
|
2020-12-20 15:41:58 +00:00
|
|
|
Settings::getInstance()->setInt("SoundVolumeNavigation",
|
2021-07-07 18:03:42 +00:00
|
|
|
static_cast<int>(sound_volume_navigation->getValue()));
|
2020-12-20 15:41:58 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Volume for videos.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto sound_volume_videos = std::make_shared<SliderComponent>(mWindow, 0.f, 100.f, 1.f, "%");
|
|
|
|
sound_volume_videos->setValue(
|
|
|
|
static_cast<float>(Settings::getInstance()->getInt("SoundVolumeVideos")));
|
2020-12-20 23:23:22 +00:00
|
|
|
s->addWithLabel("VIDEO PLAYER VOLUME", sound_volume_videos);
|
2020-12-20 15:41:58 +00:00
|
|
|
s->addSaveFunc([sound_volume_videos, s] {
|
|
|
|
if (sound_volume_videos->getValue() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
static_cast<float>(Settings::getInstance()->getInt("SoundVolumeVideos"))) {
|
2020-12-20 15:41:58 +00:00
|
|
|
Settings::getInstance()->setInt("SoundVolumeVideos",
|
2021-07-07 18:03:42 +00:00
|
|
|
static_cast<int>(sound_volume_videos->getValue()));
|
2020-12-20 15:41:58 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
if (UIModeController::getInstance()->isUIModeFull()) {
|
2021-05-16 11:12:31 +00:00
|
|
|
// Play audio for gamelist videos.
|
2020-11-05 17:18:11 +00:00
|
|
|
auto gamelist_video_audio = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
gamelist_video_audio->setState(Settings::getInstance()->getBool("GamelistVideoAudio"));
|
2020-12-31 16:56:53 +00:00
|
|
|
s->addWithLabel("PLAY AUDIO FOR VIDEOS IN THE GAMELIST VIEW", gamelist_video_audio);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([gamelist_video_audio, s] {
|
|
|
|
if (gamelist_video_audio->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("GamelistVideoAudio")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("GamelistVideoAudio",
|
2021-07-07 18:03:42 +00:00
|
|
|
gamelist_video_audio->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-05-16 11:12:31 +00:00
|
|
|
// Play audio for media viewer videos.
|
|
|
|
auto media_viewer_video_audio = std::make_shared<SwitchComponent>(mWindow);
|
2021-07-07 18:03:42 +00:00
|
|
|
media_viewer_video_audio->setState(
|
|
|
|
Settings::getInstance()->getBool("MediaViewerVideoAudio"));
|
2021-05-16 11:12:31 +00:00
|
|
|
s->addWithLabel("PLAY AUDIO FOR MEDIA VIEWER VIDEOS", media_viewer_video_audio);
|
|
|
|
s->addSaveFunc([media_viewer_video_audio, s] {
|
|
|
|
if (media_viewer_video_audio->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("MediaViewerVideoAudio")) {
|
2021-05-16 11:12:31 +00:00
|
|
|
Settings::getInstance()->setBool("MediaViewerVideoAudio",
|
2021-07-07 18:03:42 +00:00
|
|
|
media_viewer_video_audio->getState());
|
2021-05-16 11:12:31 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Play audio for screensaver videos.
|
|
|
|
auto screensaver_video_audio = std::make_shared<SwitchComponent>(mWindow);
|
2021-07-07 18:03:42 +00:00
|
|
|
screensaver_video_audio->setState(
|
|
|
|
Settings::getInstance()->getBool("ScreensaverVideoAudio"));
|
2021-05-16 11:12:31 +00:00
|
|
|
s->addWithLabel("PLAY AUDIO FOR SCREENSAVER VIDEOS", screensaver_video_audio);
|
|
|
|
s->addSaveFunc([screensaver_video_audio, s] {
|
|
|
|
if (screensaver_video_audio->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("ScreensaverVideoAudio")) {
|
2021-05-16 11:12:31 +00:00
|
|
|
Settings::getInstance()->setBool("ScreensaverVideoAudio",
|
2021-07-07 18:03:42 +00:00
|
|
|
screensaver_video_audio->getState());
|
2021-05-16 11:12:31 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
// Navigation sounds.
|
|
|
|
auto navigation_sounds = std::make_shared<SwitchComponent>(mWindow);
|
2021-07-07 18:03:42 +00:00
|
|
|
navigation_sounds->setState(Settings::getInstance()->getBool("NavigationSounds"));
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addWithLabel("ENABLE NAVIGATION SOUNDS", navigation_sounds);
|
|
|
|
s->addSaveFunc([navigation_sounds, s] {
|
|
|
|
if (navigation_sounds->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("NavigationSounds")) {
|
|
|
|
Settings::getInstance()->setBool("NavigationSounds", navigation_sounds->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
mWindow->pushGui(s);
|
|
|
|
}
|
|
|
|
|
2021-05-23 08:35:59 +00:00
|
|
|
void GuiMenu::openInputDeviceOptions()
|
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "INPUT DEVICE SETTINGS");
|
|
|
|
|
2021-05-23 17:12:31 +00:00
|
|
|
// Controller type.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto input_controller_type = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "CONTROLLER TYPE", false);
|
2021-05-23 17:12:31 +00:00
|
|
|
std::string selectedPlayer = Settings::getInstance()->getString("InputControllerType");
|
|
|
|
input_controller_type->add("XBOX", "xbox", selectedPlayer == "xbox");
|
2021-05-23 17:19:00 +00:00
|
|
|
input_controller_type->add("XBOX 360", "xbox360", selectedPlayer == "xbox360");
|
|
|
|
input_controller_type->add("PLAYSTATION 4", "ps4", selectedPlayer == "ps4");
|
|
|
|
input_controller_type->add("PLAYSTATION 5", "ps5", selectedPlayer == "ps5");
|
2021-05-23 17:12:31 +00:00
|
|
|
input_controller_type->add("SNES", "snes", selectedPlayer == "snes");
|
|
|
|
// If there are no objects returned, then there must be a manually modified entry in the
|
|
|
|
// configuration file. Simply set the controller type to "xbox" in this case.
|
|
|
|
if (input_controller_type->getSelectedObjects().size() == 0)
|
|
|
|
input_controller_type->selectEntry(0);
|
|
|
|
s->addWithLabel("CONTROLLER TYPE", input_controller_type);
|
|
|
|
s->addSaveFunc([input_controller_type, s] {
|
|
|
|
if (input_controller_type->getSelected() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("InputControllerType")) {
|
2021-05-23 17:12:31 +00:00
|
|
|
Settings::getInstance()->setString("InputControllerType",
|
2021-07-07 18:03:42 +00:00
|
|
|
input_controller_type->getSelected());
|
2021-05-23 17:12:31 +00:00
|
|
|
s->setNeedsReloadHelpPrompts();
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-05-23 09:45:45 +00:00
|
|
|
// Whether to only accept input from the first controller.
|
|
|
|
auto input_only_first_controller = std::make_shared<SwitchComponent>(mWindow);
|
2021-07-07 18:03:42 +00:00
|
|
|
input_only_first_controller->setState(
|
|
|
|
Settings::getInstance()->getBool("InputOnlyFirstController"));
|
2021-05-23 09:45:45 +00:00
|
|
|
s->addWithLabel("ONLY ACCEPT INPUT FROM FIRST CONTROLLER", input_only_first_controller);
|
|
|
|
s->addSaveFunc([input_only_first_controller, s] {
|
|
|
|
if (Settings::getInstance()->getBool("InputOnlyFirstController") !=
|
2021-07-07 18:03:42 +00:00
|
|
|
input_only_first_controller->getState()) {
|
2021-05-23 09:45:45 +00:00
|
|
|
Settings::getInstance()->setBool("InputOnlyFirstController",
|
2021-07-07 18:03:42 +00:00
|
|
|
input_only_first_controller->getState());
|
2021-05-23 09:45:45 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-05-23 08:35:59 +00:00
|
|
|
// Configure keyboard and controllers.
|
|
|
|
ComponentListRow configure_input_row;
|
|
|
|
configure_input_row.elements.clear();
|
2021-07-07 18:03:42 +00:00
|
|
|
configure_input_row.addElement(
|
|
|
|
std::make_shared<TextComponent>(mWindow, "CONFIGURE KEYBOARD AND CONTROLLERS",
|
|
|
|
Font::get(FONT_SIZE_MEDIUM), 0x777777FF),
|
|
|
|
true);
|
2021-05-23 08:35:59 +00:00
|
|
|
configure_input_row.addElement(makeArrow(mWindow), false);
|
2021-06-28 16:12:08 +00:00
|
|
|
configure_input_row.makeAcceptInputHandler(std::bind(&GuiMenu::openConfigInput, this, s));
|
2021-05-23 08:35:59 +00:00
|
|
|
s->addRow(configure_input_row);
|
|
|
|
|
|
|
|
mWindow->pushGui(s);
|
|
|
|
}
|
|
|
|
|
2021-06-28 16:12:08 +00:00
|
|
|
void GuiMenu::openConfigInput(GuiSettings* settings)
|
2021-05-23 08:35:59 +00:00
|
|
|
{
|
2021-06-28 16:12:08 +00:00
|
|
|
// Always save the settings before starting the input configuration, in case the
|
|
|
|
// controller type was changed.
|
|
|
|
settings->save();
|
|
|
|
// Also unset the save flag so that a double saving does not take place when closing
|
|
|
|
// the input device settings menu later on.
|
|
|
|
settings->setNeedsSaving(false);
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
std::string message = "THE KEYBOARD AND CONTROLLERS ARE AUTOMATICALLY\n"
|
|
|
|
"CONFIGURED, BUT USING THIS CONFIGURATION TOOL\n"
|
|
|
|
"YOU CAN OVERRIDE THE DEFAULT BUTTON MAPPINGS\n"
|
|
|
|
"(THIS WILL NOT AFFECT THE HELP PROMPTS)\n"
|
|
|
|
"CONTINUE?";
|
2021-05-23 08:35:59 +00:00
|
|
|
|
|
|
|
Window* window = mWindow;
|
2021-07-07 18:03:42 +00:00
|
|
|
window->pushGui(new GuiMsgBox(
|
|
|
|
window, getHelpStyle(), message, "YES",
|
|
|
|
[window] { window->pushGui(new GuiDetectDevice(window, false, false, nullptr)); }, "NO",
|
|
|
|
nullptr));
|
2021-05-23 08:35:59 +00:00
|
|
|
}
|
|
|
|
|
2021-05-22 20:48:44 +00:00
|
|
|
void GuiMenu::openOtherOptions()
|
2017-09-08 14:49:47 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
auto s = new GuiSettings(mWindow, "OTHER SETTINGS");
|
|
|
|
|
2021-08-22 13:26:38 +00:00
|
|
|
// Alternative emulators GUI.
|
|
|
|
ComponentListRow alternativeEmulatorsRow;
|
|
|
|
alternativeEmulatorsRow.elements.clear();
|
|
|
|
alternativeEmulatorsRow.addElement(
|
|
|
|
std::make_shared<TextComponent>(mWindow, "ALTERNATIVE EMULATORS",
|
|
|
|
Font::get(FONT_SIZE_MEDIUM), 0x777777FF),
|
|
|
|
true);
|
|
|
|
alternativeEmulatorsRow.addElement(makeArrow(mWindow), false);
|
|
|
|
alternativeEmulatorsRow.makeAcceptInputHandler(
|
|
|
|
std::bind([this] { mWindow->pushGui(new GuiAlternativeEmulators(mWindow)); }));
|
|
|
|
s->addRow(alternativeEmulatorsRow);
|
|
|
|
|
2021-08-22 12:29:43 +00:00
|
|
|
// Game media directory.
|
|
|
|
ComponentListRow rowMediaDir;
|
|
|
|
auto media_directory = std::make_shared<TextComponent>(mWindow, "GAME MEDIA DIRECTORY",
|
|
|
|
Font::get(FONT_SIZE_MEDIUM), 0x777777FF);
|
|
|
|
auto bracketMediaDirectory = std::make_shared<ImageComponent>(mWindow);
|
|
|
|
bracketMediaDirectory->setImage(":/graphics/arrow.svg");
|
|
|
|
bracketMediaDirectory->setResize(
|
|
|
|
glm::vec2{0.0f, Font::get(FONT_SIZE_MEDIUM)->getLetterHeight()});
|
|
|
|
rowMediaDir.addElement(media_directory, true);
|
|
|
|
rowMediaDir.addElement(bracketMediaDirectory, false);
|
|
|
|
std::string titleMediaDir = "ENTER GAME MEDIA DIRECTORY";
|
|
|
|
std::string mediaDirectoryStaticText = "Default directory:";
|
|
|
|
std::string defaultDirectoryText = "~/.emulationstation/downloaded_media/";
|
|
|
|
std::string initValueMediaDir = Settings::getInstance()->getString("MediaDirectory");
|
|
|
|
bool multiLineMediaDir = false;
|
|
|
|
auto updateValMediaDir = [this](const std::string& newVal) {
|
|
|
|
Settings::getInstance()->setString("MediaDirectory", newVal);
|
|
|
|
Settings::getInstance()->saveFile();
|
|
|
|
ViewController::get()->reloadAll();
|
|
|
|
mWindow->invalidateCachedBackground();
|
|
|
|
};
|
|
|
|
rowMediaDir.makeAcceptInputHandler([this, titleMediaDir, mediaDirectoryStaticText,
|
|
|
|
defaultDirectoryText, initValueMediaDir, updateValMediaDir,
|
|
|
|
multiLineMediaDir] {
|
2021-09-17 20:23:41 +00:00
|
|
|
if (Settings::getInstance()->getBool("VirtualKeyboard")) {
|
|
|
|
mWindow->pushGui(new GuiTextEditKeyboardPopup(
|
|
|
|
mWindow, getHelpStyle(), titleMediaDir,
|
|
|
|
Settings::getInstance()->getString("MediaDirectory"), updateValMediaDir,
|
|
|
|
multiLineMediaDir, "SAVE", "SAVE CHANGES?", mediaDirectoryStaticText,
|
|
|
|
defaultDirectoryText, "load default directory"));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mWindow->pushGui(new GuiTextEditPopup(
|
|
|
|
mWindow, getHelpStyle(), titleMediaDir,
|
|
|
|
Settings::getInstance()->getString("MediaDirectory"), updateValMediaDir,
|
|
|
|
multiLineMediaDir, "SAVE", "SAVE CHANGES?", mediaDirectoryStaticText,
|
|
|
|
defaultDirectoryText, "load default directory"));
|
|
|
|
}
|
2021-08-22 12:29:43 +00:00
|
|
|
});
|
|
|
|
s->addRow(rowMediaDir);
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
// Maximum VRAM.
|
2020-08-08 20:33:27 +00:00
|
|
|
auto max_vram = std::make_shared<SliderComponent>(mWindow, 80.f, 1024.f, 8.f, "MiB");
|
2020-11-05 17:18:11 +00:00
|
|
|
max_vram->setValue(static_cast<float>(Settings::getInstance()->getInt("MaxVRAM")));
|
2020-06-21 12:25:28 +00:00
|
|
|
s->addWithLabel("VRAM LIMIT", max_vram);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([max_vram, s] {
|
|
|
|
if (max_vram->getValue() != Settings::getInstance()->getInt("MaxVRAM")) {
|
|
|
|
Settings::getInstance()->setInt("MaxVRAM",
|
2021-07-07 18:03:42 +00:00
|
|
|
static_cast<int>(std::round(max_vram->getValue())));
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2021-01-24 22:44:50 +00:00
|
|
|
// Display/monitor.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto display_index = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "DISPLAY/MONITOR INDEX", false);
|
2021-01-24 22:44:50 +00:00
|
|
|
std::vector<std::string> displayIndex;
|
|
|
|
displayIndex.push_back("1");
|
|
|
|
displayIndex.push_back("2");
|
|
|
|
displayIndex.push_back("3");
|
|
|
|
displayIndex.push_back("4");
|
|
|
|
for (auto it = displayIndex.cbegin(); it != displayIndex.cend(); it++)
|
|
|
|
display_index->add(*it, *it,
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getInt("DisplayIndex") == atoi((*it).c_str()));
|
2021-01-24 22:54:43 +00:00
|
|
|
s->addWithLabel("DISPLAY/MONITOR INDEX (REQUIRES RESTART)", display_index);
|
2021-01-24 22:44:50 +00:00
|
|
|
s->addSaveFunc([display_index, s] {
|
|
|
|
if (atoi(display_index->getSelected().c_str()) !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getInt("DisplayIndex")) {
|
2021-01-24 22:44:50 +00:00
|
|
|
Settings::getInstance()->setInt("DisplayIndex",
|
2021-07-07 18:03:42 +00:00
|
|
|
atoi(display_index->getSelected().c_str()));
|
2021-01-24 22:44:50 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(__unix__)
|
2020-06-21 12:25:28 +00:00
|
|
|
// Fullscreen mode.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto fullscreen_mode = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "FULLSCREEN MODE", false);
|
2020-06-21 12:25:28 +00:00
|
|
|
std::vector<std::string> screenmode;
|
|
|
|
screenmode.push_back("normal");
|
|
|
|
screenmode.push_back("borderless");
|
|
|
|
for (auto it = screenmode.cbegin(); it != screenmode.cend(); it++)
|
|
|
|
fullscreen_mode->add(*it, *it, Settings::getInstance()->getString("FullscreenMode") == *it);
|
|
|
|
s->addWithLabel("FULLSCREEN MODE (REQUIRES RESTART)", fullscreen_mode);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([fullscreen_mode, s] {
|
|
|
|
if (fullscreen_mode->getSelected() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("FullscreenMode")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setString("FullscreenMode", fullscreen_mode->getSelected());
|
|
|
|
s->setNeedsSaving();
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(BUILD_VLC_PLAYER)
|
2021-05-09 20:56:41 +00:00
|
|
|
// Video player.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto video_player = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "FULLSCREEN MODE", false);
|
2021-05-09 20:56:41 +00:00
|
|
|
std::string selectedPlayer = Settings::getInstance()->getString("VideoPlayer");
|
2021-05-14 08:53:50 +00:00
|
|
|
video_player->add("FFmpeg", "ffmpeg", selectedPlayer == "ffmpeg");
|
2021-05-09 20:56:41 +00:00
|
|
|
video_player->add("VLC", "vlc", selectedPlayer == "vlc");
|
|
|
|
// If there are no objects returned, then there must be a manually modified entry in the
|
|
|
|
// configuration file. Simply set the video player to VLC in this case.
|
|
|
|
if (video_player->getSelectedObjects().size() == 0)
|
|
|
|
video_player->selectEntry(0);
|
|
|
|
s->addWithLabel("VIDEO PLAYER", video_player);
|
|
|
|
s->addSaveFunc([video_player, s] {
|
|
|
|
if (video_player->getSelected() != Settings::getInstance()->getString("VideoPlayer")) {
|
|
|
|
Settings::getInstance()->setString("VideoPlayer", video_player->getSelected());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
s->setNeedsReloading();
|
|
|
|
}
|
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2021-05-09 20:56:41 +00:00
|
|
|
|
2021-07-07 12:28:09 +00:00
|
|
|
// Exit button configuration.
|
2021-08-11 10:09:58 +00:00
|
|
|
auto exit_button_config = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "EXIT BUTTON COMBO", false);
|
2021-07-07 12:28:09 +00:00
|
|
|
std::string selectedExitButtonCombo = Settings::getInstance()->getString("ExitButtonCombo");
|
|
|
|
exit_button_config->add("F4", "F4", selectedExitButtonCombo == "F4");
|
|
|
|
exit_button_config->add("Alt + F4", "AltF4", selectedExitButtonCombo == "AltF4");
|
2021-08-11 10:09:58 +00:00
|
|
|
#if defined(_WIN64) || defined(__unix__)
|
2021-07-07 12:28:09 +00:00
|
|
|
exit_button_config->add("Alt + Q", "AltQ", selectedExitButtonCombo == "AltQ");
|
2021-08-11 10:09:58 +00:00
|
|
|
#endif
|
|
|
|
#if defined(__APPLE__)
|
2021-07-07 12:28:09 +00:00
|
|
|
exit_button_config->add("\u2318 + Q", "CmdQ", selectedExitButtonCombo == "CmdQ");
|
2021-08-11 10:09:58 +00:00
|
|
|
#endif
|
2021-07-07 12:28:09 +00:00
|
|
|
s->addWithLabel("EXIT BUTTON COMBO", exit_button_config);
|
|
|
|
s->addSaveFunc([exit_button_config, s] {
|
|
|
|
if (exit_button_config->getSelected() !=
|
|
|
|
Settings::getInstance()->getString("ExitButtonCombo")) {
|
|
|
|
Settings::getInstance()->setString("ExitButtonCombo",
|
2021-08-11 10:09:58 +00:00
|
|
|
exit_button_config->getSelected());
|
2021-07-07 12:28:09 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
// When to save game metadata.
|
2021-07-07 18:03:42 +00:00
|
|
|
auto save_gamelist_mode = std::make_shared<OptionListComponent<std::string>>(
|
|
|
|
mWindow, getHelpStyle(), "WHEN TO SAVE METADATA", false);
|
2020-06-21 12:25:28 +00:00
|
|
|
std::vector<std::string> saveModes;
|
|
|
|
saveModes.push_back("on exit");
|
|
|
|
saveModes.push_back("always");
|
|
|
|
saveModes.push_back("never");
|
2020-07-15 16:02:11 +00:00
|
|
|
for (auto it = saveModes.cbegin(); it != saveModes.cend(); it++) {
|
2021-07-07 18:03:42 +00:00
|
|
|
save_gamelist_mode->add(*it, *it,
|
|
|
|
Settings::getInstance()->getString("SaveGamelistsMode") == *it);
|
2020-07-15 16:02:11 +00:00
|
|
|
}
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addWithLabel("WHEN TO SAVE GAME METADATA", save_gamelist_mode);
|
|
|
|
s->addSaveFunc([save_gamelist_mode, s] {
|
|
|
|
if (save_gamelist_mode->getSelected() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getString("SaveGamelistsMode")) {
|
2020-10-19 15:16:57 +00:00
|
|
|
Settings::getInstance()->setString("SaveGamelistsMode",
|
2021-07-07 18:03:42 +00:00
|
|
|
save_gamelist_mode->getSelected());
|
|
|
|
// Always save the gamelist.xml files if switching to "always" as there may
|
2020-10-19 15:16:57 +00:00
|
|
|
// be changes that will otherwise be lost.
|
|
|
|
if (Settings::getInstance()->getString("SaveGamelistsMode") == "always") {
|
|
|
|
for (auto it = SystemData::sSystemVector.cbegin();
|
2021-07-07 18:03:42 +00:00
|
|
|
it != SystemData::sSystemVector.cend(); it++)
|
2020-10-19 15:16:57 +00:00
|
|
|
(*it)->writeMetaData();
|
|
|
|
}
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
2020-10-19 15:16:57 +00:00
|
|
|
}
|
2020-06-21 12:25:28 +00:00
|
|
|
});
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(_WIN64)
|
2020-11-05 17:18:11 +00:00
|
|
|
// Hide taskbar during the ES program session.
|
2020-07-18 11:21:44 +00:00
|
|
|
auto hide_taskbar = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
hide_taskbar->setState(Settings::getInstance()->getBool("HideTaskbar"));
|
|
|
|
s->addWithLabel("HIDE TASKBAR (REQUIRES RESTART)", hide_taskbar);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([hide_taskbar, s] {
|
2021-07-07 18:03:42 +00:00
|
|
|
if (hide_taskbar->getState() != Settings::getInstance()->getBool("HideTaskbar")) {
|
|
|
|
Settings::getInstance()->setBool("HideTaskbar", hide_taskbar->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2020-07-19 20:08:14 +00:00
|
|
|
|
|
|
|
// Run ES in the background when a game has been launched.
|
|
|
|
auto run_in_background = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
run_in_background->setState(Settings::getInstance()->getBool("RunInBackground"));
|
|
|
|
s->addWithLabel("RUN IN BACKGROUND (WHILE GAME IS LAUNCHED)", run_in_background);
|
2021-07-07 18:03:42 +00:00
|
|
|
s->addSaveFunc([run_in_background, s] {
|
2020-11-05 17:18:11 +00:00
|
|
|
if (run_in_background->getState() != Settings::getInstance()->getBool("RunInBackground")) {
|
|
|
|
Settings::getInstance()->setBool("RunInBackground", run_in_background->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-07-18 11:21:44 +00:00
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(_WIN64)
|
2021-06-30 16:08:13 +00:00
|
|
|
// Workaround for launching games on AMD and Intel graphics drivers.
|
|
|
|
auto launch_workaround = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
launch_workaround->setState(Settings::getInstance()->getBool("LaunchWorkaround"));
|
|
|
|
s->addWithLabel("AMD AND INTEL GPU GAME LAUNCH WORKAROUND", launch_workaround);
|
|
|
|
s->addSaveFunc([launch_workaround, s] {
|
|
|
|
if (launch_workaround->getState() != Settings::getInstance()->getBool("LaunchWorkaround")) {
|
|
|
|
Settings::getInstance()->setBool("LaunchWorkaround", launch_workaround->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-07-11 11:47:31 +00:00
|
|
|
// If the RunInBackground setting is enabled, then gray out this option.
|
2021-06-30 16:08:13 +00:00
|
|
|
if (Settings::getInstance()->getBool("RunInBackground")) {
|
|
|
|
launch_workaround->setEnabled(false);
|
|
|
|
launch_workaround->setOpacity(DISABLED_OPACITY);
|
2021-07-07 18:03:42 +00:00
|
|
|
launch_workaround->getParent()
|
|
|
|
->getChild(launch_workaround->getChildIndex() - 1)
|
|
|
|
->setOpacity(DISABLED_OPACITY);
|
2021-06-30 16:08:13 +00:00
|
|
|
}
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2021-06-30 16:08:13 +00:00
|
|
|
|
2021-07-14 17:13:25 +00:00
|
|
|
#if !defined(_RPI_)
|
|
|
|
// Whether to enable hardware decoding for the FFmpeg video player.
|
|
|
|
auto video_hardware_decoding = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
video_hardware_decoding->setState(Settings::getInstance()->getBool("VideoHardwareDecoding"));
|
|
|
|
#if defined(BUILD_VLC_PLAYER)
|
|
|
|
s->addWithLabel("FFMPEG HARDWARE DECODING (EXPERIMENTAL)", video_hardware_decoding);
|
|
|
|
#else
|
|
|
|
s->addWithLabel("VIDEO HARDWARE DECODING (EXPERIMENTAL)", video_hardware_decoding);
|
|
|
|
#endif
|
|
|
|
s->addSaveFunc([video_hardware_decoding, s] {
|
|
|
|
if (video_hardware_decoding->getState() !=
|
|
|
|
Settings::getInstance()->getBool("VideoHardwareDecoding")) {
|
|
|
|
Settings::getInstance()->setBool("VideoHardwareDecoding",
|
|
|
|
video_hardware_decoding->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
#endif
|
2021-06-30 16:08:13 +00:00
|
|
|
|
2021-05-29 08:55:40 +00:00
|
|
|
// Whether to upscale the video frame rate to 60 FPS.
|
|
|
|
auto video_upscale_frame_rate = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
video_upscale_frame_rate->setState(Settings::getInstance()->getBool("VideoUpscaleFrameRate"));
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(BUILD_VLC_PLAYER)
|
2021-05-29 08:55:40 +00:00
|
|
|
s->addWithLabel("UPSCALE VIDEO FRAME RATE TO 60 FPS (FFMPEG)", video_upscale_frame_rate);
|
2021-07-07 18:03:42 +00:00
|
|
|
#else
|
2021-06-22 22:24:15 +00:00
|
|
|
s->addWithLabel("UPSCALE VIDEO FRAME RATE TO 60 FPS", video_upscale_frame_rate);
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2021-05-29 08:55:40 +00:00
|
|
|
s->addSaveFunc([video_upscale_frame_rate, s] {
|
|
|
|
if (video_upscale_frame_rate->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("VideoUpscaleFrameRate")) {
|
|
|
|
Settings::getInstance()->setBool("VideoUpscaleFrameRate",
|
|
|
|
video_upscale_frame_rate->getState());
|
2021-05-29 08:55:40 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-09-04 09:21:55 +00:00
|
|
|
// Whether to enable alternative emulators per game (the option to disable this is intended
|
|
|
|
// primarily for testing purposes).
|
|
|
|
auto alternativeEmulatorPerGame = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
alternativeEmulatorPerGame->setState(
|
|
|
|
Settings::getInstance()->getBool("AlternativeEmulatorPerGame"));
|
|
|
|
s->addWithLabel("ENABLE ALTERNATIVE EMULATORS PER GAME", alternativeEmulatorPerGame);
|
|
|
|
s->addSaveFunc([alternativeEmulatorPerGame, s] {
|
|
|
|
if (alternativeEmulatorPerGame->getState() !=
|
|
|
|
Settings::getInstance()->getBool("AlternativeEmulatorPerGame")) {
|
|
|
|
Settings::getInstance()->setBool("AlternativeEmulatorPerGame",
|
|
|
|
alternativeEmulatorPerGame->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
// Show hidden files.
|
|
|
|
auto show_hidden_files = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
show_hidden_files->setState(Settings::getInstance()->getBool("ShowHiddenFiles"));
|
|
|
|
s->addWithLabel("SHOW HIDDEN FILES AND FOLDERS (REQUIRES RESTART)", show_hidden_files);
|
|
|
|
s->addSaveFunc([show_hidden_files, s] {
|
|
|
|
if (show_hidden_files->getState() != Settings::getInstance()->getBool("ShowHiddenFiles")) {
|
|
|
|
Settings::getInstance()->setBool("ShowHiddenFiles", show_hidden_files->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-07-26 20:19:29 +00:00
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
// Show hidden games.
|
|
|
|
auto show_hidden_games = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
show_hidden_games->setState(Settings::getInstance()->getBool("ShowHiddenGames"));
|
|
|
|
s->addWithLabel("SHOW HIDDEN GAMES (REQUIRES RESTART)", show_hidden_games);
|
|
|
|
s->addSaveFunc([show_hidden_games, s] {
|
|
|
|
if (show_hidden_games->getState() != Settings::getInstance()->getBool("ShowHiddenGames")) {
|
|
|
|
Settings::getInstance()->setBool("ShowHiddenGames", show_hidden_games->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
2020-07-26 20:19:29 +00:00
|
|
|
});
|
|
|
|
|
2020-07-15 16:02:11 +00:00
|
|
|
// Custom event scripts, fired using Scripting::fireEvent().
|
2020-07-09 17:24:20 +00:00
|
|
|
auto custom_eventscripts = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
custom_eventscripts->setState(Settings::getInstance()->getBool("CustomEventScripts"));
|
2020-10-31 09:01:19 +00:00
|
|
|
s->addWithLabel("ENABLE CUSTOM EVENT SCRIPTS", custom_eventscripts);
|
2020-11-05 17:18:11 +00:00
|
|
|
s->addSaveFunc([custom_eventscripts, s] {
|
|
|
|
if (custom_eventscripts->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("CustomEventScripts")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("CustomEventScripts", custom_eventscripts->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Only show ROMs included in the gamelist.xml files.
|
|
|
|
auto parse_gamelist_only = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
parse_gamelist_only->setState(Settings::getInstance()->getBool("ParseGamelistOnly"));
|
|
|
|
s->addWithLabel("ONLY SHOW ROMS FROM GAMELIST.XML FILES", parse_gamelist_only);
|
|
|
|
s->addSaveFunc([parse_gamelist_only, s] {
|
|
|
|
if (parse_gamelist_only->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("ParseGamelistOnly")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("ParseGamelistOnly", parse_gamelist_only->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(__unix__)
|
2021-02-22 20:13:06 +00:00
|
|
|
// Whether to disable desktop composition.
|
|
|
|
auto disable_composition = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
disable_composition->setState(Settings::getInstance()->getBool("DisableComposition"));
|
|
|
|
s->addWithLabel("DISABLE DESKTOP COMPOSITION (REQUIRES RESTART)", disable_composition);
|
|
|
|
s->addSaveFunc([disable_composition, s] {
|
|
|
|
if (disable_composition->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("DisableComposition")) {
|
|
|
|
Settings::getInstance()->setBool("DisableComposition", disable_composition->getState());
|
2021-02-22 20:13:06 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2021-02-22 20:13:06 +00:00
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
// GPU statistics overlay.
|
|
|
|
auto display_gpu_statistics = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
display_gpu_statistics->setState(Settings::getInstance()->getBool("DisplayGPUStatistics"));
|
|
|
|
s->addWithLabel("DISPLAY GPU STATISTICS OVERLAY", display_gpu_statistics);
|
|
|
|
s->addSaveFunc([display_gpu_statistics, s] {
|
|
|
|
if (display_gpu_statistics->getState() !=
|
2021-07-07 18:03:42 +00:00
|
|
|
Settings::getInstance()->getBool("DisplayGPUStatistics")) {
|
2020-11-05 17:18:11 +00:00
|
|
|
Settings::getInstance()->setBool("DisplayGPUStatistics",
|
2021-07-07 18:03:42 +00:00
|
|
|
display_gpu_statistics->getState());
|
2020-11-05 17:18:11 +00:00
|
|
|
s->setNeedsSaving();
|
|
|
|
}
|
|
|
|
});
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2020-12-17 22:45:29 +00:00
|
|
|
// Whether to enable the menu in Kid mode.
|
|
|
|
auto enable_menu_kid_mode = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
enable_menu_kid_mode->setState(Settings::getInstance()->getBool("EnableMenuKidMode"));
|
|
|
|
s->addWithLabel("ENABLE MENU IN KID MODE", enable_menu_kid_mode);
|
|
|
|
s->addSaveFunc([enable_menu_kid_mode, s] {
|
|
|
|
if (Settings::getInstance()->getBool("EnableMenuKidMode") !=
|
2021-07-07 18:03:42 +00:00
|
|
|
enable_menu_kid_mode->getState()) {
|
2020-12-17 22:45:29 +00:00
|
|
|
Settings::getInstance()->setBool("EnableMenuKidMode", enable_menu_kid_mode->getState());
|
|
|
|
s->setNeedsSaving();
|
2020-11-05 17:18:11 +00:00
|
|
|
}
|
|
|
|
});
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
// macOS requires root privileges to reboot and power off so it doesn't make much
|
|
|
|
// sense to enable this setting and menu entry for that operating system.
|
|
|
|
#if !defined(__APPLE__)
|
2020-12-17 22:45:29 +00:00
|
|
|
// Whether to show the quit menu with the options to reboot and shutdown the computer.
|
|
|
|
auto show_quit_menu = std::make_shared<SwitchComponent>(mWindow);
|
|
|
|
show_quit_menu->setState(Settings::getInstance()->getBool("ShowQuitMenu"));
|
|
|
|
s->addWithLabel("SHOW QUIT MENU (REBOOT AND POWER OFF ENTRIES)", show_quit_menu);
|
|
|
|
s->addSaveFunc([this, show_quit_menu, s] {
|
2021-07-07 18:03:42 +00:00
|
|
|
if (show_quit_menu->getState() != Settings::getInstance()->getBool("ShowQuitMenu")) {
|
2020-12-17 22:45:29 +00:00
|
|
|
Settings::getInstance()->setBool("ShowQuitMenu", show_quit_menu->getState());
|
|
|
|
s->setNeedsSaving();
|
|
|
|
GuiMenu::close(false);
|
2020-11-05 17:18:11 +00:00
|
|
|
}
|
|
|
|
});
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
#if defined(_WIN64)
|
2021-06-30 16:08:13 +00:00
|
|
|
// Switch callback.
|
2021-06-30 16:14:33 +00:00
|
|
|
auto launchWorkaroundToggleFunc = [launch_workaround]() {
|
2021-06-30 16:08:13 +00:00
|
|
|
if (launch_workaround->getEnabled()) {
|
|
|
|
launch_workaround->setEnabled(false);
|
|
|
|
launch_workaround->setOpacity(DISABLED_OPACITY);
|
2021-07-07 18:03:42 +00:00
|
|
|
launch_workaround->getParent()
|
|
|
|
->getChild(launch_workaround->getChildIndex() - 1)
|
|
|
|
->setOpacity(DISABLED_OPACITY);
|
2021-06-30 16:08:13 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
launch_workaround->setEnabled(true);
|
|
|
|
launch_workaround->setOpacity(255);
|
2021-07-07 18:03:42 +00:00
|
|
|
launch_workaround->getParent()
|
|
|
|
->getChild(launch_workaround->getChildIndex() - 1)
|
|
|
|
->setOpacity(255);
|
2021-06-30 16:08:13 +00:00
|
|
|
}
|
|
|
|
};
|
2021-06-30 16:14:33 +00:00
|
|
|
run_in_background->setCallback(launchWorkaroundToggleFunc);
|
2021-07-07 18:03:42 +00:00
|
|
|
#endif
|
2021-06-30 16:08:13 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
mWindow->pushGui(s);
|
2017-09-08 14:49:47 +00:00
|
|
|
}
|
2017-06-01 20:08:44 +00:00
|
|
|
|
2021-05-23 09:03:56 +00:00
|
|
|
void GuiMenu::openUtilitiesMenu()
|
|
|
|
{
|
|
|
|
auto s = new GuiSettings(mWindow, "UTILITIES");
|
|
|
|
mWindow->pushGui(s);
|
|
|
|
}
|
|
|
|
|
2017-09-08 14:49:47 +00:00
|
|
|
void GuiMenu::openQuitMenu()
|
|
|
|
{
|
2020-12-17 22:45:29 +00:00
|
|
|
if (!Settings::getInstance()->getBool("ShowQuitMenu")) {
|
2021-07-07 18:03:42 +00:00
|
|
|
mWindow->pushGui(new GuiMsgBox(
|
|
|
|
mWindow, this->getHelpStyle(), "REALLY QUIT?", "YES",
|
|
|
|
[this] {
|
|
|
|
Scripting::fireEvent("quit");
|
|
|
|
close(true);
|
|
|
|
quitES();
|
|
|
|
},
|
|
|
|
"NO", nullptr));
|
2020-12-17 22:45:29 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
auto s = new GuiSettings(mWindow, "QUIT");
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2020-12-17 22:45:29 +00:00
|
|
|
Window* window = mWindow;
|
|
|
|
HelpStyle style = getHelpStyle();
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2020-12-17 22:45:29 +00:00
|
|
|
ComponentListRow row;
|
|
|
|
|
|
|
|
row.makeAcceptInputHandler([window, this] {
|
2021-07-07 18:03:42 +00:00
|
|
|
window->pushGui(new GuiMsgBox(
|
|
|
|
window, this->getHelpStyle(), "REALLY QUIT?", "YES",
|
|
|
|
[this] {
|
2020-12-17 22:45:29 +00:00
|
|
|
Scripting::fireEvent("quit");
|
|
|
|
close(true);
|
|
|
|
quitES();
|
2021-07-07 18:03:42 +00:00
|
|
|
},
|
|
|
|
"NO", nullptr));
|
2020-12-17 22:45:29 +00:00
|
|
|
});
|
2021-10-14 20:21:21 +00:00
|
|
|
auto quitText = std::make_shared<TextComponent>(window, "QUIT EMULATIONSTATION",
|
|
|
|
Font::get(FONT_SIZE_MEDIUM), 0x777777FF);
|
|
|
|
quitText->setSelectable(true);
|
|
|
|
row.addElement(quitText, true);
|
2020-12-17 22:45:29 +00:00
|
|
|
s->addRow(row);
|
2020-06-21 12:25:28 +00:00
|
|
|
|
|
|
|
row.elements.clear();
|
|
|
|
row.makeAcceptInputHandler([window, this] {
|
2021-07-07 18:03:42 +00:00
|
|
|
window->pushGui(new GuiMsgBox(
|
|
|
|
window, this->getHelpStyle(), "REALLY REBOOT?", "YES",
|
|
|
|
[] {
|
2020-06-21 12:25:28 +00:00
|
|
|
Scripting::fireEvent("quit", "reboot");
|
|
|
|
Scripting::fireEvent("reboot");
|
2020-06-25 17:52:38 +00:00
|
|
|
if (quitES(QuitMode::REBOOT) != 0) {
|
2020-06-21 12:25:28 +00:00
|
|
|
LOG(LogWarning) << "Reboot terminated with non-zero result!";
|
2020-06-25 17:52:38 +00:00
|
|
|
}
|
2021-07-07 18:03:42 +00:00
|
|
|
},
|
|
|
|
"NO", nullptr));
|
2020-06-21 12:25:28 +00:00
|
|
|
});
|
2021-10-14 20:21:21 +00:00
|
|
|
auto rebootText = std::make_shared<TextComponent>(window, "REBOOT SYSTEM",
|
|
|
|
Font::get(FONT_SIZE_MEDIUM), 0x777777FF);
|
|
|
|
rebootText->setSelectable(true);
|
|
|
|
row.addElement(rebootText, true);
|
2020-06-21 12:25:28 +00:00
|
|
|
s->addRow(row);
|
|
|
|
|
|
|
|
row.elements.clear();
|
|
|
|
row.makeAcceptInputHandler([window, this] {
|
2021-07-07 18:03:42 +00:00
|
|
|
window->pushGui(new GuiMsgBox(
|
|
|
|
window, this->getHelpStyle(), "REALLY POWER OFF?", "YES",
|
|
|
|
[] {
|
2020-06-21 12:25:28 +00:00
|
|
|
Scripting::fireEvent("quit", "poweroff");
|
|
|
|
Scripting::fireEvent("poweroff");
|
2020-06-25 17:52:38 +00:00
|
|
|
if (quitES(QuitMode::POWEROFF) != 0) {
|
2020-06-21 12:25:28 +00:00
|
|
|
LOG(LogWarning) << "Power off terminated with non-zero result!";
|
2020-06-25 17:52:38 +00:00
|
|
|
}
|
2021-07-07 18:03:42 +00:00
|
|
|
},
|
|
|
|
"NO", nullptr));
|
2020-06-21 12:25:28 +00:00
|
|
|
});
|
2021-10-14 20:21:21 +00:00
|
|
|
auto powerOffText = std::make_shared<TextComponent>(
|
|
|
|
window, "POWER OFF SYSTEM", Font::get(FONT_SIZE_MEDIUM), 0x777777FF);
|
|
|
|
powerOffText->setSelectable(true);
|
|
|
|
row.addElement(powerOffText, true);
|
2020-06-21 12:25:28 +00:00
|
|
|
s->addRow(row);
|
|
|
|
|
2020-12-17 22:45:29 +00:00
|
|
|
mWindow->pushGui(s);
|
|
|
|
}
|
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::addVersionInfo()
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
mVersion.setFont(Font::get(FONT_SIZE_SMALL));
|
|
|
|
mVersion.setColor(0x5E5E5EFF);
|
|
|
|
mVersion.setText("EMULATIONSTATION-DE V" + Utils::String::toUpper(PROGRAM_VERSION_STRING));
|
|
|
|
mVersion.setHorizontalAlignment(ALIGN_CENTER);
|
|
|
|
addChild(&mVersion);
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 11:12:31 +00:00
|
|
|
void GuiMenu::openMediaViewerOptions()
|
|
|
|
{
|
|
|
|
mWindow->pushGui(new GuiMediaViewerOptions(mWindow, "MEDIA VIEWER SETTINGS"));
|
|
|
|
}
|
|
|
|
|
2020-11-06 19:27:41 +00:00
|
|
|
void GuiMenu::openScreensaverOptions()
|
|
|
|
{
|
2020-11-05 17:35:08 +00:00
|
|
|
mWindow->pushGui(new GuiScreensaverOptions(mWindow, "SCREENSAVER SETTINGS"));
|
2017-06-12 16:38:59 +00:00
|
|
|
}
|
|
|
|
|
2021-05-22 20:48:44 +00:00
|
|
|
void GuiMenu::openCollectionSystemOptions()
|
2020-11-06 19:27:41 +00:00
|
|
|
{
|
|
|
|
mWindow->pushGui(new GuiCollectionSystemsOptions(mWindow, "GAME COLLECTION SETTINGS"));
|
2017-06-01 20:08:44 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
void GuiMenu::onSizeChanged()
|
|
|
|
{
|
2021-08-16 16:25:01 +00:00
|
|
|
mVersion.setSize(mSize.x, 0.0f);
|
|
|
|
mVersion.setPosition(0.0f, mSize.y - mVersion.getSize().y);
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 18:03:42 +00:00
|
|
|
void GuiMenu::addEntry(const std::string& name,
|
|
|
|
unsigned int color,
|
|
|
|
bool add_arrow,
|
|
|
|
const std::function<void()>& func)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
std::shared_ptr<Font> font = Font::get(FONT_SIZE_MEDIUM);
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
// Populate the list.
|
|
|
|
ComponentListRow row;
|
|
|
|
row.addElement(std::make_shared<TextComponent>(mWindow, name, font, color), true);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
if (add_arrow) {
|
|
|
|
std::shared_ptr<ImageComponent> bracket = makeArrow(mWindow);
|
|
|
|
row.addElement(bracket, false);
|
|
|
|
}
|
2017-03-25 17:02:28 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
row.makeAcceptInputHandler(func);
|
|
|
|
mMenu.addRow(row);
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 18:03:31 +00:00
|
|
|
void GuiMenu::close(bool closeAllWindows)
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
std::function<void()> closeFunc;
|
|
|
|
if (!closeAllWindows) {
|
|
|
|
closeFunc = [this] { delete this; };
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Window* window = mWindow;
|
2021-09-19 12:37:10 +00:00
|
|
|
closeFunc = [window] {
|
2020-06-21 12:25:28 +00:00
|
|
|
while (window->peekGui() != ViewController::get())
|
|
|
|
delete window->peekGui();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
closeFunc();
|
2020-06-09 18:03:31 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
bool GuiMenu::input(InputConfig* config, Input input)
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
if (GuiComponent::input(config, input))
|
|
|
|
return true;
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
const bool isStart = config->isMappedTo("start", input);
|
|
|
|
if (input.value != 0 && (config->isMappedTo("b", input) || isStart)) {
|
|
|
|
close(isStart);
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
return false;
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<HelpPrompt> GuiMenu::getHelpPrompts()
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
std::vector<HelpPrompt> prompts;
|
|
|
|
prompts.push_back(HelpPrompt("up/down", "choose"));
|
|
|
|
prompts.push_back(HelpPrompt("a", "select"));
|
|
|
|
prompts.push_back(HelpPrompt("b", "close menu"));
|
|
|
|
prompts.push_back(HelpPrompt("start", "close menu"));
|
|
|
|
return prompts;
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
2020-06-07 18:09:02 +00:00
|
|
|
|
|
|
|
HelpStyle GuiMenu::getHelpStyle()
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
HelpStyle style = HelpStyle();
|
|
|
|
style.applyTheme(ViewController::get()->getState().getSystem()->getTheme(), "system");
|
|
|
|
return style;
|
2020-06-07 18:09:02 +00:00
|
|
|
}
|