#include "download_cheats_page.hpp" #include #include #include "constants.hpp" #include "current_cfw.hpp" #include "download.hpp" #include "extract.hpp" #include "fs.hpp" #include "utils.hpp" namespace i18n = brls::i18n; using namespace i18n::literals; using json = nlohmann::ordered_json; namespace cheats_util { u32 GetVersion(uint64_t title_id) { u32 res = 0; NsApplicationContentMetaStatus* MetaSatus = new NsApplicationContentMetaStatus[100U]; s32 out; nsListApplicationContentMetaStatus(title_id, 0, MetaSatus, 100, &out); for (int i = 0; i < out; i++) { if (res < MetaSatus[i].version) res = MetaSatus[i].version; } return res; } void ShowCheatSheet(u64 tid, const std::string& bid, const std::string& name) { std::string path = fmt::format("{}{}/cheats/{}.txt", util::getContentsPath(), util::formatApplicationId(tid), bid); brls::AppletFrame* appView = new brls::AppletFrame(true, true); brls::List* cheatsList = new brls::List(); if (std::filesystem::exists(path) && CreateCheatList(path, &cheatsList)) { appView->setContentView(cheatsList); appView->registerAction("menus/cheats/delete_file"_i18n, brls::Key::X, [tid, bid] { DeleteCheats(tid, bid); util::showDialogBoxInfo("menus/common/all_done"_i18n); return true; }); brls::PopupFrame::open(name, appView, ""); } else { util::showDialogBoxInfo("menus/cheats/not_found"_i18n); } } void ShowCheatFiles(u64 tid, const std::string& name) { std::string path = util::getContentsPath(); path += util::formatApplicationId(tid) + "/cheats/"; brls::TabFrame* appView = new brls::TabFrame(); bool is_populated = false; if (std::filesystem::exists(path)) { for (const auto& cheatFile : std::filesystem::directory_iterator(path)) { brls::List* cheatsList = new brls::List(); is_populated |= CreateCheatList(cheatFile.path(), &cheatsList); if (is_populated) { appView->addTab(util::upperCase(cheatFile.path().stem()), cheatsList); } } } if (is_populated) { brls::PopupFrame::open(name, appView, ""); } else { util::showDialogBoxInfo("menus/cheats/not_found"_i18n); } } bool CreateCheatList(const std::filesystem::path& path, brls::List** cheatsList) { bool res = false; if (extract::isBID(path.filename().stem())) { (*cheatsList)->addView(new brls::Label(brls::LabelStyle::DESCRIPTION, fmt::format("menus/cheats/cheatfile_label"_i18n, path.filename().string()), true)); std::string str; std::regex cheats_expr(R"(\[.+\]|\{.+\})"); std::ifstream in(path); if (in) { while (std::getline(in, str)) { if (str.size() > 0) { if (std::regex_search(str, cheats_expr)) { (*cheatsList)->addView(new brls::ListItem(str)); res = true; } } } } } return res; } void DeleteCheats(u64 tid, const std::string& bid) { std::filesystem::remove(fmt::format("{}{:016X}/cheats/{}.txt", util::getContentsPath(), tid, bid)); } } // namespace cheats_util DownloadCheatsPage::DownloadCheatsPage(uint64_t tid, const std::string& name) : AppletFrame(true, true), tid(tid), name(name) { this->list = new brls::List(); this->version = cheats_util::GetVersion(this->tid); this->GetBuildID(); this->setTitle(this->name); this->setFooterText("v" + std::to_string(this->version / 0x10000)); this->brls::AppletFrame::registerAction("menus/cheats/show_existing"_i18n, brls::Key::X, [this] { cheats_util::ShowCheatSheet(this->tid, this->bid, this->name); return true; }); this->rebuildHints(); } void DownloadCheatsPage::GetBuildID() { if (util::isApplet() && CurrentCfw::running_cfw == CFW::ams) this->GetBuildIDFromDmnt(); if (this->bid == "") this->GetBuildIDFromFile(); } void DownloadCheatsPage::GetBuildIDFromDmnt() { static Service g_dmntchtSrv; DmntCheatProcessMetadata metadata; smGetService(&g_dmntchtSrv, "dmnt:cht"); serviceDispatch(&g_dmntchtSrv, 65003); serviceDispatchOut(&g_dmntchtSrv, 65002, metadata); serviceClose(&g_dmntchtSrv); if (metadata.title_id == this->tid) { u64 buildID = 0; memcpy(&buildID, metadata.main_nso_build_id, sizeof(u64)); this->bid = fmt::format("{:016X}", __builtin_bswap64(buildID)); } } void DownloadCheatsPage::GetBuildIDFromFile() { nlohmann::ordered_json versions_json; download::getRequest(VERSIONS_DIRECTORY + util::formatApplicationId(this->tid) + ".json", versions_json); std::string version_str = std::to_string(this->version); if (versions_json.find(version_str) != versions_json.end()) { this->bid = versions_json.at(version_str).get(); } else { this->bid = ""; } } void DownloadCheatsPage::WriteCheats(const std::string& cheatContent) { std::string path = util::getContentsPath() + util::formatApplicationId(this->tid) + "/cheats/"; fs::createTree(path); std::ofstream cheatFile(path + this->bid + ".txt", std::ios::app); cheatFile << "\n\n" << cheatContent; } void DownloadCheatsPage::AddCheatsfileListItem() { brls::ListItem* item = new brls::ListItem("menus/cheats/show_cheat_files"_i18n); item->getClickEvent()->subscribe([this](brls::View* view) { cheats_util::ShowCheatFiles(this->tid, this->name); }); this->list->addView(item); } void DownloadCheatsPage::ShowBidNotFound() { brls::Label* label = new brls::Label( brls::LabelStyle::REGULAR, "menus/cheats/bid_not_found"_i18n, true); this->list->addView(label); } void DownloadCheatsPage::ShowCheatsNotFound(const std::string& versionsWithCheats) { brls::Label* label = new brls::Label( brls::LabelStyle::REGULAR, "menus/cheats/cheats_not_found"_i18n + (!versionsWithCheats.empty() ? "\n" + fmt::format("menus/cheats/old_cheats_found"_i18n, versionsWithCheats) : ""), true); this->list->addView(label); } DownloadCheatsPage_CheatSlips::DownloadCheatsPage_CheatSlips(uint64_t tid, const std::string& name) : DownloadCheatsPage(tid, name) { this->label = new brls::Label( brls::LabelStyle::DESCRIPTION, "menus/cheats/cheatslips_dl"_i18n + "\n\uE016 Title ID: " + util::formatApplicationId(this->tid) + "\n\uE016 Build ID: " + this->bid, true); this->list->addView(this->label); if (this->bid != "") { std::vector headers = {"accept: application/json"}; nlohmann::ordered_json cheatsInfo; download::getRequest(CHEATSLIPS_CHEATS_URL + util::formatApplicationId(this->tid) + "/" + this->bid, cheatsInfo, headers); if (cheatsInfo.find("cheats") != cheatsInfo.end()) { for (const auto& p : cheatsInfo.at("cheats").items()) { json cheat = p.value(); listItem = new brls::ToggleListItem(GetCheatsTitle(cheat), 0, "", "\uE016", "o"); this->listItem->registerAction("menus/cheats/cheatslips_see_more"_i18n, brls::Key::Y, [this, cheat] { if (cheat.find("titles") != cheat.end()) { ShowCheatsContent(cheat.at("titles")); } return true; }); this->toggles.push_back(std::make_pair(listItem, cheat.at("id"))); list->addView(listItem); } if (this->list->getViewsCount() > 1) this->list->addView(new brls::ListItemGroupSpacing(true)); } else { ShowCheatsNotFound(); } } else { ShowBidNotFound(); } this->list->registerAction((this->bid != "") ? "menus/cheats/cheatslips_dl_cheats"_i18n : "brls/hints/back"_i18n, brls::Key::B, [this] { std::vector ids; for (auto& e : toggles) { if (e.first->getToggleState()) { ids.push_back(e.second); } } int error = 0; if (!ids.empty()) { json token; std::ifstream tokenFile(TOKEN_PATH); tokenFile >> token; tokenFile.close(); std::vector headers = {"accept: application/json"}; if (token.find("token") != token.end()) { headers.push_back("X-API-TOKEN: " + token.at("token").get()); } nlohmann::ordered_json cheatsInfo; download::getRequest("https://www.cheatslips.com/api/v1/cheats/" + util::formatApplicationId(this->tid) + "/" + this->bid, cheatsInfo, headers); if (cheatsInfo.find("cheats") != cheatsInfo.end()) { for (const auto& p : cheatsInfo.at("cheats").items()) { if (std::find(ids.begin(), ids.end(), p.value().at("id")) != ids.end()) { if (p.value().at("content").get() == "Quota exceeded for today !") { error = 1; } else { WriteCheats(p.value().at("content")); } } } } else { error = 2; } if (error != 0) { std::string error_message; switch (error) { case 1: error_message = "menus/cheats/quota"_i18n; break; case 2: error_message = "menus/cheats/cheatslips_error"_i18n; break; } util::showDialogBoxInfo(error_message); } } if (error == 0) { /* brls::Dialog* dialog = new brls::Dialog("menus/cheatslips_success"_i18n); bool dialogResult = false; bool result = false; brls::GenericEvent::Callback callback = [dialog, &dialogResult](brls::View* view) { dialogResult = true; dialog->close(); }; dialog->addButton("menus/common/ok"_i18n, callback); dialog->setCancelable(true); dialog->open(); while(result == false){ usleep(1); result = dialogResult; } dialogResult = false; */ brls::Application::popView(); } return true; }); this->AddCheatsfileListItem(); this->setContentView(list); } std::string DownloadCheatsPage_CheatSlips::GetCheatsTitle(json cheat) { std::string res = ""; if (cheat.find("titles") != cheat.end()) { for (auto& p : cheat.at("titles")) { res += fmt::format("[{}] - ", p.get()); } } if (res != "") res = res.substr(0, res.size() - 3); return res; } void DownloadCheatsPage_CheatSlips::ShowCheatsContent(nlohmann::ordered_json titles) { brls::AppletFrame* appView = new brls::AppletFrame(true, true); brls::List* list = new brls::List(); brls::ListItem* titlesItem; for (auto& p : titles) { titlesItem = new brls::ListItem(p.get()); titlesItem->registerAction("", brls::Key::A, [this] { return true; }); list->addView(titlesItem); } appView->setContentView(list); brls::PopupFrame::open("menus/cheats/sheet_content"_i18n, appView, "", ""); } DownloadCheatsPage_Github::DownloadCheatsPage_Github(uint64_t tid, const std::string& name) : DownloadCheatsPage(tid, name) { } void DownloadCheatsPage_Github::PopulateList(uint64_t tid, const std::string& name) { this->label = new brls::Label( brls::LabelStyle::DESCRIPTION, "menus/cheats/bid_tid_info"_i18n + "\n\uE016 Title ID: " + util::formatApplicationId(this->tid) + "\n\uE016 Build ID: " + this->bid, true); this->list->addView(label); if (this->bid != "") { nlohmann::ordered_json cheatsJson; download::getRequest(this->get_url() + util::formatApplicationId(this->tid) + ".json", cheatsJson); if (cheatsJson.find(this->bid) != cheatsJson.end()) { for (auto& [key, val] : cheatsJson[this->bid].items()) { auto title = key; auto content = val; this->listItem = new brls::ListItem(title); listItem->registerAction("menus/cheats/dl_cheatcodes"_i18n, brls::Key::A, [this, content, title] { WriteCheats(content); util::showDialogBoxInfo(fmt::format("menus/cheats/dl_successful"_i18n, title)); return true; }); this->list->addView(listItem); } this->list->addView(new brls::ListItemGroupSpacing(true)); } else { std::string versionsWithCheats; for (auto& [key, val] : cheatsJson.items()) { if (key != "attribution") versionsWithCheats += key + " "; } ShowCheatsNotFound(versionsWithCheats); } } else { ShowBidNotFound(); } this->AddCheatsfileListItem(); this->setContentView(this->list); } DownloadCheatsPage_Gbatemp::DownloadCheatsPage_Gbatemp(uint64_t tid, const std::string& name) : DownloadCheatsPage_Github(tid, name) { this->PopulateList(tid, name); } DownloadCheatsPage_Gfx::DownloadCheatsPage_Gfx(uint64_t tid, const std::string& name) : DownloadCheatsPage_Github(tid, name) { this->PopulateList(tid, name); }