2020-09-20 01:21:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <switch.h>
|
2021-09-11 14:48:13 +01:00
|
|
|
|
2021-10-21 22:12:29 +01:00
|
|
|
#include <functional>
|
2020-09-20 01:21:28 +01:00
|
|
|
#include <set>
|
2021-02-10 16:28:47 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
#include "constants.hpp"
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
namespace extract {
|
2021-03-16 02:04:21 +00:00
|
|
|
static constexpr u32 MaxTitleCount = 64000;
|
2021-09-11 14:48:13 +01:00
|
|
|
typedef struct Title
|
|
|
|
{
|
2021-03-16 02:04:21 +00:00
|
|
|
std::string id;
|
|
|
|
std::string name;
|
2021-09-11 14:48:13 +01:00
|
|
|
bool operator==(const Title& x) const
|
|
|
|
{
|
2021-03-16 02:04:21 +00:00
|
|
|
return id == x.id;
|
|
|
|
}
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
bool operator<(const Title& x) const
|
|
|
|
{
|
2021-03-16 02:04:21 +00:00
|
|
|
return id < x.id;
|
|
|
|
}
|
|
|
|
} Title;
|
|
|
|
|
2021-10-21 22:12:29 +01:00
|
|
|
void extract(
|
2022-11-04 01:24:45 +00:00
|
|
|
const std::string& filename, const std::string& workingPath = ROOT_PATH, bool preserveInis = false, std::function<void()> func = []() { return; });
|
2021-03-16 02:04:21 +00:00
|
|
|
std::vector<std::string> getInstalledTitlesNs();
|
2021-06-27 23:46:00 +01:00
|
|
|
std::vector<std::string> excludeTitles(const std::string& path, const std::vector<std::string>& listedTitles);
|
2021-06-28 15:58:04 +01:00
|
|
|
void writeTitlesToFile(const std::set<std::string>& titles, const std::string& path);
|
2022-08-07 14:39:17 +01:00
|
|
|
void extractCheats(const std::string& archivePath, const std::vector<std::string>& titles, CFW cfw, const std::string& version, bool extractAll = false);
|
|
|
|
void extractAllCheats(const std::string& archivePath, CFW cfw, const std::string& version);
|
2021-07-15 18:56:59 +01:00
|
|
|
void removeCheats();
|
2021-10-14 20:50:18 +01:00
|
|
|
void removeOrphanedCheats();
|
2021-09-21 14:07:47 +01:00
|
|
|
bool removeCheatsDirectory(const std::string& entry);
|
2021-07-17 13:29:55 +01:00
|
|
|
bool isBID(const std::string& bid);
|
2021-09-11 14:48:13 +01:00
|
|
|
} // namespace extract
|