2020-09-20 01:21:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-06-27 23:46:00 +01:00
|
|
|
#include <switch.h>
|
2021-09-11 14:48:13 +01:00
|
|
|
|
2020-09-20 01:21:28 +01:00
|
|
|
#include <algorithm>
|
2021-09-11 14:48:13 +01:00
|
|
|
#include <borealis.hpp>
|
|
|
|
#include <filesystem>
|
2021-02-10 16:28:47 +00:00
|
|
|
#include <set>
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-06-27 23:46:00 +01:00
|
|
|
static constexpr uint32_t MaxTitleCount = 64000;
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
enum class appPageType
|
|
|
|
{
|
2021-06-05 18:10:51 +01:00
|
|
|
base,
|
|
|
|
cheatSlips,
|
|
|
|
gbatempCheats
|
|
|
|
};
|
2020-09-20 01:21:28 +01:00
|
|
|
|
|
|
|
class AppPage : public brls::AppletFrame
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
private:
|
|
|
|
brls::ListItem* download;
|
|
|
|
std::set<std::string> titles;
|
2021-06-27 23:46:00 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
protected:
|
|
|
|
brls::List* list;
|
|
|
|
brls::Label* label;
|
|
|
|
brls::ListItem* listItem;
|
|
|
|
void CreateDownloadAllButton();
|
|
|
|
uint64_t GetCurrentApplicationId();
|
|
|
|
u32 InitControlData(NsApplicationControlData** controlData);
|
|
|
|
uint32_t GetControlData(u64 tid, NsApplicationControlData* controlData, u64& controlSize, std::string& name);
|
|
|
|
virtual void PopulatePage();
|
|
|
|
virtual void CreateLabel(){};
|
|
|
|
virtual void DeclareGameListItem(const std::string& name, uint64_t tid, NsApplicationControlData** controlData);
|
2021-06-27 23:46:00 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
public:
|
|
|
|
AppPage();
|
2021-06-27 23:46:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class AppPage_Exclude : public AppPage
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
private:
|
|
|
|
std::set<std::pair<brls::ToggleListItem*, std::string>> items;
|
|
|
|
void PopulatePage() override;
|
|
|
|
void CreateLabel() override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
AppPage_Exclude();
|
2021-06-27 23:46:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class AppPage_CheatSlips : public AppPage
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
private:
|
|
|
|
void CreateLabel() override;
|
|
|
|
void DeclareGameListItem(const std::string& name, uint64_t tid, NsApplicationControlData** controlData) override;
|
2021-06-27 23:46:00 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
public:
|
|
|
|
AppPage_CheatSlips();
|
2021-06-27 23:46:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class AppPage_Gbatemp : public AppPage
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
private:
|
|
|
|
void CreateLabel() override;
|
|
|
|
void DeclareGameListItem(const std::string& name, uint64_t tid, NsApplicationControlData** controlData) override;
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
public:
|
|
|
|
AppPage_Gbatemp();
|
2021-06-28 15:58:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class AppPage_DownloadedCheats : public AppPage
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
private:
|
|
|
|
std::set<std::string> titles;
|
|
|
|
void CreateLabel() override;
|
|
|
|
void DeclareGameListItem(const std::string& name, uint64_t tid, NsApplicationControlData** controlData) override;
|
|
|
|
void GetExistingCheatsTids();
|
2021-06-28 15:58:04 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
public:
|
|
|
|
AppPage_DownloadedCheats();
|
2020-09-20 01:21:28 +01:00
|
|
|
};
|