2021-02-06 17:24:47 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
|
|
|
#include <switch.h>
|
2021-03-16 02:43:48 +00:00
|
|
|
#include <json.hpp>
|
2021-02-06 17:24:47 +00:00
|
|
|
|
|
|
|
class DownloadCheatsPage : public brls::AppletFrame
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
brls::List* list;
|
|
|
|
brls::Label* label;
|
|
|
|
brls::ListItem* del;
|
|
|
|
brls::ToggleListItem* listItem;
|
|
|
|
std::vector<std::pair<brls::ToggleListItem*, int>> toggles;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DownloadCheatsPage(uint64_t tid);
|
|
|
|
std::string GetBuilID(uint64_t tid);
|
2021-02-10 17:41:13 +00:00
|
|
|
std::string GetBuilIDFromFile(uint64_t tid);
|
2021-02-06 17:24:47 +00:00
|
|
|
std::string GetCheatsTitle(nlohmann::json cheat);
|
|
|
|
void WriteCheats(uint64_t tid, std::string bid, std::string cheatContent);
|
|
|
|
void DeleteCheats(uint64_t tid, std::string bid);
|
2021-02-09 15:27:18 +00:00
|
|
|
void ShowCheatsContent(nlohmann::ordered_json titles);
|
2021-02-10 17:41:13 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
u64 base;
|
|
|
|
u64 size;
|
|
|
|
} DmntMemoryRegionExtents;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
u64 process_id;
|
|
|
|
u64 title_id;
|
|
|
|
DmntMemoryRegionExtents main_nso_extents;
|
|
|
|
DmntMemoryRegionExtents heap_extents;
|
|
|
|
DmntMemoryRegionExtents alias_extents;
|
|
|
|
DmntMemoryRegionExtents address_space_extents;
|
|
|
|
u8 main_nso_build_id[0x20];
|
|
|
|
} DmntCheatProcessMetadata;
|
2021-02-06 17:24:47 +00:00
|
|
|
};
|