Initial Commit
This commit is contained in:
200
source/tools_tab.cpp
Normal file
200
source/tools_tab.cpp
Normal file
@@ -0,0 +1,200 @@
|
||||
#include "tools_tab.hpp"
|
||||
|
||||
#include <filesystem>
|
||||
#include <fstream>
|
||||
|
||||
#include "JC_page.hpp"
|
||||
#include "PC_page.hpp"
|
||||
#include "app_page.hpp"
|
||||
#include "cheats_page.hpp"
|
||||
#include "confirm_page.hpp"
|
||||
#include "extract.hpp"
|
||||
#include "fs.hpp"
|
||||
#include "hide_tabs_page.hpp"
|
||||
#include "net_page.hpp"
|
||||
#include "payload_page.hpp"
|
||||
#include "utils.hpp"
|
||||
#include "worker_page.hpp"
|
||||
|
||||
namespace i18n = brls::i18n;
|
||||
using namespace i18n::literals;
|
||||
using json = nlohmann::ordered_json;
|
||||
|
||||
namespace {
|
||||
constexpr const char AppVersion[] = APP_VERSION;
|
||||
}
|
||||
|
||||
ToolsTab::ToolsTab(const std::string& tag, const nlohmann::ordered_json& payloads, bool erista, const nlohmann::ordered_json& hideStatus) : brls::List()
|
||||
{
|
||||
if (!tag.empty() && tag != AppVersion) {
|
||||
brls::ListItem* updateApp = new brls::ListItem(fmt::format("menus/tools/update_app"_i18n, tag));
|
||||
std::string text("menus/tools/dl_app"_i18n + std::string(APP_URL));
|
||||
updateApp->getClickEvent()->subscribe([text, tag](brls::View* view) {
|
||||
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
|
||||
stagedFrame->setTitle("menus/common/updating"_i18n);
|
||||
stagedFrame->addStage(
|
||||
new ConfirmPage(stagedFrame, text));
|
||||
stagedFrame->addStage(
|
||||
new WorkerPage(stagedFrame, "menus/common/downloading"_i18n, []() { util::downloadArchive(APP_URL, contentType::app); }));
|
||||
stagedFrame->addStage(
|
||||
new WorkerPage(stagedFrame, "menus/common/extracting"_i18n, []() { util::extractArchive(contentType::app); }));
|
||||
stagedFrame->addStage(
|
||||
new ConfirmPage_AppUpdate(stagedFrame, "menus/common/all_done"_i18n));
|
||||
brls::Application::pushView(stagedFrame);
|
||||
});
|
||||
updateApp->setHeight(LISTITEM_HEIGHT);
|
||||
this->addView(updateApp);
|
||||
}
|
||||
|
||||
brls::ListItem* cheats = new brls::ListItem("menus/tools/cheats"_i18n);
|
||||
cheats->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::PopupFrame::open("menus/cheats/menu"_i18n, new CheatsPage(), "", "");
|
||||
});
|
||||
cheats->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* outdatedTitles = new brls::ListItem("menus/tools/outdated_titles"_i18n);
|
||||
outdatedTitles->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::PopupFrame::open("menus/tools/outdated_titles"_i18n, new AppPage_OutdatedTitles(), "menus/tools/outdated_titles_desc"_i18n, "");
|
||||
});
|
||||
outdatedTitles->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* JCcolor = new brls::ListItem("menus/tools/joy_cons"_i18n);
|
||||
JCcolor->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::Application::pushView(new JCPage());
|
||||
});
|
||||
JCcolor->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* PCcolor = new brls::ListItem("menus/tools/pro_cons"_i18n);
|
||||
PCcolor->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::Application::pushView(new PCPage());
|
||||
});
|
||||
PCcolor->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* rebootPayload = new brls::ListItem("menus/tools/inject_payloads"_i18n);
|
||||
rebootPayload->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::PopupFrame::open("menus/tools/inject_payloads"_i18n, new PayloadPage(), "", "");
|
||||
});
|
||||
rebootPayload->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* netSettings = new brls::ListItem("menus/tools/internet_settings"_i18n);
|
||||
netSettings->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::PopupFrame::open("menus/tools/internet_settings"_i18n, new NetPage(), "", "");
|
||||
});
|
||||
netSettings->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* browser = new brls::ListItem("menus/tools/browser"_i18n);
|
||||
browser->getClickEvent()->subscribe([](brls::View* view) {
|
||||
std::string url;
|
||||
if (brls::Swkbd::openForText([&url](std::string text) { url = text; }, "cheatslips.com e-mail", "", 256, "https://duckduckgo.com", 0, "Submit", "https://website.tld")) {
|
||||
util::openWebBrowser(url);
|
||||
}
|
||||
});
|
||||
browser->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* move = new brls::ListItem("menus/tools/batch_copy"_i18n);
|
||||
move->getClickEvent()->subscribe([](brls::View* view) {
|
||||
chdir("/");
|
||||
std::string error = "";
|
||||
if (std::filesystem::exists(COPY_FILES_TXT)) {
|
||||
error = fs::copyFiles(COPY_FILES_TXT);
|
||||
}
|
||||
else {
|
||||
error = "menus/tools/batch_copy_config_not_found"_i18n;
|
||||
}
|
||||
util::showDialogBoxInfo(error);
|
||||
});
|
||||
move->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* cleanUp = new brls::ListItem("menus/tools/clean_up"_i18n);
|
||||
cleanUp->getClickEvent()->subscribe([](brls::View* view) {
|
||||
std::filesystem::remove(AMS_FILENAME);
|
||||
std::filesystem::remove(APP_FILENAME);
|
||||
std::filesystem::remove(FIRMWARE_FILENAME);
|
||||
std::filesystem::remove(CHEATS_FILENAME);
|
||||
std::filesystem::remove(BOOTLOADER_FILENAME);
|
||||
std::filesystem::remove(CHEATS_VERSION);
|
||||
std::filesystem::remove(CUSTOM_FILENAME);
|
||||
fs::removeDir(AMS_DIRECTORY_PATH);
|
||||
fs::removeDir(SEPT_DIRECTORY_PATH);
|
||||
fs::removeDir(FW_DIRECTORY_PATH);
|
||||
util::showDialogBoxInfo("menus/common/all_done"_i18n);
|
||||
});
|
||||
cleanUp->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* language = new brls::ListItem("menus/tools/language"_i18n);
|
||||
language->getClickEvent()->subscribe([](brls::View* view) {
|
||||
std::vector<std::pair<std::string, std::string>> languages{
|
||||
std::make_pair("American English ({})", "en-US"),
|
||||
std::make_pair("日本語 ({})", "ja"),
|
||||
std::make_pair("Français ({})", "fr"),
|
||||
std::make_pair("Deutsch ({})", "de"),
|
||||
std::make_pair("Italiano ({})", "it"),
|
||||
std::make_pair("Español ({})", "es"),
|
||||
std::make_pair("Português ({})", "pt-BR"),
|
||||
std::make_pair("Nederlands ({})", "nl"),
|
||||
std::make_pair("Русский ({})", "ru"),
|
||||
std::make_pair("Română ({})", "ro"),
|
||||
std::make_pair("한국어 ({})", "ko"),
|
||||
std::make_pair("Polski ({})", "pl"),
|
||||
std::make_pair("简体中文 ({})", "zh-CN"),
|
||||
std::make_pair("繁體中文 ({})", "zh-TW"),
|
||||
std::make_pair("English (Great Britain) ({})", "en-GB"),
|
||||
std::make_pair("Français (Canada) ({})", "fr-CA"),
|
||||
std::make_pair("Español (Latinoamérica) ({})", "es-419"),
|
||||
std::make_pair("Português brasileiro ({})", "pt-BR"),
|
||||
std::make_pair("Traditional Chinese ({})", "zh-Hant"),
|
||||
std::make_pair("Simplified Chinese ({})", "zh-Hans")};
|
||||
brls::AppletFrame* appView = new brls::AppletFrame(true, true);
|
||||
brls::List* list = new brls::List();
|
||||
brls::ListItem* listItem;
|
||||
listItem = new brls::ListItem(fmt::format("System Default ({})", i18n::getCurrentLocale()));
|
||||
listItem->registerAction("menus/tools/language"_i18n, brls::Key::A, [] {
|
||||
std::filesystem::remove(LANGUAGE_JSON);
|
||||
brls::Application::quit();
|
||||
return true;
|
||||
});
|
||||
list->addView(listItem);
|
||||
for (auto& language : languages) {
|
||||
if (std::filesystem::exists(fmt::format(LOCALISATION_FILE, language.second))) {
|
||||
listItem = new brls::ListItem(fmt::format(language.first, language.second));
|
||||
listItem->registerAction("menus/tools/language"_i18n, brls::Key::A, [language] {
|
||||
json updatedLanguage = json::object();
|
||||
updatedLanguage["language"] = language.second;
|
||||
std::ofstream out(LANGUAGE_JSON);
|
||||
out << updatedLanguage.dump();
|
||||
brls::Application::quit();
|
||||
return true;
|
||||
});
|
||||
list->addView(listItem);
|
||||
}
|
||||
}
|
||||
appView->setContentView(list);
|
||||
brls::PopupFrame::open("menus/tools/language"_i18n, appView, "", "");
|
||||
});
|
||||
language->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* hideTabs = new brls::ListItem("menus/tools/hide_tabs"_i18n);
|
||||
hideTabs->getClickEvent()->subscribe([](brls::View* view) {
|
||||
brls::PopupFrame::open("menus/tools/hide_tabs"_i18n, new HideTabsPage(), "", "");
|
||||
});
|
||||
hideTabs->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
brls::ListItem* changelog = new brls::ListItem("menus/tools/changelog"_i18n);
|
||||
changelog->getClickEvent()->subscribe([](brls::View* view) {
|
||||
util::openWebBrowser(CHANGELOG_URL);
|
||||
});
|
||||
changelog->setHeight(LISTITEM_HEIGHT);
|
||||
|
||||
if (!util::getBoolValue(hideStatus, "cheats")) this->addView(cheats);
|
||||
// if (!util::getBoolValue(hideStatus, "outdatedtitles")) this->addView(outdatedTitles);
|
||||
// if (!util::getBoolValue(hideStatus, "jccolor")) this->addView(JCcolor);
|
||||
// if (!util::getBoolValue(hideStatus, "pccolor")) this->addView(PCcolor);
|
||||
// if (erista && !util::getBoolValue(hideStatus, "rebootpayload")) this->addView(rebootPayload);
|
||||
// if (!util::getBoolValue(hideStatus, "netsettings")) this->addView(netSettings);
|
||||
// if (!util::getBoolValue(hideStatus, "browser")) this->addView(browser);
|
||||
// if (!util::getBoolValue(hideStatus, "move")) this->addView(move);
|
||||
// if (!util::getBoolValue(hideStatus, "cleanup")) this->addView(cleanUp);
|
||||
// if (!util::getBoolValue(hideStatus, "language")) this->addView(language);
|
||||
// this->addView(hideTabs);
|
||||
// this->addView(changelog);
|
||||
}
|
||||
Reference in New Issue
Block a user