959 lines
33 KiB
C++
959 lines
33 KiB
C++
#include "app.hpp"
|
|
#include "log.hpp"
|
|
#include "fs.hpp"
|
|
#include "dumper.hpp"
|
|
#include "defines.hpp"
|
|
#include "i18n.hpp"
|
|
#include "image.hpp"
|
|
#include "swkbd.hpp"
|
|
|
|
#include "ui/menus/game_menu.hpp"
|
|
#include "ui/menus/save_menu.hpp"
|
|
#include "ui/sidebar.hpp"
|
|
#include "ui/error_box.hpp"
|
|
#include "ui/option_box.hpp"
|
|
#include "ui/progress_box.hpp"
|
|
#include "ui/popup_list.hpp"
|
|
#include "ui/nvg_util.hpp"
|
|
|
|
#include "yati/nx/ncm.hpp"
|
|
#include "yati/nx/nca.hpp"
|
|
#include "yati/nx/es.hpp"
|
|
#include "yati/container/base.hpp"
|
|
#include "yati/container/nsp.hpp"
|
|
|
|
#include <utility>
|
|
#include <cstring>
|
|
#include <algorithm>
|
|
#include <minIni.h>
|
|
#include <nxtc.h>
|
|
|
|
namespace sphaira::ui::menu::game {
|
|
namespace {
|
|
|
|
struct ContentInfoEntry {
|
|
NsApplicationContentMetaStatus status{};
|
|
std::vector<NcmContentInfo> content_infos{};
|
|
std::vector<NcmRightsId> ncm_rights_id{};
|
|
};
|
|
|
|
struct TikEntry {
|
|
FsRightsId id{};
|
|
u8 key_gen{};
|
|
std::vector<u8> tik_data{};
|
|
std::vector<u8> cert_data{};
|
|
};
|
|
|
|
struct NspEntry {
|
|
// application name.
|
|
std::string application_name{};
|
|
// name of the nsp (name [id][v0][BASE].nsp).
|
|
fs::FsPath path{};
|
|
// tickets and cert data, will be empty if title key crypto isn't used.
|
|
std::vector<TikEntry> tickets{};
|
|
// all the collections for this nsp, such as nca's and tickets.
|
|
std::vector<yati::container::CollectionEntry> collections{};
|
|
// raw nsp data (header, file table and string table).
|
|
std::vector<u8> nsp_data{};
|
|
// size of the entier nsp.
|
|
s64 nsp_size{};
|
|
// copy of ncm cs, it is not closed.
|
|
NcmContentStorage cs{};
|
|
// copy of the icon, if invalid, it will use the default icon.
|
|
int icon{};
|
|
|
|
// todo: benchmark manual sdcard read and decryption vs ncm.
|
|
Result Read(void* buf, s64 off, s64 size, u64* bytes_read) {
|
|
if (off < nsp_data.size()) {
|
|
*bytes_read = size = ClipSize(off, size, nsp_data.size());
|
|
std::memcpy(buf, nsp_data.data() + off, size);
|
|
R_SUCCEED();
|
|
}
|
|
|
|
// adjust offset.
|
|
off -= nsp_data.size();
|
|
|
|
for (const auto& collection : collections) {
|
|
if (InRange(off, collection.offset, collection.size)) {
|
|
// adjust offset relative to the collection.
|
|
off -= collection.offset;
|
|
*bytes_read = size = ClipSize(off, size, collection.size);
|
|
|
|
if (collection.name.ends_with(".nca")) {
|
|
const auto id = ncm::GetContentIdFromStr(collection.name.c_str());
|
|
return ncmContentStorageReadContentIdFile(&cs, buf, size, &id, off);
|
|
} else if (collection.name.ends_with(".tik") || collection.name.ends_with(".cert")) {
|
|
FsRightsId id;
|
|
keys::parse_hex_key(&id, collection.name.c_str());
|
|
|
|
const auto it = std::ranges::find_if(tickets, [&id](auto& e){
|
|
return !std::memcmp(&id, &e.id, sizeof(id));
|
|
});
|
|
R_UNLESS(it != tickets.end(), Result_GameBadReadForDump);
|
|
|
|
const auto& data = collection.name.ends_with(".tik") ? it->tik_data : it->cert_data;
|
|
std::memcpy(buf, data.data() + off, size);
|
|
R_SUCCEED();
|
|
}
|
|
}
|
|
}
|
|
|
|
log_write("did not find collection...\n");
|
|
return 0x1;
|
|
}
|
|
|
|
private:
|
|
static auto InRange(s64 off, s64 offset, s64 size) -> bool {
|
|
return off < offset + size && off >= offset;
|
|
}
|
|
|
|
static auto ClipSize(s64 off, s64 size, s64 file_size) -> s64 {
|
|
return std::min(size, file_size - off);
|
|
}
|
|
};
|
|
|
|
struct NspSource final : dump::BaseSource {
|
|
NspSource(const std::vector<NspEntry>& entries) : m_entries{entries} {
|
|
m_is_file_based_emummc = App::IsFileBaseEmummc();
|
|
}
|
|
|
|
Result Read(const std::string& path, void* buf, s64 off, s64 size, u64* bytes_read) override {
|
|
const auto it = std::ranges::find_if(m_entries, [&path](auto& e){
|
|
return path.find(e.path.s) != path.npos;
|
|
});
|
|
R_UNLESS(it != m_entries.end(), Result_GameBadReadForDump);
|
|
|
|
const auto rc = it->Read(buf, off, size, bytes_read);
|
|
if (m_is_file_based_emummc) {
|
|
svcSleepThread(2e+6); // 2ms
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
auto GetName(const std::string& path) const -> std::string {
|
|
const auto it = std::ranges::find_if(m_entries, [&path](auto& e){
|
|
return path.find(e.path.s) != path.npos;
|
|
});
|
|
|
|
if (it != m_entries.end()) {
|
|
return it->application_name;
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
auto GetSize(const std::string& path) const -> s64 {
|
|
const auto it = std::ranges::find_if(m_entries, [&path](auto& e){
|
|
return path.find(e.path.s) != path.npos;
|
|
});
|
|
|
|
if (it != m_entries.end()) {
|
|
return it->nsp_size;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
auto GetIcon(const std::string& path) const -> int override {
|
|
const auto it = std::ranges::find_if(m_entries, [&path](auto& e){
|
|
return path.find(e.path.s) != path.npos;
|
|
});
|
|
|
|
if (it != m_entries.end()) {
|
|
return it->icon;
|
|
}
|
|
|
|
return App::GetDefaultImage();
|
|
}
|
|
|
|
private:
|
|
std::vector<NspEntry> m_entries{};
|
|
bool m_is_file_based_emummc{};
|
|
};
|
|
|
|
Result Notify(Result rc, const std::string& error_message) {
|
|
if (R_FAILED(rc)) {
|
|
App::Push(std::make_shared<ui::ErrorBox>(rc,
|
|
i18n::get(error_message)
|
|
));
|
|
} else {
|
|
App::Notify("Success"_i18n);
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
Result GetMetaEntries(const Entry& e, title::MetaEntries& out, u32 flags = title::ContentFlag_All) {
|
|
return title::GetMetaEntries(e.app_id, out, flags);
|
|
}
|
|
|
|
bool LoadControlImage(Entry& e) {
|
|
if (!e.image && e.info && !e.info->icon.empty()) {
|
|
ON_SCOPE_EXIT(e.info.reset());
|
|
|
|
TimeStamp ts;
|
|
const auto image = ImageLoadFromMemory(e.info->icon, ImageFlag_JPEG);
|
|
if (!image.data.empty()) {
|
|
e.image = nvgCreateImageRGBA(App::GetVg(), image.w, image.h, 0, image.data.data());
|
|
log_write("\t[image load] time taken: %.2fs %zums\n", ts.GetSecondsD(), ts.GetMs());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void LoadResultIntoEntry(Entry& e, const std::shared_ptr<title::ThreadResultData>& result) {
|
|
e.info = result;
|
|
e.status = result->status;
|
|
e.lang = result->lang;
|
|
e.status = result->status;
|
|
}
|
|
|
|
void LoadControlEntry(Entry& e, bool force_image_load = false) {
|
|
if (e.status == title::NacpLoadStatus::None) {
|
|
LoadResultIntoEntry(e, title::Get(e.app_id));
|
|
}
|
|
|
|
if (force_image_load && e.status == title::NacpLoadStatus::Loaded) {
|
|
LoadControlImage(e);
|
|
}
|
|
}
|
|
|
|
auto isRightsIdValid(FsRightsId id) -> bool {
|
|
FsRightsId empty_id{};
|
|
return 0 != std::memcmp(std::addressof(id), std::addressof(empty_id), sizeof(id));
|
|
}
|
|
|
|
struct HashStr {
|
|
char str[0x21];
|
|
};
|
|
|
|
HashStr hexIdToStr(auto id) {
|
|
HashStr str{};
|
|
const auto id_lower = std::byteswap(*(u64*)id.c);
|
|
const auto id_upper = std::byteswap(*(u64*)(id.c + 0x8));
|
|
std::snprintf(str.str, 0x21, "%016lx%016lx", id_lower, id_upper);
|
|
return str;
|
|
}
|
|
|
|
auto BuildNspPath(const Entry& e, const NsApplicationContentMetaStatus& status) -> fs::FsPath {
|
|
fs::FsPath name_buf = e.GetName();
|
|
title::utilsReplaceIllegalCharacters(name_buf, true);
|
|
|
|
char version[sizeof(NacpStruct::display_version) + 1]{};
|
|
if (status.meta_type == NcmContentMetaType_Patch) {
|
|
u64 program_id;
|
|
fs::FsPath path;
|
|
if (R_SUCCEEDED(title::GetControlPathFromStatus(status, &program_id, &path))) {
|
|
char display_version[0x10];
|
|
if (R_SUCCEEDED(nca::ParseControl(path, program_id, display_version, sizeof(display_version), nullptr, offsetof(NacpStruct, display_version)))) {
|
|
std::snprintf(version, sizeof(version), "%s ", display_version);
|
|
}
|
|
}
|
|
}
|
|
|
|
fs::FsPath path;
|
|
if (App::GetApp()->m_dump_app_folder.Get()) {
|
|
std::snprintf(path, sizeof(path), "%s/%s %s[%016lX][v%u][%s].nsp", name_buf.s, name_buf.s, version, status.application_id, status.version, ncm::GetMetaTypeShortStr(status.meta_type));
|
|
} else {
|
|
std::snprintf(path, sizeof(path), "%s %s[%016lX][v%u][%s].nsp", name_buf.s, version, status.application_id, status.version, ncm::GetMetaTypeShortStr(status.meta_type));
|
|
}
|
|
|
|
return path;
|
|
}
|
|
|
|
Result BuildContentEntry(const NsApplicationContentMetaStatus& status, ContentInfoEntry& out) {
|
|
auto& cs = title::GetNcmCs(status.storageID);
|
|
auto& db = title::GetNcmDb(status.storageID);
|
|
const auto app_id = ncm::GetAppId(status.meta_type, status.application_id);
|
|
|
|
auto id_min = status.application_id;
|
|
auto id_max = status.application_id;
|
|
// workaround N bug where they don't check the full range in the ID filter.
|
|
// https://github.com/Atmosphere-NX/Atmosphere/blob/1d3f3c6e56b994b544fc8cd330c400205d166159/libraries/libstratosphere/source/ncm/ncm_on_memory_content_meta_database_impl.cpp#L22
|
|
if (status.storageID == NcmStorageId_None || status.storageID == NcmStorageId_GameCard) {
|
|
id_min -= 1;
|
|
id_max += 1;
|
|
}
|
|
|
|
s32 meta_total;
|
|
s32 meta_entries_written;
|
|
NcmContentMetaKey key;
|
|
R_TRY(ncmContentMetaDatabaseList(std::addressof(db), std::addressof(meta_total), std::addressof(meta_entries_written), std::addressof(key), 1, (NcmContentMetaType)status.meta_type, app_id, id_min, id_max, NcmContentInstallType_Full));
|
|
log_write("ncmContentMetaDatabaseList(): AppId: %016lX Id: %016lX total: %d written: %d storageID: %u key.id %016lX\n", app_id, status.application_id, meta_total, meta_entries_written, status.storageID, key.id);
|
|
R_UNLESS(meta_total == 1, Result_GameMultipleKeysFound);
|
|
R_UNLESS(meta_entries_written == 1, Result_GameMultipleKeysFound);
|
|
|
|
std::vector<NcmContentInfo> cnmt_infos;
|
|
for (s32 i = 0; ; i++) {
|
|
s32 entries_written;
|
|
NcmContentInfo info_out;
|
|
R_TRY(ncmContentMetaDatabaseListContentInfo(std::addressof(db), std::addressof(entries_written), std::addressof(info_out), 1, std::addressof(key), i));
|
|
|
|
if (!entries_written) {
|
|
break;
|
|
}
|
|
|
|
// check if we need to fetch tickets.
|
|
NcmRightsId ncm_rights_id;
|
|
R_TRY(ncmContentStorageGetRightsIdFromContentId(std::addressof(cs), std::addressof(ncm_rights_id), std::addressof(info_out.content_id), FsContentAttributes_All));
|
|
|
|
if (isRightsIdValid(ncm_rights_id.rights_id)) {
|
|
const auto it = std::ranges::find_if(out.ncm_rights_id, [&ncm_rights_id](auto& e){
|
|
return !std::memcmp(&e, &ncm_rights_id, sizeof(ncm_rights_id));
|
|
});
|
|
|
|
if (it == out.ncm_rights_id.end()) {
|
|
out.ncm_rights_id.emplace_back(ncm_rights_id);
|
|
}
|
|
}
|
|
|
|
if (info_out.content_type == NcmContentType_Meta) {
|
|
cnmt_infos.emplace_back(info_out);
|
|
} else {
|
|
out.content_infos.emplace_back(info_out);
|
|
}
|
|
}
|
|
|
|
// append cnmt at the end of the list, following StandardNSP spec.
|
|
out.content_infos.insert_range(out.content_infos.end(), cnmt_infos);
|
|
out.status = status;
|
|
R_SUCCEED();
|
|
}
|
|
|
|
Result BuildNspEntry(const Entry& e, const ContentInfoEntry& info, const keys::Keys& keys, NspEntry& out) {
|
|
out.application_name = e.GetName();
|
|
out.path = BuildNspPath(e, info.status);
|
|
s64 offset{};
|
|
|
|
for (auto& e : info.content_infos) {
|
|
char nca_name[0x200];
|
|
std::snprintf(nca_name, sizeof(nca_name), "%s%s", hexIdToStr(e.content_id).str, e.content_type == NcmContentType_Meta ? ".cnmt.nca" : ".nca");
|
|
|
|
u64 size;
|
|
ncmContentInfoSizeToU64(std::addressof(e), std::addressof(size));
|
|
|
|
out.collections.emplace_back(nca_name, offset, size);
|
|
offset += size;
|
|
}
|
|
|
|
for (auto& ncm_rights_id : info.ncm_rights_id) {
|
|
const auto rights_id = ncm_rights_id.rights_id;
|
|
const auto key_gen = ncm_rights_id.key_generation;
|
|
|
|
TikEntry entry{rights_id, key_gen};
|
|
log_write("rights id is valid, fetching common ticket and cert\n");
|
|
|
|
u64 tik_size;
|
|
u64 cert_size;
|
|
R_TRY(es::GetCommonTicketAndCertificateSize(&tik_size, &cert_size, &rights_id));
|
|
log_write("got tik_size: %zu cert_size: %zu\n", tik_size, cert_size);
|
|
|
|
entry.tik_data.resize(tik_size);
|
|
entry.cert_data.resize(cert_size);
|
|
R_TRY(es::GetCommonTicketAndCertificateData(&tik_size, &cert_size, entry.tik_data.data(), entry.tik_data.size(), entry.cert_data.data(), entry.cert_data.size(), &rights_id));
|
|
log_write("got tik_data: %zu cert_data: %zu\n", tik_size, cert_size);
|
|
|
|
// patch fake ticket / convert personalised to common if needed.
|
|
R_TRY(es::PatchTicket(entry.tik_data, entry.cert_data, key_gen, keys, App::GetApp()->m_dump_convert_to_common_ticket.Get()));
|
|
|
|
char tik_name[0x200];
|
|
std::snprintf(tik_name, sizeof(tik_name), "%s%s", hexIdToStr(rights_id).str, ".tik");
|
|
|
|
char cert_name[0x200];
|
|
std::snprintf(cert_name, sizeof(cert_name), "%s%s", hexIdToStr(rights_id).str, ".cert");
|
|
|
|
out.collections.emplace_back(tik_name, offset, entry.tik_data.size());
|
|
offset += entry.tik_data.size();
|
|
|
|
out.collections.emplace_back(cert_name, offset, entry.cert_data.size());
|
|
offset += entry.cert_data.size();
|
|
|
|
out.tickets.emplace_back(entry);
|
|
}
|
|
|
|
out.nsp_data = yati::container::Nsp::Build(out.collections, out.nsp_size);
|
|
out.cs = title::GetNcmCs(info.status.storageID);
|
|
|
|
R_SUCCEED();
|
|
}
|
|
|
|
Result BuildNspEntries(Entry& e, u32 flags, std::vector<NspEntry>& out) {
|
|
LoadControlEntry(e);
|
|
|
|
title::MetaEntries meta_entries;
|
|
R_TRY(GetMetaEntries(e, meta_entries, flags));
|
|
|
|
keys::Keys keys;
|
|
R_TRY(keys::parse_keys(keys, true));
|
|
|
|
for (const auto& status : meta_entries) {
|
|
ContentInfoEntry info;
|
|
R_TRY(BuildContentEntry(status, info));
|
|
|
|
NspEntry nsp;
|
|
R_TRY(BuildNspEntry(e, info, keys, nsp));
|
|
out.emplace_back(nsp).icon = e.image;
|
|
}
|
|
|
|
R_UNLESS(!out.empty(), Result_GameNoNspEntriesBuilt);
|
|
R_SUCCEED();
|
|
}
|
|
|
|
void FreeEntry(NVGcontext* vg, Entry& e) {
|
|
nvgDeleteImage(vg, e.image);
|
|
e.image = 0;
|
|
}
|
|
|
|
void LaunchEntry(const Entry& e) {
|
|
const auto rc = appletRequestLaunchApplication(e.app_id, nullptr);
|
|
Notify(rc, "Failed to launch application");
|
|
}
|
|
|
|
Result CreateSave(u64 app_id, AccountUid uid) {
|
|
u64 actual_size;
|
|
auto data = std::make_unique<NsApplicationControlData>();
|
|
R_TRY(nsGetApplicationControlData(NsApplicationControlSource_Storage, app_id, data.get(), sizeof(NsApplicationControlData), &actual_size));
|
|
|
|
FsSaveDataAttribute attr{};
|
|
attr.application_id = app_id;
|
|
attr.uid = uid;
|
|
attr.save_data_type = FsSaveDataType_Account;
|
|
|
|
FsSaveDataCreationInfo info{};
|
|
info.save_data_size = data->nacp.user_account_save_data_size;
|
|
info.journal_size = data->nacp.user_account_save_data_journal_size;
|
|
info.available_size = data->nacp.user_account_save_data_size; // todo: check what this should be.
|
|
info.owner_id = data->nacp.save_data_owner_id;
|
|
info.save_data_space_id = FsSaveDataSpaceId_User;
|
|
|
|
// what is this???
|
|
FsSaveDataMetaInfo meta{};
|
|
R_TRY(fsCreateSaveDataFileSystem(&attr, &info, &meta));
|
|
|
|
R_SUCCEED();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
Menu::Menu(u32 flags) : grid::Menu{"Games"_i18n, flags} {
|
|
this->SetActions(
|
|
std::make_pair(Button::L3, Action{[this](){
|
|
if (m_entries.empty()) {
|
|
return;
|
|
}
|
|
|
|
m_entries[m_index].selected ^= 1;
|
|
|
|
if (m_entries[m_index].selected) {
|
|
m_selected_count++;
|
|
} else {
|
|
m_selected_count--;
|
|
}
|
|
}}),
|
|
std::make_pair(Button::R3, Action{[this](){
|
|
if (m_entries.empty()) {
|
|
return;
|
|
}
|
|
|
|
if (m_selected_count == m_entries.size()) {
|
|
ClearSelection();
|
|
} else {
|
|
m_selected_count = m_entries.size();
|
|
for (auto& e : m_entries) {
|
|
e.selected = true;
|
|
}
|
|
}
|
|
}}),
|
|
std::make_pair(Button::B, Action{"Back"_i18n, [this](){
|
|
SetPop();
|
|
}}),
|
|
std::make_pair(Button::A, Action{"Launch"_i18n, [this](){
|
|
if (m_entries.empty()) {
|
|
return;
|
|
}
|
|
LaunchEntry(m_entries[m_index]);
|
|
}}),
|
|
std::make_pair(Button::X, Action{"Options"_i18n, [this](){
|
|
auto options = std::make_shared<Sidebar>("Game Options"_i18n, Sidebar::Side::RIGHT);
|
|
ON_SCOPE_EXIT(App::Push(options));
|
|
|
|
if (m_entries.size()) {
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Sort By"_i18n, [this](){
|
|
auto options = std::make_shared<Sidebar>("Sort Options"_i18n, Sidebar::Side::RIGHT);
|
|
ON_SCOPE_EXIT(App::Push(options));
|
|
|
|
SidebarEntryArray::Items sort_items;
|
|
sort_items.push_back("Updated"_i18n);
|
|
|
|
SidebarEntryArray::Items order_items;
|
|
order_items.push_back("Descending"_i18n);
|
|
order_items.push_back("Ascending"_i18n);
|
|
|
|
SidebarEntryArray::Items layout_items;
|
|
layout_items.push_back("List"_i18n);
|
|
layout_items.push_back("Icon"_i18n);
|
|
layout_items.push_back("Grid"_i18n);
|
|
|
|
options->Add(std::make_shared<SidebarEntryArray>("Sort"_i18n, sort_items, [this](s64& index_out){
|
|
m_sort.Set(index_out);
|
|
SortAndFindLastFile(false);
|
|
}, m_sort.Get()));
|
|
|
|
options->Add(std::make_shared<SidebarEntryArray>("Order"_i18n, order_items, [this](s64& index_out){
|
|
m_order.Set(index_out);
|
|
SortAndFindLastFile(false);
|
|
}, m_order.Get()));
|
|
|
|
options->Add(std::make_shared<SidebarEntryArray>("Layout"_i18n, layout_items, [this](s64& index_out){
|
|
m_layout.Set(index_out);
|
|
OnLayoutChange();
|
|
}, m_layout.Get()));
|
|
|
|
options->Add(std::make_shared<SidebarEntryBool>("Hide forwarders"_i18n, m_hide_forwarders.Get(), [this](bool& v_out){
|
|
m_hide_forwarders.Set(v_out);
|
|
m_dirty = true;
|
|
}));
|
|
}));
|
|
|
|
#if 0
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Info"_i18n, [this](){
|
|
|
|
}));
|
|
#endif
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Launch random game"_i18n, [this](){
|
|
const auto random_index = randomGet64() % std::size(m_entries);
|
|
auto& e = m_entries[random_index];
|
|
LoadControlEntry(e, true);
|
|
|
|
App::Push(std::make_shared<OptionBox>(
|
|
"Launch "_i18n + e.GetName(),
|
|
"Back"_i18n, "Launch"_i18n, 1, [this, &e](auto op_index){
|
|
if (op_index && *op_index) {
|
|
LaunchEntry(e);
|
|
}
|
|
}, e.image
|
|
));
|
|
}));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("List meta records"_i18n, [this](){
|
|
title::MetaEntries meta_entries;
|
|
const auto rc = GetMetaEntries(m_entries[m_index], meta_entries);
|
|
if (R_FAILED(rc)) {
|
|
App::Push(std::make_shared<ui::ErrorBox>(rc,
|
|
i18n::get("Failed to list application meta entries")
|
|
));
|
|
return;
|
|
}
|
|
|
|
if (meta_entries.empty()) {
|
|
App::Notify("No meta entries found...\n"_i18n);
|
|
return;
|
|
}
|
|
|
|
PopupList::Items items;
|
|
for (auto& e : meta_entries) {
|
|
char buf[256];
|
|
std::snprintf(buf, sizeof(buf), "Type: %s Storage: %s [%016lX][v%u]", ncm::GetMetaTypeStr(e.meta_type), ncm::GetStorageIdStr(e.storageID), e.application_id, e.version);
|
|
items.emplace_back(buf);
|
|
}
|
|
|
|
App::Push(std::make_shared<PopupList>(
|
|
"Entries"_i18n, items, [this, meta_entries](auto op_index){
|
|
#if 0
|
|
if (op_index) {
|
|
const auto& e = meta_entries[*op_index];
|
|
}
|
|
#endif
|
|
}
|
|
));
|
|
}));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Dump"_i18n, [this](){
|
|
auto options = std::make_shared<Sidebar>("Select content to dump"_i18n, Sidebar::Side::RIGHT);
|
|
ON_SCOPE_EXIT(App::Push(options));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Dump All"_i18n, [this](){
|
|
DumpGames(title::ContentFlag_All);
|
|
}, true));
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Dump Application"_i18n, [this](){
|
|
DumpGames(title::ContentFlag_Application);
|
|
}, true));
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Dump Patch"_i18n, [this](){
|
|
DumpGames(title::ContentFlag_Patch);
|
|
}, true));
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Dump AddOnContent"_i18n, [this](){
|
|
DumpGames(title::ContentFlag_AddOnContent);
|
|
}, true));
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Dump DataPatch"_i18n, [this](){
|
|
DumpGames(title::ContentFlag_DataPatch);
|
|
}, true));
|
|
}, true));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Dump options"_i18n, [this](){
|
|
App::DisplayDumpOptions(false);
|
|
}));
|
|
|
|
// completely deletes the application record and all data.
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Delete"_i18n, [this](){
|
|
const auto buf = "Are you sure you want to delete "_i18n + m_entries[m_index].GetName() + "?";
|
|
App::Push(std::make_shared<OptionBox>(
|
|
buf,
|
|
"Back"_i18n, "Delete"_i18n, 0, [this](auto op_index){
|
|
if (op_index && *op_index) {
|
|
DeleteGames();
|
|
}
|
|
}, m_entries[m_index].image
|
|
));
|
|
}, true));
|
|
}
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Advanced options"_i18n, [this](){
|
|
auto options = std::make_shared<Sidebar>("Advanced Options"_i18n, Sidebar::Side::RIGHT);
|
|
ON_SCOPE_EXIT(App::Push(options));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Refresh"_i18n, [this](){
|
|
m_dirty = true;
|
|
App::PopToMenu();
|
|
}));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Create contents folder"_i18n, [this](){
|
|
const auto rc = fs::FsNativeSd().CreateDirectory(title::GetContentsPath(m_entries[m_index].app_id));
|
|
App::PushErrorBox(rc, "Folder create failed!"_i18n);
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
|
App::Notify("Folder created!"_i18n);
|
|
}
|
|
}));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Create save"_i18n, [this](){
|
|
ui::PopupList::Items items{};
|
|
const auto accounts = App::GetAccountList();
|
|
for (auto& p : accounts) {
|
|
items.emplace_back(p.nickname);
|
|
}
|
|
|
|
App::Push(std::make_shared<ui::PopupList>(
|
|
"Select user to create save for"_i18n, items, [this, accounts](auto op_index){
|
|
if (op_index) {
|
|
CreateSaves(accounts[*op_index].uid);
|
|
}
|
|
}
|
|
));
|
|
}));
|
|
|
|
options->Add(std::make_shared<SidebarEntryBool>("Title cache"_i18n, m_title_cache.Get(), [this](bool& v_out){
|
|
m_title_cache.Set(v_out);
|
|
}));
|
|
|
|
options->Add(std::make_shared<SidebarEntryCallback>("Delete title cache"_i18n, [this](){
|
|
App::Push(std::make_shared<OptionBox>(
|
|
"Are you sure you want to delete the title cache?"_i18n,
|
|
"Back"_i18n, "Delete"_i18n, 0, [this](auto op_index){
|
|
if (op_index && *op_index) {
|
|
m_dirty = true;
|
|
nxtcWipeCache();
|
|
App::PopToMenu();
|
|
}
|
|
}
|
|
));
|
|
}));
|
|
}));
|
|
}})
|
|
);
|
|
|
|
OnLayoutChange();
|
|
|
|
nsInitialize();
|
|
es::Initialize();
|
|
title::Init();
|
|
}
|
|
|
|
Menu::~Menu() {
|
|
title::Exit();
|
|
|
|
FreeEntries();
|
|
nsExit();
|
|
es::Exit();
|
|
}
|
|
|
|
void Menu::Update(Controller* controller, TouchInfo* touch) {
|
|
if (m_dirty) {
|
|
App::Notify("Updating application record list"_i18n);
|
|
SortAndFindLastFile(true);
|
|
}
|
|
|
|
MenuBase::Update(controller, touch);
|
|
m_list->OnUpdate(controller, touch, m_index, m_entries.size(), [this](bool touch, auto i) {
|
|
if (touch && m_index == i) {
|
|
FireAction(Button::A);
|
|
} else {
|
|
App::PlaySoundEffect(SoundEffect_Focus);
|
|
SetIndex(i);
|
|
}
|
|
});
|
|
}
|
|
|
|
void Menu::Draw(NVGcontext* vg, Theme* theme) {
|
|
MenuBase::Draw(vg, theme);
|
|
|
|
if (m_entries.empty()) {
|
|
gfx::drawTextArgs(vg, GetX() + GetW() / 2.f, GetY() + GetH() / 2.f, 36.f, NVG_ALIGN_CENTER | NVG_ALIGN_MIDDLE, theme->GetColour(ThemeEntryID_TEXT_INFO), "Empty..."_i18n.c_str());
|
|
return;
|
|
}
|
|
|
|
// max images per frame, in order to not hit io / gpu too hard.
|
|
const int image_load_max = 2;
|
|
int image_load_count = 0;
|
|
|
|
m_list->Draw(vg, theme, m_entries.size(), [this, &image_load_count](auto* vg, auto* theme, auto v, auto pos) {
|
|
const auto& [x, y, w, h] = v;
|
|
auto& e = m_entries[pos];
|
|
|
|
if (e.status == title::NacpLoadStatus::None) {
|
|
title::PushAsync(e.app_id);
|
|
e.status = title::NacpLoadStatus::Progress;
|
|
} else if (e.status == title::NacpLoadStatus::Progress) {
|
|
if (const auto data = title::GetAsync(e.app_id)) {
|
|
LoadResultIntoEntry(e, data);
|
|
}
|
|
}
|
|
|
|
// lazy load image
|
|
if (image_load_count < image_load_max) {
|
|
if (LoadControlImage(e)) {
|
|
image_load_count++;
|
|
}
|
|
}
|
|
|
|
char title_id[33];
|
|
std::snprintf(title_id, sizeof(title_id), "%016lX", e.app_id);
|
|
|
|
const auto selected = pos == m_index;
|
|
DrawEntry(vg, theme, m_layout.Get(), v, selected, e.image, e.GetName(), e.GetAuthor(), title_id);
|
|
|
|
if (e.selected) {
|
|
gfx::drawRect(vg, v, theme->GetColour(ThemeEntryID_FOCUS), 5);
|
|
gfx::drawText(vg, x + w / 2, y + h / 2, 24.f, "\uE14B", nullptr, NVG_ALIGN_CENTER | NVG_ALIGN_MIDDLE, theme->GetColour(ThemeEntryID_TEXT_SELECTED));
|
|
}
|
|
});
|
|
}
|
|
|
|
void Menu::OnFocusGained() {
|
|
MenuBase::OnFocusGained();
|
|
if (m_entries.empty()) {
|
|
ScanHomebrew();
|
|
}
|
|
}
|
|
|
|
void Menu::SetIndex(s64 index) {
|
|
m_index = index;
|
|
if (!m_index) {
|
|
m_list->SetYoff(0);
|
|
}
|
|
|
|
char title_id[33];
|
|
std::snprintf(title_id, sizeof(title_id), "%016lX", m_entries[m_index].app_id);
|
|
SetTitleSubHeading(title_id);
|
|
this->SetSubHeading(std::to_string(m_index + 1) + " / " + std::to_string(m_entries.size()));
|
|
}
|
|
|
|
void Menu::ScanHomebrew() {
|
|
constexpr auto ENTRY_CHUNK_COUNT = 1000;
|
|
const auto hide_forwarders = m_hide_forwarders.Get();
|
|
TimeStamp ts;
|
|
|
|
App::SetBoostMode(true);
|
|
ON_SCOPE_EXIT(App::SetBoostMode(false));
|
|
|
|
FreeEntries();
|
|
m_entries.reserve(ENTRY_CHUNK_COUNT);
|
|
|
|
std::vector<NsApplicationRecord> record_list(ENTRY_CHUNK_COUNT);
|
|
s32 offset{};
|
|
while (true) {
|
|
s32 record_count{};
|
|
if (R_FAILED(nsListApplicationRecord(record_list.data(), record_list.size(), offset, &record_count))) {
|
|
log_write("failed to list application records at offset: %d\n", offset);
|
|
}
|
|
|
|
// finished parsing all entries.
|
|
if (!record_count) {
|
|
break;
|
|
}
|
|
|
|
for (s32 i = 0; i < record_count; i++) {
|
|
const auto& e = record_list[i];
|
|
#if 0
|
|
u8 unk_x09 = e.unk_x09;
|
|
u64 unk_x0a;// = e.unk_x0a;
|
|
u8 unk_x10 = e.unk_x10;
|
|
u64 unk_x11;// = e.unk_x11;
|
|
memcpy(&unk_x0a, e.unk_x0a, sizeof(e.unk_x0a));
|
|
memcpy(&unk_x11, e.unk_x11, sizeof(e.unk_x11));
|
|
log_write("ID: %016lx got type: %u unk_x09: %u unk_x0a: %zu unk_x10: %u unk_x11: %zu\n", e.app_id, e.type,
|
|
unk_x09,
|
|
unk_x0a,
|
|
unk_x10,
|
|
unk_x11
|
|
);
|
|
#endif
|
|
if (hide_forwarders && (e.application_id & 0x0500000000000000) == 0x0500000000000000) {
|
|
continue;
|
|
}
|
|
|
|
m_entries.emplace_back(e.application_id);
|
|
}
|
|
|
|
offset += record_count;
|
|
}
|
|
|
|
m_is_reversed = false;
|
|
m_dirty = false;
|
|
log_write("games found: %zu time_taken: %.2f seconds %zu ms %zu ns\n", m_entries.size(), ts.GetSecondsD(), ts.GetMs(), ts.GetNs());
|
|
this->Sort();
|
|
SetIndex(0);
|
|
ClearSelection();
|
|
}
|
|
|
|
void Menu::Sort() {
|
|
// const auto sort = m_sort.Get();
|
|
const auto order = m_order.Get();
|
|
|
|
if (order == OrderType_Ascending) {
|
|
if (!m_is_reversed) {
|
|
std::ranges::reverse(m_entries);
|
|
m_is_reversed = true;
|
|
}
|
|
} else {
|
|
if (m_is_reversed) {
|
|
std::ranges::reverse(m_entries);
|
|
m_is_reversed = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
void Menu::SortAndFindLastFile(bool scan) {
|
|
const auto app_id = m_entries[m_index].app_id;
|
|
if (scan) {
|
|
ScanHomebrew();
|
|
} else {
|
|
Sort();
|
|
}
|
|
SetIndex(0);
|
|
|
|
s64 index = -1;
|
|
for (u64 i = 0; i < m_entries.size(); i++) {
|
|
if (app_id == m_entries[i].app_id) {
|
|
index = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (index >= 0) {
|
|
const auto row = m_list->GetRow();
|
|
const auto page = m_list->GetPage();
|
|
// guesstimate where the position is
|
|
if (index >= page) {
|
|
m_list->SetYoff((((index - page) + row) / row) * m_list->GetMaxY());
|
|
} else {
|
|
m_list->SetYoff(0);
|
|
}
|
|
SetIndex(index);
|
|
}
|
|
}
|
|
|
|
void Menu::FreeEntries() {
|
|
auto vg = App::GetVg();
|
|
|
|
for (auto&p : m_entries) {
|
|
FreeEntry(vg, p);
|
|
}
|
|
|
|
m_entries.clear();
|
|
}
|
|
|
|
void Menu::OnLayoutChange() {
|
|
m_index = 0;
|
|
grid::Menu::OnLayoutChange(m_list, m_layout.Get());
|
|
}
|
|
|
|
void Menu::DeleteGames() {
|
|
App::Push(std::make_shared<ProgressBox>(0, "Deleting"_i18n, "", [this](auto pbox) -> Result {
|
|
auto targets = GetSelectedEntries();
|
|
|
|
for (s64 i = 0; i < std::size(targets); i++) {
|
|
auto& e = targets[i];
|
|
|
|
LoadControlEntry(e);
|
|
pbox->SetTitle(e.GetName());
|
|
pbox->UpdateTransfer(i + 1, std::size(targets));
|
|
R_TRY(nsDeleteApplicationCompletely(e.app_id));
|
|
}
|
|
|
|
R_SUCCEED();
|
|
}, [this](Result rc){
|
|
App::PushErrorBox(rc, "Delete failed!"_i18n);
|
|
|
|
ClearSelection();
|
|
m_dirty = true;
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
|
App::Notify("Delete successfull!"_i18n);
|
|
}
|
|
}));
|
|
}
|
|
|
|
void Menu::DumpGames(u32 flags) {
|
|
auto targets = GetSelectedEntries();
|
|
|
|
std::vector<NspEntry> nsp_entries;
|
|
for (auto& e : targets) {
|
|
BuildNspEntries(e, flags, nsp_entries);
|
|
}
|
|
|
|
std::vector<fs::FsPath> paths;
|
|
for (auto& e : nsp_entries) {
|
|
paths.emplace_back(fs::AppendPath("/dumps/NSP", e.path));
|
|
}
|
|
|
|
auto source = std::make_shared<NspSource>(nsp_entries);
|
|
dump::Dump(source, paths, [this](Result rc){
|
|
ClearSelection();
|
|
});
|
|
}
|
|
|
|
void Menu::CreateSaves(AccountUid uid) {
|
|
App::Push(std::make_shared<ProgressBox>(0, "Creating"_i18n, "", [this, uid](auto pbox) -> Result {
|
|
auto targets = GetSelectedEntries();
|
|
|
|
for (s64 i = 0; i < std::size(targets); i++) {
|
|
auto& e = targets[i];
|
|
|
|
LoadControlEntry(e);
|
|
pbox->SetTitle(e.GetName());
|
|
pbox->UpdateTransfer(i + 1, std::size(targets));
|
|
const auto rc = CreateSave(e.app_id, uid);
|
|
|
|
// don't error if the save already exists.
|
|
if (R_FAILED(rc) && rc != FsError_PathAlreadyExists) {
|
|
R_THROW(rc);
|
|
}
|
|
}
|
|
|
|
R_SUCCEED();
|
|
}, [this](Result rc){
|
|
App::PushErrorBox(rc, "Save create failed!"_i18n);
|
|
|
|
ClearSelection();
|
|
save::SignalChange();
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
|
App::Notify("Save create successfull!"_i18n);
|
|
}
|
|
}));
|
|
}
|
|
|
|
} // namespace sphaira::ui::menu::game
|