1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 13:33:39 +01:00
AIO-switch-updater/include/extract.hpp

37 lines
1.2 KiB
C++
Raw Normal View History

2020-09-20 01:21:28 +01:00
#pragma once
#include <switch.h>
2021-09-11 14:48:13 +01:00
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 {
static constexpr u32 MaxTitleCount = 64000;
2021-09-11 14:48:13 +01:00
typedef struct Title
{
std::string id;
std::string name;
2021-09-11 14:48:13 +01:00
bool operator==(const Title& x) const
{
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
{
return id < x.id;
}
} Title;
void extract(const std::string& filename, const std::string& workingPath = ROOT_PATH, int overwriteInis = 1);
2021-09-11 14:48:13 +01:00
void extract(const std::string& filename, const std::string& workingPath, const std::string& toExclude);
std::vector<std::string> getInstalledTitlesNs();
std::vector<std::string> excludeTitles(const std::string& path, const std::vector<std::string>& listedTitles);
void writeTitlesToFile(const std::set<std::string>& titles, const std::string& path);
2021-09-11 14:48:13 +01:00
void extractCheats(const std::string& zipPath, std::vector<std::string> titles, CFW cfw, bool credits = false);
void extractAllCheats(const std::string& zipPath, CFW cfw);
void removeCheats();
bool isBID(const std::string& bid);
2021-09-11 14:48:13 +01:00
} // namespace extract