1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 11:31:43 +00:00
AIO-switch-updater/source/app_page.cpp

105 lines
3.5 KiB
C++
Raw Normal View History

2020-09-20 01:21:28 +01:00
#include "app_page.hpp"
2021-02-10 16:28:47 +00:00
#include <switch.h>
#include "utils.hpp"
#include <filesystem>
#include <fstream>
#include "current_cfw.hpp"
#include "worker_page.hpp"
#include "confirm_page.hpp"
#include "download_cheats_page.hpp"
namespace i18n = brls::i18n;
using namespace i18n::literals;
2021-02-12 22:20:16 +00:00
AppPage::AppPage(const bool cheatSlips) : AppletFrame(true, true)
2020-09-20 01:21:28 +01:00
{
2021-03-10 20:54:17 +00:00
this->setTitle(cheatSlips ? "menus/cheats/cheastlips_title"_i18n : "menus/cheats/installed"_i18n);
2020-09-20 01:21:28 +01:00
list = new brls::List();
label = new brls::Label(
brls::LabelStyle::DESCRIPTION,
2021-03-01 18:19:17 +00:00
cheatSlips ? "menus/cheats/cheatslips_select"_i18n : "menus/cheats/label"_i18n,
2020-09-20 01:21:28 +01:00
true
);
list->addView(label);
NsApplicationRecord record;
uint64_t tid;
NsApplicationControlData controlData;
NacpLanguageEntry* langEntry = NULL;
Result rc;
size_t i = 0;
int recordCount = 0;
size_t controlSize = 0;
titles = readLineByLine(UPDATED_TITLES_PATH);
if(!titles.empty() || cheatSlips){
2020-09-20 01:21:28 +01:00
while (true)
{
rc = nsListApplicationRecord(&record, sizeof(record), i, &recordCount);
if (R_FAILED(rc)) break;
if(recordCount <= 0) break;
2020-09-20 01:21:28 +01:00
tid = record.application_id;
rc = nsGetApplicationControlData(NsApplicationControlSource_Storage, tid, &controlData, sizeof(controlData), &controlSize);
if (R_FAILED(rc)) break;
rc = nacpGetLanguageEntry(&controlData.nacp, &langEntry);
if (R_FAILED(rc)) break;
if (!langEntry->name) {
i++;
continue;
}
if(!cheatSlips && titles.find(formatApplicationId(tid)) == titles.end()) {
2020-09-20 01:21:28 +01:00
i++;
continue;
}
listItem = new brls::ListItem(std::string(langEntry->name), "", formatApplicationId(tid));
listItem->setThumbnail(controlData.icon, sizeof(controlData.icon));
if(cheatSlips){
listItem->getClickEvent()->subscribe([&, tid](brls::View* view) {
brls::Application::pushView(new DownloadCheatsPage(tid));
});
}
2020-09-20 01:21:28 +01:00
list->addView(listItem);
i++;
}
}
2021-03-01 18:19:17 +00:00
std::string text("menus/cheats/downloading"_i18n);
2020-09-20 01:21:28 +01:00
std::string url = "";
2021-02-10 16:28:47 +00:00
switch(running_cfw){
2020-09-20 01:21:28 +01:00
case ams:
url += CHEATS_URL_CONTENTS;
break;
case rnx:
url += CHEATS_URL_CONTENTS;
break;
case sxos:
url += CHEATS_URL_CONTENTS;
break;
}
text += url;
download = new brls::ListItem("menus/cheats/dl_latest"_i18n);
2020-09-20 01:21:28 +01:00
archiveType type = cheats;
download->getClickEvent()->subscribe([&, url, text, type](brls::View* view) {
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
2021-03-10 20:54:17 +00:00
stagedFrame->setTitle("menus/cheats/getting_cheats"_i18n);
2020-09-20 01:21:28 +01:00
stagedFrame->addStage(
new ConfirmPage(stagedFrame, text)
);
stagedFrame->addStage(
2021-03-10 20:54:17 +00:00
new WorkerPage(stagedFrame, "menus/common/downloading"_i18n, [url, type](){downloadArchive(url, type);})
2020-09-20 01:21:28 +01:00
);
stagedFrame->addStage(
2021-03-10 20:54:17 +00:00
new WorkerPage(stagedFrame, "menus/common/extracting"_i18n, [type](){extractArchive(type);})
2020-09-20 01:21:28 +01:00
);
stagedFrame->addStage(
2021-03-10 20:54:17 +00:00
new ConfirmPage(stagedFrame, "menus/common/all_done"_i18n, true)
2020-09-20 01:21:28 +01:00
);
brls::Application::pushView(stagedFrame);
});
list->addView(download);
this->setContentView(list);
}