2021-09-23 01:22:17 +00:00
|
|
|
// Copyright 2021 Dolphin Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-10-03 04:23:33 +00:00
|
|
|
#include <optional>
|
2021-09-28 04:12:45 +00:00
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
2021-09-23 01:22:17 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2021-09-28 04:12:45 +00:00
|
|
|
#include "DiscIO/DirectoryBlob.h"
|
2021-09-23 01:22:17 +00:00
|
|
|
#include "DiscIO/RiivolutionParser.h"
|
|
|
|
|
2023-02-12 10:07:11 +00:00
|
|
|
namespace Core
|
|
|
|
{
|
|
|
|
class CPUThreadGuard;
|
|
|
|
}
|
|
|
|
|
2021-09-28 04:12:45 +00:00
|
|
|
namespace DiscIO::Riivolution
|
|
|
|
{
|
2021-10-03 04:23:33 +00:00
|
|
|
struct SavegameRedirect
|
|
|
|
{
|
|
|
|
std::string m_target_path;
|
|
|
|
bool m_clone;
|
|
|
|
};
|
|
|
|
|
2021-09-28 04:12:45 +00:00
|
|
|
class FileDataLoader
|
2021-09-23 01:22:17 +00:00
|
|
|
{
|
2021-09-28 04:12:45 +00:00
|
|
|
public:
|
|
|
|
struct Node
|
|
|
|
{
|
|
|
|
std::string m_filename;
|
|
|
|
bool m_is_directory;
|
|
|
|
};
|
2021-09-23 01:22:17 +00:00
|
|
|
|
2021-09-28 04:12:45 +00:00
|
|
|
virtual ~FileDataLoader();
|
|
|
|
virtual std::optional<u64> GetExternalFileSize(std::string_view external_relative_path) = 0;
|
|
|
|
virtual std::vector<u8> GetFileContents(std::string_view external_relative_path) = 0;
|
|
|
|
virtual std::vector<Node> GetFolderContents(std::string_view external_relative_path) = 0;
|
|
|
|
virtual BuilderContentSource MakeContentSource(std::string_view external_relative_path,
|
|
|
|
u64 external_offset, u64 external_size,
|
|
|
|
u64 disc_offset) = 0;
|
2021-10-03 04:23:33 +00:00
|
|
|
virtual std::optional<std::string>
|
|
|
|
ResolveSavegameRedirectPath(std::string_view external_relative_path) = 0;
|
2021-09-28 04:12:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class FileDataLoaderHostFS : public FileDataLoader
|
2021-09-23 01:22:17 +00:00
|
|
|
{
|
2021-09-28 04:12:45 +00:00
|
|
|
public:
|
|
|
|
// sd_root should be an absolute path to the folder representing our virtual SD card
|
|
|
|
// xml_path should be an absolute path to the parsed XML file
|
|
|
|
// patch_root should be the 'root' attribute given in the 'patch' or 'wiiroot' XML element
|
|
|
|
FileDataLoaderHostFS(std::string sd_root, const std::string& xml_path,
|
|
|
|
std::string_view patch_root);
|
|
|
|
|
|
|
|
std::optional<u64> GetExternalFileSize(std::string_view external_relative_path) override;
|
|
|
|
std::vector<u8> GetFileContents(std::string_view external_relative_path) override;
|
|
|
|
std::vector<FileDataLoader::Node>
|
|
|
|
GetFolderContents(std::string_view external_relative_path) override;
|
|
|
|
BuilderContentSource MakeContentSource(std::string_view external_relative_path,
|
|
|
|
u64 external_offset, u64 external_size,
|
|
|
|
u64 disc_offset) override;
|
2021-10-03 04:23:33 +00:00
|
|
|
std::optional<std::string>
|
|
|
|
ResolveSavegameRedirectPath(std::string_view external_relative_path) override;
|
2021-09-28 04:12:45 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::optional<std::string> MakeAbsoluteFromRelative(std::string_view external_relative_path);
|
|
|
|
|
|
|
|
std::string m_sd_root;
|
|
|
|
std::string m_patch_root;
|
|
|
|
};
|
|
|
|
|
2022-06-08 22:25:11 +00:00
|
|
|
enum class PatchIndex
|
|
|
|
{
|
|
|
|
FileSystem,
|
|
|
|
DolphinSysFiles,
|
|
|
|
};
|
|
|
|
|
|
|
|
void ApplyPatchesToFiles(const std::vector<Patch>& patches, PatchIndex index,
|
2021-09-23 01:22:17 +00:00
|
|
|
std::vector<DiscIO::FSTBuilderNode>* fst,
|
|
|
|
DiscIO::FSTBuilderNode* dol_node);
|
2023-02-12 10:07:11 +00:00
|
|
|
void ApplyGeneralMemoryPatches(const Core::CPUThreadGuard& guard,
|
|
|
|
const std::vector<Patch>& patches);
|
|
|
|
void ApplyApploaderMemoryPatches(const Core::CPUThreadGuard& guard,
|
|
|
|
const std::vector<Patch>& patches, u32 ram_address,
|
2021-10-21 03:03:00 +00:00
|
|
|
u32 ram_length);
|
2021-10-03 04:23:33 +00:00
|
|
|
std::optional<SavegameRedirect>
|
|
|
|
ExtractSavegameRedirect(const std::vector<Patch>& riivolution_patches);
|
2021-09-23 01:22:17 +00:00
|
|
|
} // namespace DiscIO::Riivolution
|