2021-03-30 20:30:10 +01:00
|
|
|
/*
|
2021-06-11 05:41:58 +01:00
|
|
|
* main.cpp
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020-2021, DarkMatterCore <pabloacurielz@gmail.com>.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
#include <nxdt_utils.h>
|
2021-06-08 04:13:45 +01:00
|
|
|
#include <scope_guard.hpp>
|
2021-06-11 05:41:58 +01:00
|
|
|
#include <root_view.hpp>
|
2021-06-11 01:33:11 +01:00
|
|
|
|
2021-07-30 22:07:26 +01:00
|
|
|
using namespace brls::i18n::literals; /* For _i18n. */
|
|
|
|
|
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
|
|
|
{
|
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(); };
|
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* Initialize application resources. */
|
2021-06-08 04:13:45 +01:00
|
|
|
if (!utilsInitializeResources(argc, (const char**)argv)) return EXIT_FAILURE;
|
2021-03-30 20:30:10 +01:00
|
|
|
|
2021-06-09 05:48:17 +01:00
|
|
|
/* Set Borealis log level. */
|
2021-08-08 16:50:20 +01:00
|
|
|
/* TODO: rework this before release. */
|
2021-03-30 20:30:10 +01:00
|
|
|
brls::Logger::setLogLevel(brls::LogLevel::DEBUG);
|
2021-06-09 05:48:17 +01:00
|
|
|
|
|
|
|
/* Load Borealis translation files. */
|
2021-06-11 05:41:58 +01:00
|
|
|
brls::i18n::loadTranslations();
|
2021-06-09 05:48:17 +01:00
|
|
|
|
2021-08-08 16:50:20 +01:00
|
|
|
/* Set common footer. */
|
|
|
|
brls::Application::setCommonFooter("v" APP_VERSION " (" GIT_REV ")");
|
|
|
|
|
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;
|
2021-06-09 05:48:17 +01:00
|
|
|
|
2021-07-30 22:07:26 +01:00
|
|
|
/* Check if we're running under applet mode. */
|
|
|
|
if (utilsAppletModeCheck())
|
|
|
|
{
|
|
|
|
/* 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());
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
/* Push root view. */
|
|
|
|
brls::Application::pushView(new nxdt::views::RootView());
|
|
|
|
}
|
2021-06-11 05:41:58 +01:00
|
|
|
|
|
|
|
/* Run the application. */
|
|
|
|
while(brls::Application::mainLoop());
|
2021-03-30 20:30:10 +01:00
|
|
|
|
2021-06-11 05:41:58 +01:00
|
|
|
/* Exit. */
|
2021-03-30 20:30:10 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|