mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
37 lines
No EOL
1.2 KiB
C++
37 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
#include <set>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "constants.hpp"
|
|
|
|
namespace extract {
|
|
static constexpr u32 MaxTitleCount = 64000;
|
|
typedef struct Title
|
|
{
|
|
std::string id;
|
|
std::string name;
|
|
bool operator==(const Title& x) const
|
|
{
|
|
return id == x.id;
|
|
}
|
|
|
|
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();
|
|
bool isBID(const std::string& bid);
|
|
} // namespace extract
|