2020-06-02 08:39:24 +00:00
|
|
|
|
#pragma once
|
2017-03-28 23:54:05 +00:00
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
2020-12-13 13:34:45 +00:00
|
|
|
|
#include "util/types.hpp"
|
2020-06-02 08:39:24 +00:00
|
|
|
|
#include "util/yaml.hpp"
|
|
|
|
|
|
2020-06-27 08:32:00 +00:00
|
|
|
|
namespace patch_key
|
|
|
|
|
{
|
|
|
|
|
static const std::string all = "All";
|
2020-06-29 22:16:24 +00:00
|
|
|
|
static const std::string anchors = "Anchors";
|
|
|
|
|
static const std::string author = "Author";
|
|
|
|
|
static const std::string games = "Games";
|
|
|
|
|
static const std::string group = "Group";
|
|
|
|
|
static const std::string notes = "Notes";
|
|
|
|
|
static const std::string patch = "Patch";
|
|
|
|
|
static const std::string patch_version = "Patch Version";
|
|
|
|
|
static const std::string version = "Version";
|
2020-06-27 08:32:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-30 19:35:15 +00:00
|
|
|
|
static const std::string patch_engine_version = "1.2";
|
|
|
|
|
|
2017-03-28 23:54:05 +00:00
|
|
|
|
enum class patch_type
|
|
|
|
|
{
|
2020-06-13 00:16:28 +00:00
|
|
|
|
invalid,
|
2017-09-17 14:33:59 +00:00
|
|
|
|
load,
|
2017-03-28 23:54:05 +00:00
|
|
|
|
byte,
|
|
|
|
|
le16,
|
|
|
|
|
le32,
|
|
|
|
|
le64,
|
2017-07-17 13:34:04 +00:00
|
|
|
|
lef32,
|
|
|
|
|
lef64,
|
2017-03-28 23:54:05 +00:00
|
|
|
|
be16,
|
|
|
|
|
be32,
|
|
|
|
|
be64,
|
2017-07-17 13:34:04 +00:00
|
|
|
|
bef32,
|
|
|
|
|
bef64,
|
2017-03-28 23:54:05 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class patch_engine
|
|
|
|
|
{
|
2020-06-02 08:39:24 +00:00
|
|
|
|
public:
|
|
|
|
|
struct patch_data
|
2017-03-28 23:54:05 +00:00
|
|
|
|
{
|
2020-06-02 08:39:24 +00:00
|
|
|
|
patch_type type = patch_type::load;
|
|
|
|
|
u32 offset = 0;
|
2020-06-19 12:04:39 +00:00
|
|
|
|
std::string original_value; // Used for import consistency (avoid rounding etc.)
|
2020-06-12 19:09:08 +00:00
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
u64 long_value;
|
|
|
|
|
f64 double_value;
|
|
|
|
|
} value { 0 };
|
2017-03-28 23:54:05 +00:00
|
|
|
|
};
|
2020-12-13 13:34:45 +00:00
|
|
|
|
|
2020-06-26 00:58:06 +00:00
|
|
|
|
using patch_app_versions = std::unordered_map<std::string /*app_version*/, bool /*enabled*/>;
|
|
|
|
|
using patch_serials = std::unordered_map<std::string /*serial*/, patch_app_versions>;
|
|
|
|
|
using patch_titles = std::unordered_map<std::string /*serial*/, patch_serials>;
|
2017-03-28 23:54:05 +00:00
|
|
|
|
|
2020-06-02 08:39:24 +00:00
|
|
|
|
struct patch_info
|
|
|
|
|
{
|
|
|
|
|
// Patch information
|
2020-06-26 00:58:06 +00:00
|
|
|
|
std::vector<patch_data> data_list;
|
|
|
|
|
patch_titles titles;
|
2020-06-02 08:39:24 +00:00
|
|
|
|
std::string description;
|
|
|
|
|
std::string patch_version;
|
2020-06-26 00:58:06 +00:00
|
|
|
|
std::string patch_group;
|
2020-06-02 08:39:24 +00:00
|
|
|
|
std::string author;
|
|
|
|
|
std::string notes;
|
2020-06-19 14:13:36 +00:00
|
|
|
|
std::string source_path;
|
2017-03-28 23:54:05 +00:00
|
|
|
|
|
2020-06-19 11:46:56 +00:00
|
|
|
|
// Redundant information for accessibility (see patch_container)
|
2020-06-02 08:39:24 +00:00
|
|
|
|
std::string hash;
|
|
|
|
|
std::string version;
|
|
|
|
|
bool is_legacy = false;
|
2020-06-26 00:58:06 +00:00
|
|
|
|
bool is_enabled = false; // only for legacy patches
|
2020-06-02 08:39:24 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-06-19 11:46:56 +00:00
|
|
|
|
struct patch_container
|
2020-06-02 08:39:24 +00:00
|
|
|
|
{
|
2020-06-26 00:58:06 +00:00
|
|
|
|
std::unordered_map<std::string /*description*/, patch_info> patch_info_map;
|
2020-06-02 08:39:24 +00:00
|
|
|
|
std::string hash;
|
|
|
|
|
std::string version;
|
|
|
|
|
bool is_legacy = false;
|
|
|
|
|
};
|
|
|
|
|
|
2020-06-19 11:46:56 +00:00
|
|
|
|
using patch_map = std::unordered_map<std::string /*hash*/, patch_container>;
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
|
|
|
|
patch_engine();
|
|
|
|
|
|
|
|
|
|
// Returns the directory in which patch_config.yml is located
|
|
|
|
|
static std::string get_patch_config_path();
|
|
|
|
|
|
2020-06-30 19:35:15 +00:00
|
|
|
|
// Returns the directory in which patches are located
|
|
|
|
|
static std::string get_patches_path();
|
|
|
|
|
|
2020-06-19 17:47:51 +00:00
|
|
|
|
// Returns the filepath for the imported_patch.yml
|
|
|
|
|
static std::string get_imported_patch_path();
|
|
|
|
|
|
2020-06-02 08:39:24 +00:00
|
|
|
|
// Load from file and append to specified patches map
|
2020-09-06 09:47:45 +00:00
|
|
|
|
static bool load(patch_map& patches, const std::string& path, std::string content = "", bool importing = false, std::stringstream* log_messages = nullptr);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
|
|
|
|
// Read and add a patch node to the patch info
|
2020-06-12 19:09:08 +00:00
|
|
|
|
static bool read_patch_node(patch_info& info, YAML::Node node, const YAML::Node& root, std::stringstream* log_messages = nullptr);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
|
|
|
|
// Get the patch type of a patch node
|
|
|
|
|
static patch_type get_patch_type(YAML::Node node);
|
|
|
|
|
|
|
|
|
|
// Add the data of a patch node
|
2020-06-12 19:09:08 +00:00
|
|
|
|
static bool add_patch_data(YAML::Node node, patch_info& info, u32 modifier, const YAML::Node& root, std::stringstream* log_messages = nullptr);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
|
|
|
|
// Save to patch_config.yml
|
2020-06-11 13:12:44 +00:00
|
|
|
|
static void save_config(const patch_map& patches_map, bool enable_legacy_patches);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
2020-06-12 19:09:08 +00:00
|
|
|
|
// Save a patch file
|
2020-06-19 13:38:51 +00:00
|
|
|
|
static bool save_patches(const patch_map& patches, const std::string& path, std::stringstream* log_messages = nullptr);
|
2020-06-12 19:09:08 +00:00
|
|
|
|
|
|
|
|
|
// Create or append patches to a file
|
2020-06-19 19:48:59 +00:00
|
|
|
|
static bool import_patches(const patch_map& patches, const std::string& path, size_t& count, size_t& total, std::stringstream* log_messages = nullptr);
|
2020-06-12 19:09:08 +00:00
|
|
|
|
|
2020-06-19 17:47:51 +00:00
|
|
|
|
// Remove a patch from a file
|
|
|
|
|
static bool remove_patch(const patch_info& info);
|
|
|
|
|
|
2020-06-02 08:39:24 +00:00
|
|
|
|
// Load patch_config.yml
|
2020-06-26 00:58:06 +00:00
|
|
|
|
static patch_map load_config(bool& enable_legacy_patches);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
|
|
|
|
// Load from file and append to member patches map
|
|
|
|
|
void append_global_patches();
|
|
|
|
|
|
|
|
|
|
// Load from title relevant files and append to member patches map
|
|
|
|
|
void append_title_patches(const std::string& title_id);
|
2017-03-28 23:54:05 +00:00
|
|
|
|
|
2017-07-17 13:34:04 +00:00
|
|
|
|
// Apply patch (returns the number of entries applied)
|
2020-06-28 11:26:10 +00:00
|
|
|
|
std::size_t apply(const std::string& name, u8* dst);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
2020-01-07 09:10:23 +00:00
|
|
|
|
// Apply patch with a check that the address exists in SPU local storage
|
2020-06-28 11:26:10 +00:00
|
|
|
|
std::size_t apply_with_ls_check(const std::string& name, u8* dst, u32 filesz, u32 ls_addr);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
// Internal: Apply patch (returns the number of entries applied)
|
|
|
|
|
template <bool check_local_storage>
|
2020-06-28 11:26:10 +00:00
|
|
|
|
std::size_t apply_patch(const std::string& name, u8* dst, u32 filesz, u32 ls_addr);
|
2020-06-02 08:39:24 +00:00
|
|
|
|
|
|
|
|
|
// Database
|
|
|
|
|
patch_map m_map;
|
2020-06-28 11:26:10 +00:00
|
|
|
|
|
|
|
|
|
// Only one patch per patch group can be applied
|
|
|
|
|
std::set<std::string> m_applied_groups;
|
2017-03-28 23:54:05 +00:00
|
|
|
|
};
|