Files
eden/src/core/file_sys/patch_manager.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

117 lines
3.6 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-08-25 19:03:45 -04:00
#pragma once
#include <map>
#include <memory>
2020-09-03 04:51:49 -03:00
#include <optional>
#include <string>
2018-08-25 19:03:45 -04:00
#include "common/common_types.h"
#include "core/file_sys/nca_metadata.h"
2024-01-16 06:23:01 +01:00
#include "core/file_sys/vfs/vfs_types.h"
#include "core/memory/dmnt_cheat_types.h"
2018-08-25 19:03:45 -04:00
namespace Core {
class System;
}
namespace Service::FileSystem {
class FileSystemController;
}
2018-08-25 19:03:45 -04:00
namespace FileSys {
class ContentProvider;
2018-08-28 22:38:35 -04:00
class NCA;
class NACP;
2018-08-28 22:38:35 -04:00
2024-01-19 16:37:34 -05:00
enum class PatchType { Update, DLC, Mod };
enum class PatchSource {
Unknown,
NAND,
External,
Packed,
};
2024-01-19 16:37:34 -05:00
struct Patch {
bool enabled;
std::string name;
std::string version;
PatchType type;
u64 program_id;
u64 title_id;
PatchSource source;
std::string location;
u32 numeric_version{0};
2024-01-19 16:37:34 -05:00
};
2018-08-25 19:03:45 -04:00
// A centralized class to manage patches to games.
class PatchManager {
public:
2020-09-14 19:09:49 -04:00
using BuildID = std::array<u8, 0x20>;
using Metadata = std::pair<std::unique_ptr<NACP>, VirtualFile>;
explicit PatchManager(u64 title_id_,
const Service::FileSystem::FileSystemController& fs_controller_,
const ContentProvider& content_provider_);
~PatchManager();
2018-08-25 19:03:45 -04:00
2020-09-14 19:09:49 -04:00
[[nodiscard]] u64 GetTitleID() const;
2018-08-25 19:03:45 -04:00
// Currently tracked ExeFS patches:
// - Game Updates
2020-09-14 19:09:49 -04:00
[[nodiscard]] VirtualDir PatchExeFS(VirtualDir exefs) const;
2018-08-25 19:03:45 -04:00
2018-09-29 22:15:16 -04:00
// Currently tracked NSO patches:
// - IPS
// - IPSwitch
2020-09-14 19:09:49 -04:00
[[nodiscard]] std::vector<u8> PatchNSO(const std::vector<u8>& nso,
const std::string& name) const;
2018-09-29 22:15:16 -04:00
// Checks to see if PatchNSO() will have any effect given the NSO's build ID.
// Used to prevent expensive copies in NSO loader.
2023-09-14 14:34:05 -04:00
[[nodiscard]] bool HasNSOPatch(const BuildID& build_id, std::string_view name) const;
2018-09-29 22:15:16 -04:00
// Creates a CheatList object with all
2020-09-14 19:09:49 -04:00
[[nodiscard]] std::vector<Core::Memory::CheatEntry> CreateCheatList(
const BuildID& build_id) const;
2018-08-25 19:03:45 -04:00
// Currently tracked RomFS patches:
// - Game Updates
2018-09-19 22:02:44 -04:00
// - LayeredFS
2023-08-10 21:34:43 -04:00
[[nodiscard]] VirtualFile PatchRomFS(const NCA* base_nca, VirtualFile base_romfs,
2020-09-14 19:09:49 -04:00
ContentRecordType type = ContentRecordType::Program,
2023-08-10 21:34:43 -04:00
VirtualFile packed_update_raw = nullptr,
bool apply_layeredfs = true) const;
2018-08-25 19:03:45 -04:00
2024-01-19 16:37:34 -05:00
// Returns a vector of patches
[[nodiscard]] std::vector<Patch> GetPatches(VirtualFile update_raw = nullptr) const;
2018-08-25 19:03:45 -04:00
// If the game update exists, returns the u32 version field in its Meta-type NCA. If that fails,
// it will fallback to the Meta-type NCA of the base game. If that fails, the result will be
// std::nullopt
2020-09-14 19:09:49 -04:00
[[nodiscard]] std::optional<u32> GetGameVersion() const;
2019-06-24 19:05:50 -04: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.
2020-09-14 19:09:49 -04:00
[[nodiscard]] Metadata GetControlMetadata() const;
// Version of GetControlMetadata that takes an arbitrary NCA
2020-09-14 19:09:49 -04:00
[[nodiscard]] Metadata ParseControlNCA(const NCA& nca) const;
2018-08-25 19:03:45 -04:00
private:
2020-09-14 19:09:49 -04:00
[[nodiscard]] std::vector<VirtualFile> CollectPatches(const std::vector<VirtualDir>& patch_dirs,
const std::string& build_id) const;
2018-08-25 19:03:45 -04:00
u64 title_id;
const Service::FileSystem::FileSystemController& fs_controller;
const ContentProvider& content_provider;
2018-08-25 19:03:45 -04:00
};
} // namespace FileSys