summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/ips_layer.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-10-01 14:31:34 +0200
committerZach Hilman <zachhilman@gmail.com>2018-10-04 17:34:30 +0200
commit9669cdb710e3242b7c0b705ea613587d36f79e00 (patch)
tree35f69b6a9679f7f7309b3b7305a954778b8592d3 /src/core/file_sys/ips_layer.cpp
parentpatch_manager: Add support for IPSwitch format patches (diff)
downloadyuzu-9669cdb710e3242b7c0b705ea613587d36f79e00.tar
yuzu-9669cdb710e3242b7c0b705ea613587d36f79e00.tar.gz
yuzu-9669cdb710e3242b7c0b705ea613587d36f79e00.tar.bz2
yuzu-9669cdb710e3242b7c0b705ea613587d36f79e00.tar.lz
yuzu-9669cdb710e3242b7c0b705ea613587d36f79e00.tar.xz
yuzu-9669cdb710e3242b7c0b705ea613587d36f79e00.tar.zst
yuzu-9669cdb710e3242b7c0b705ea613587d36f79e00.zip
Diffstat (limited to 'src/core/file_sys/ips_layer.cpp')
-rw-r--r--src/core/file_sys/ips_layer.cpp45
1 files changed, 38 insertions, 7 deletions
diff --git a/src/core/file_sys/ips_layer.cpp b/src/core/file_sys/ips_layer.cpp
index 6bce138a8..6c5535f83 100644
--- a/src/core/file_sys/ips_layer.cpp
+++ b/src/core/file_sys/ips_layer.cpp
@@ -17,6 +17,11 @@ enum class IPSFileType {
Error,
};
+const std::map<const char*, const char*> ESCAPE_CHARACTER_MAP{
+ {"\\a", "\a"}, {"\\b", "\b"}, {"\\f", "\f"}, {"\\n", "\n"}, {"\\r", "\r"}, {"\\t", "\t"},
+ {"\\v", "\v"}, {"\\\\", "\\"}, {"\\\'", "\'"}, {"\\\"", "\""}, {"\\\?", "\?"},
+};
+
static IPSFileType IdentifyMagic(const std::vector<u8>& magic) {
if (magic.size() != 5)
return IPSFileType::Error;
@@ -89,7 +94,7 @@ VirtualFile PatchIPS(const VirtualFile& in, const VirtualFile& ips) {
IPSwitchCompiler::IPSwitchCompiler(VirtualFile patch_text_)
: valid(false), patch_text(std::move(patch_text_)), nso_build_id{}, is_little_endian(false),
- offset_shift(0), print_values(false) {
+ offset_shift(0), print_values(false), last_comment("") {
Parse();
}
@@ -105,6 +110,18 @@ static bool StartsWith(const std::string& base, const std::string& check) {
return base.size() >= check.size() && base.substr(0, check.size()) == check;
}
+static std::string EscapeStringSequences(std::string in) {
+ for (const auto& seq : ESCAPE_CHARACTER_MAP) {
+ for (auto index = in.find(seq.first); index != std::string::npos;
+ index = in.find(seq.first, index)) {
+ in.replace(index, std::strlen(seq.first), seq.second);
+ index += std::strlen(seq.second);
+ }
+ }
+
+ return in;
+}
+
void IPSwitchCompiler::Parse() {
const auto bytes = patch_text->ReadAllBytes();
std::stringstream s;
@@ -121,6 +138,13 @@ void IPSwitchCompiler::Parse() {
for (std::size_t i = 0; i < lines.size(); ++i) {
auto line = lines[i];
+
+ // Remove midline comments
+ if (!StartsWith(line, "//") && line.find("//") != std::string::npos) {
+ last_comment = line.substr(line.find("//") + 2);
+ line = line.substr(0, line.find("//"));
+ }
+
if (StartsWith(line, "@stop")) {
// Force stop
break;
@@ -132,11 +156,18 @@ void IPSwitchCompiler::Parse() {
nso_build_id = Common::HexStringToArray<0x20>(raw_build_id);
} else if (StartsWith(line, "@flag offset_shift ")) {
// Offset Shift Flag
- offset_shift = std::stoull(line.substr(19), nullptr, 0);
+ offset_shift = std::stoll(line.substr(19), nullptr, 0);
} else if (StartsWith(line, "#")) {
// Mandatory Comment
LOG_INFO(Loader, "[IPSwitchCompiler ('{}')] Forced output comment: {}",
patch_text->GetName(), line.substr(1));
+ } else if (StartsWith(line, "//")) {
+ // Normal Comment
+ last_comment = line.substr(2);
+ if (last_comment.find_first_not_of(' ') == std::string::npos)
+ continue;
+ if (last_comment.find_first_not_of(' ') != 0)
+ last_comment = last_comment.substr(last_comment.find_first_not_of(' '));
} else if (StartsWith(line, "@little-endian")) {
// Set values to read as little endian
is_little_endian = true;
@@ -151,11 +182,10 @@ void IPSwitchCompiler::Parse() {
const auto enabled = StartsWith(line, "@enabled");
if (i == 0)
return;
- const auto name = lines[i - 1].substr(3);
LOG_INFO(Loader, "[IPSwitchCompiler ('{}')] Parsing patch '{}' ({})",
- patch_text->GetName(), name, line.substr(1));
+ patch_text->GetName(), last_comment, line.substr(1));
- IPSwitchPatch patch{name, enabled, {}};
+ IPSwitchPatch patch{last_comment, enabled, {}};
// Read rest of patch
while (true) {
@@ -173,10 +203,11 @@ void IPSwitchCompiler::Parse() {
// 9 - first char of replacement val
if (line[9] == '\"') {
// string replacement
- const auto end_index = line.find_last_of('\"');
+ const auto end_index = line.find('\"', 10);
if (end_index == std::string::npos || end_index < 10)
return;
- const auto value = line.substr(10, end_index - 10);
+ auto value = line.substr(10, end_index - 10);
+ value = EscapeStringSequences(value);
replace.reserve(value.size());
std::copy(value.begin(), value.end(), std::back_inserter(replace));
} else {