2018-08-25 23:03:45 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <map>
|
2018-09-06 17:51:57 +00:00
|
|
|
#include <memory>
|
2018-08-26 14:53:31 +00:00
|
|
|
#include <string>
|
2018-08-25 23:03:45 +00:00
|
|
|
#include "common/common_types.h"
|
2018-12-23 02:28:56 +00:00
|
|
|
#include "core/file_sys/cheat_engine.h"
|
2018-09-03 22:57:52 +00:00
|
|
|
#include "core/file_sys/nca_metadata.h"
|
2018-08-25 23:03:45 +00:00
|
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
|
2019-03-22 10:08:11 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-08-25 23:03:45 +00:00
|
|
|
namespace FileSys {
|
|
|
|
|
2018-08-29 02:38:35 +00:00
|
|
|
class NCA;
|
2018-09-03 22:57:52 +00:00
|
|
|
class NACP;
|
2018-08-29 02:38:35 +00:00
|
|
|
|
2018-08-26 14:53:31 +00:00
|
|
|
enum class TitleVersionFormat : u8 {
|
|
|
|
ThreeElements, ///< vX.Y.Z
|
|
|
|
FourElements, ///< vX.Y.Z.W
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string FormatTitleVersion(u32 version,
|
|
|
|
TitleVersionFormat format = TitleVersionFormat::ThreeElements);
|
2018-08-25 23:03:45 +00:00
|
|
|
|
|
|
|
// A centralized class to manage patches to games.
|
|
|
|
class PatchManager {
|
|
|
|
public:
|
|
|
|
explicit PatchManager(u64 title_id);
|
2018-09-19 23:19:05 +00:00
|
|
|
~PatchManager();
|
2018-08-25 23:03:45 +00:00
|
|
|
|
2018-11-28 19:01:09 +00:00
|
|
|
u64 GetTitleID() const;
|
|
|
|
|
2018-08-25 23:03:45 +00:00
|
|
|
// Currently tracked ExeFS patches:
|
|
|
|
// - Game Updates
|
|
|
|
VirtualDir PatchExeFS(VirtualDir exefs) const;
|
|
|
|
|
2018-09-30 02:15:16 +00:00
|
|
|
// Currently tracked NSO patches:
|
|
|
|
// - IPS
|
2018-10-01 12:31:34 +00:00
|
|
|
// - IPSwitch
|
2019-03-28 00:08:56 +00:00
|
|
|
std::vector<u8> PatchNSO(const std::vector<u8>& nso, const std::string& name) const;
|
2018-09-30 02:15:16 +00:00
|
|
|
|
|
|
|
// Checks to see if PatchNSO() will have any effect given the NSO's build ID.
|
|
|
|
// Used to prevent expensive copies in NSO loader.
|
|
|
|
bool HasNSOPatch(const std::array<u8, 0x20>& build_id) const;
|
|
|
|
|
2018-12-23 02:28:56 +00:00
|
|
|
// Creates a CheatList object with all
|
2019-03-22 10:08:11 +00:00
|
|
|
std::vector<CheatList> CreateCheatList(const Core::System& system,
|
|
|
|
const std::array<u8, 0x20>& build_id) const;
|
2018-12-23 02:28:56 +00:00
|
|
|
|
2018-08-25 23:03:45 +00:00
|
|
|
// Currently tracked RomFS patches:
|
|
|
|
// - Game Updates
|
2018-09-20 02:02:44 +00:00
|
|
|
// - LayeredFS
|
2018-08-29 02:38:35 +00:00
|
|
|
VirtualFile PatchRomFS(VirtualFile base, u64 ivfc_offset,
|
2018-09-25 13:19:42 +00:00
|
|
|
ContentRecordType type = ContentRecordType::Program,
|
|
|
|
VirtualFile update_raw = nullptr) const;
|
2018-08-25 23:03:45 +00:00
|
|
|
|
|
|
|
// Returns a vector of pairs between patch names and patch versions.
|
2018-09-30 02:14:01 +00:00
|
|
|
// i.e. Update 3.2.2 will return {"Update", "3.2.2"}
|
2018-10-05 12:53:45 +00:00
|
|
|
std::map<std::string, std::string, std::less<>> GetPatchVersionNames(
|
|
|
|
VirtualFile update_raw = nullptr) const;
|
2018-08-25 23:03:45 +00:00
|
|
|
|
2018-09-03 22:57:52 +00:00
|
|
|
// Given title_id of the program, attempts to get the control data of the update and parse it,
|
|
|
|
// falling back to the base control data.
|
2018-10-09 18:22:31 +00:00
|
|
|
std::pair<std::unique_ptr<NACP>, VirtualFile> GetControlMetadata() const;
|
2018-09-03 22:57:52 +00:00
|
|
|
|
|
|
|
// Version of GetControlMetadata that takes an arbitrary NCA
|
2018-10-09 18:22:31 +00:00
|
|
|
std::pair<std::unique_ptr<NACP>, VirtualFile> ParseControlNCA(const NCA& nca) const;
|
2018-09-03 22:57:52 +00:00
|
|
|
|
2018-08-25 23:03:45 +00:00
|
|
|
private:
|
2018-11-28 19:01:09 +00:00
|
|
|
std::vector<VirtualFile> CollectPatches(const std::vector<VirtualDir>& patch_dirs,
|
|
|
|
const std::string& build_id) const;
|
|
|
|
|
2018-08-25 23:03:45 +00:00
|
|
|
u64 title_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|