|
|
|
@ -70,15 +70,18 @@ VirtualDir PatchManager::PatchExeFS(VirtualDir exefs) const {
|
|
|
|
|
|
|
|
|
|
static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType type) {
|
|
|
|
|
const auto load_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
|
|
|
|
if (type == ContentRecordType::Program && load_dir != nullptr && load_dir->GetSize() > 0) {
|
|
|
|
|
auto extracted = ExtractRomFS(romfs);
|
|
|
|
|
if (type != ContentRecordType::Program || load_dir == nullptr || load_dir->GetSize() <= 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto extracted = ExtractRomFS(romfs);
|
|
|
|
|
if (extracted == nullptr) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (extracted != nullptr) {
|
|
|
|
|
auto patch_dirs = load_dir->GetSubdirectories();
|
|
|
|
|
std::sort(patch_dirs.begin(), patch_dirs.end(),
|
|
|
|
|
[](const VirtualDir& l, const VirtualDir& r) {
|
|
|
|
|
return l->GetName() < r->GetName();
|
|
|
|
|
});
|
|
|
|
|
[](const VirtualDir& l, const VirtualDir& r) { return l->GetName() < r->GetName(); });
|
|
|
|
|
|
|
|
|
|
std::vector<VirtualDir> layers;
|
|
|
|
|
layers.reserve(patch_dirs.size() + 1);
|
|
|
|
@ -87,21 +90,21 @@ static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType t
|
|
|
|
|
if (romfs_dir != nullptr)
|
|
|
|
|
layers.push_back(std::move(romfs_dir));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
layers.push_back(std::move(extracted));
|
|
|
|
|
|
|
|
|
|
auto layered = LayeredVfsDirectory::MakeLayeredDirectory(std::move(layers));
|
|
|
|
|
if (layered != nullptr) {
|
|
|
|
|
auto packed = CreateRomFS(std::move(layered));
|
|
|
|
|
if (layered == nullptr) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto packed = CreateRomFS(std::move(layered));
|
|
|
|
|
if (packed == nullptr) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (packed != nullptr) {
|
|
|
|
|
LOG_INFO(Loader, " RomFS: LayeredFS patches applied successfully");
|
|
|
|
|
romfs = std::move(packed);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VirtualFile PatchManager::PatchRomFS(VirtualFile romfs, u64 ivfc_offset,
|
|
|
|
|
ContentRecordType type) const {
|
|
|
|
|