2021-03-30 20:30:10 +01:00
|
|
|
/*
|
2021-06-11 05:41:58 +01:00
|
|
|
* main.cpp
|
|
|
|
*
|
2024-04-12 10:47:36 +01:00
|
|
|
* Copyright (c) 2020-2024, DarkMatterCore <pabloacurielz@gmail.com>.
|
2021-06-11 05:41:58 +01:00
|
|
|
*
|
|
|
|
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
|
|
|
|
*
|
|
|
|
* nxdumptool is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* nxdumptool is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-03-30 20:30:10 +01:00
|
|
|
|
2024-04-30 22:01:42 +01:00
|
|
|
#include <core/nxdt_utils.h>
|
|
|
|
#include <utils/scope_guard.hpp>
|
|
|
|
#include <views/root_view.hpp>
|
2021-06-11 01:33:11 +01:00
|
|
|
|
2022-07-27 23:53:52 +01:00
|
|
|
namespace i18n = brls::i18n; /* For getStr(). */
|
|
|
|
using namespace i18n::literals; /* For _i18n. */
|
2021-07-30 22:07:26 +01:00
|
|
|
|
2021-08-25 21:48:01 +01:00
|
|
|
bool g_borealisInitialized = false;
|
|
|
|
|
2021-06-11 02:13:26 +01:00
|
|
|
int main(int argc, char *argv[])
|
2021-03-30 20:30:10 +01:00
|
|
|
{
|
2023-12-20 19:32:48 +00:00
|
|
|
NX_IGNORE_ARG(argc);
|
|
|
|
NX_IGNORE_ARG(argv);
|
|
|
|
|
2021-06-11 05:41:58 +01:00
|
|
|
/* Set scope guard to clean up resources at exit. */
|
2021-06-08 04:13:45 +01:00
|
|
|
ON_SCOPE_EXIT { utilsCloseResources(); };
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* Initialize application resources. */
|
2023-12-20 19:32:48 +00:00
|
|
|
if (!utilsInitializeResources()) return EXIT_FAILURE;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* Load Borealis translation files. */
|
2021-06-11 05:41:58 +01:00
|
|
|
brls::i18n::loadTranslations();
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-08-08 16:50:20 +01:00
|
|
|
/* Set common footer. */
|
|
|
|
brls::Application::setCommonFooter("v" APP_VERSION " (" GIT_REV ")");
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* Initialize Borealis. */
|
2021-06-09 19:06:10 +01:00
|
|
|
if (!brls::Application::init(APP_TITLE)) return EXIT_FAILURE;
|
2021-08-25 21:48:01 +01:00
|
|
|
g_borealisInitialized = true;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2022-07-27 23:53:52 +01:00
|
|
|
try {
|
|
|
|
/* Check if we're running under applet mode. */
|
2023-04-08 12:34:53 +01:00
|
|
|
if (utilsIsAppletMode())
|
2022-07-27 23:53:52 +01:00
|
|
|
{
|
|
|
|
/* Push crash frame with the applet mode warning. */
|
|
|
|
brls::Application::pushView(new brls::CrashFrame("generic/applet_mode_warning"_i18n, [](brls::View *view) {
|
|
|
|
/* Swap crash frame with root view whenever the crash frame button is clicked. */
|
|
|
|
//brls::Application::swapView(new nxdt::views::RootView());
|
|
|
|
/* TODO: restore original behavior after fixing the applet mode issues. */
|
|
|
|
brls::Application::quit();
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
/* Push root view. */
|
|
|
|
brls::Application::pushView(new nxdt::views::RootView());
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2022-07-27 23:53:52 +01:00
|
|
|
/* Run the application. */
|
|
|
|
while(brls::Application::mainLoop());
|
|
|
|
} catch (...) {
|
|
|
|
std::exception_ptr p = std::current_exception();
|
|
|
|
LOG_MSG_ERROR("Exception caught! (%s).", p ? p.__cxa_exception_type()->name() : "unknown");
|
|
|
|
brls::Application::crash(i18n::getStr("generic/exception_caught"_i18n, p ? p.__cxa_exception_type()->name() : "generic/unknown_exception"_i18n));
|
|
|
|
while(brls::Application::mainLoop());
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-11 05:41:58 +01:00
|
|
|
/* Exit. */
|
2021-03-30 20:30:10 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|