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-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"
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
enum class PatchType {
|
|
|
|
Update,
|
2018-09-20 02:02:44 +00:00
|
|
|
LayeredFS,
|
2018-09-27 02:15:05 +00:00
|
|
|
DLC,
|
2018-08-25 23:03:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
std::string FormatPatchTypeName(PatchType type);
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
// Currently tracked ExeFS patches:
|
|
|
|
// - Game Updates
|
|
|
|
VirtualDir PatchExeFS(VirtualDir exefs) const;
|
|
|
|
|
|
|
|
// 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,
|
|
|
|
ContentRecordType type = ContentRecordType::Program) const;
|
2018-08-25 23:03:45 +00:00
|
|
|
|
|
|
|
// Returns a vector of pairs between patch names and patch versions.
|
|
|
|
// i.e. Update v80 will return {Update, 80}
|
2018-09-01 17:11:30 +00:00
|
|
|
std::map<PatchType, std::string> GetPatchVersionNames() 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.
|
|
|
|
std::pair<std::shared_ptr<NACP>, VirtualFile> GetControlMetadata() const;
|
|
|
|
|
|
|
|
// Version of GetControlMetadata that takes an arbitrary NCA
|
|
|
|
std::pair<std::shared_ptr<NACP>, VirtualFile> ParseControlNCA(
|
|
|
|
const std::shared_ptr<NCA>& nca) const;
|
|
|
|
|
2018-08-25 23:03:45 +00:00
|
|
|
private:
|
|
|
|
u64 title_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|