Simplified definitions

This commit is contained in:
XargonWan 2024-10-30 22:47:03 +09:00
parent d3f0041043
commit c20f78822c
7 changed files with 20 additions and 26 deletions

View file

@ -348,7 +348,6 @@ endif()
if(RETRODECK)
add_compile_definitions(RETRODECK)
add_compile_definitions(__RETRODECK__)
message("-- Building for RetroDECK")
endif()

View file

@ -58,7 +58,7 @@ GuiMenu::GuiMenu()
if (isFullUI)
addEntry(_("SCRAPER"), mMenuColorPrimary, true, [this] { openScraperOptions(); });
#if defined(__RETRODECK__)
#if defined(RETRODECK)
if (isFullUI)
addEntry(_("RETRODECK CLASSIC CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); });
@ -97,7 +97,7 @@ GuiMenu::GuiMenu()
#elif defined(__ANDROID__)
if (!AndroidVariables::sIsHomeApp)
addEntry(_("QUIT ES-DE"), mMenuColorPrimary, false, [this] { openQuitMenu(); });
#elif defined(__RETRODECK__)
#elif defined(RETRODECK)
addEntry(_("QUIT RETRODECK"), mMenuColorPrimary, false, [this] { openQuitMenu(); });
#else
if (Settings::getInstance()->getBool("ShowQuitMenu"))
@ -2202,7 +2202,7 @@ void GuiMenu::openUtilities()
mWindow->pushGui(s);
}
#if defined(__RETRODECK__)
#if defined(RETRODECK)
void GuiMenu::openESDEConfiguration() {
// RetroDECK: Create a new GuiSettings instance for the ES-DE Configurations menu
@ -2355,14 +2355,7 @@ void GuiMenu::addVersionInfo()
mVersion.setAutoCalcExtent(glm::ivec2 {0, 0});
mVersion.setColor(mMenuColorTertiary);
const std::string applicationName =
#if defined(__RETRODECK__)
"RetroDECK";
#else
"ES-DE";
#endif
#if defined(__RETRODECK__)
#if defined(RETRODECK)
// Only execute this block if RETRODECK is defined
LOG(LogInfo) << "Reading /app/retrodeck/version...";
std::ifstream versionFile("/app/retrodeck/version");
@ -2371,12 +2364,12 @@ void GuiMenu::addVersionInfo()
// Attempt to open the version file and read a line into retroDeckVersion;
// also check that the line is not empty to ensure valid version information
if (versionFile && std::getline(versionFile, retroDeckVersion) && !retroDeckVersion.empty()) {
mVersion.setText(applicationName + " " + retroDeckVersion);
mVersion.setText("RetroDECK" + " " + retroDeckVersion);
LOG(LogInfo) << "RetroDECK version read OK.";
} else {
LOG(LogInfo) << "Error: Cannot read version from file or file is empty!";
retroDeckVersion = "UNKNOWN";
mVersion.setText(applicationName + " " + retroDeckVersion);
mVersion.setText("RetroDECK" + " " + retroDeckVersion);
}
#else // If RETRODECK is NOT defined, execute this block
@ -2500,7 +2493,7 @@ std::vector<HelpPrompt> GuiMenu::getHelpPrompts()
return prompts;
}
#if defined(__RETRODECK__)
#if defined(RETRODECK)
void GuiMenu::openRetroDeckClassicConfigurator()
{

View file

@ -47,7 +47,7 @@ private:
void openUtilities();
void openQuitMenu();
#if defined(__RETRODECK__)
#if defined(RETRODECK)
void openRetroDeckClassicConfigurator();
void openRetroDeckGodotConfigurator();
void openESDEConfiguration();

View file

@ -636,7 +636,7 @@ void GuiThemeDownloader::parseThemesList()
LOG(LogWarning) << "Not running the most current application release, theme "
"downloading is not recommended";
#if defined(__RETRODECK__)
#if defined(RETRODECK)
mWindow->pushGui(new GuiMsgBox(
getHelpStyle(),
_("ES-DE THEME ENGINE WAS UPDATED UPSTREAM. THESE THEMES MAY NOT BE COMPATIBLE WITH THE CURRENT RETRODECK VERSION."

View file

@ -695,12 +695,14 @@ int main(int argc, char* argv[])
Log::open();
{
const std::string applicationName =
#if defined(__RETRODECK__)
"RetroDECK";
#else
"ES-DE";
#endif
// const std::string applicationName =
// #if defined(RETRODECK)
// "RetroDECK";
// #else
// "ES-DE";
// #endif
const std::string applicationName = "ES-DE";
#if defined(__ANDROID__)
LOG(LogInfo) << applicationName << " " << PROGRAM_VERSION_STRING << "-"

View file

@ -262,7 +262,7 @@ void ViewController::invalidSystemsFileDialog()
void ViewController::noGamesDialog()
{
#if defined(__RETRODECK__)
#if defined(RETRODECK)
mNoGamesErrorMessage = _("NO GAME WERE FOUND. PLEASE PLACE YOUR GAMES IN "
"THE RETRODECK ROM DIRECTORY LOCATED IN:\n");
#elif defined(__ANDROID__)
@ -288,7 +288,7 @@ void ViewController::noGamesDialog()
mRomDirectory = FileData::getROMDirectory();
#endif
#if defined(__RETRODECK__)
#if defined(RETRODECK)
// Show a simple message with a "QUIT" option if RETRODECK is defined
mNoGamesMessageBox = new GuiMsgBox(
HelpStyle(),

View file

@ -171,7 +171,7 @@ bool Window::init()
progressBarRect.barHeight -= borderThickness * 2.0f;
progressBarRect.barPosX += borderThickness;
progressBarRect.barPosY += borderThickness;
#if defined(__RETRODECK__)
#if defined(RETRODECK)
progressBarRect.color = 0xC858E6FF;
#else
progressBarRect.color = 0x79010FFF;