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

35 lines
1.2 KiB
C++
Raw Normal View History

2020-09-20 01:21:28 +01:00
#pragma once
2021-02-10 16:28:47 +00:00
#include "constants.hpp"
2020-09-20 01:21:28 +01:00
#include <switch.h>
#include <set>
2021-02-10 16:28:47 +00:00
#include <string>
#include <vector>
2020-09-20 01:21:28 +01:00
namespace extract {
2020-09-20 01:21:28 +01:00
static constexpr u32 MaxTitleCount = 64000;
2020-09-20 01:21:28 +01:00
typedef struct Title {
std::string id;
std::string name;
bool operator ==(const Title&x) const {
return id == x.id;
}
2020-09-20 01:21:28 +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);
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);
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(CFW cfw);
bool isBID(std::string bid);
}