patch_manager: Show LayeredExeFS patch in add-ons column
The decision was made to name them LayeredExeFS instead of just LayeredFS to differentiate from normal RomFS-based mods. The name may be long/unweildy, but conveys the meaning well.
This commit is contained in:
parent
da6d4cde56
commit
54e74b3572
2 changed files with 15 additions and 4 deletions
|
@ -26,6 +26,11 @@ namespace FileSys {
|
||||||
constexpr u64 SINGLE_BYTE_MODULUS = 0x100;
|
constexpr u64 SINGLE_BYTE_MODULUS = 0x100;
|
||||||
constexpr u64 DLC_BASE_TITLE_ID_MASK = 0xFFFFFFFFFFFFE000;
|
constexpr u64 DLC_BASE_TITLE_ID_MASK = 0xFFFFFFFFFFFFE000;
|
||||||
|
|
||||||
|
constexpr std::array<const char*, 14> EXEFS_FILE_NAMES{
|
||||||
|
"main", "main.npdm", "rtld", "sdk", "subsdk0", "subsdk1", "subsdk2",
|
||||||
|
"subsdk3", "subsdk4", "subsdk5", "subsdk6", "subsdk7", "subsdk8", "subsdk9",
|
||||||
|
};
|
||||||
|
|
||||||
struct NSOBuildHeader {
|
struct NSOBuildHeader {
|
||||||
u32_le magic;
|
u32_le magic;
|
||||||
INSERT_PADDING_BYTES(0x3C);
|
INSERT_PADDING_BYTES(0x3C);
|
||||||
|
@ -82,7 +87,6 @@ VirtualDir PatchManager::PatchExeFS(VirtualDir exefs) const {
|
||||||
// LayeredExeFS
|
// LayeredExeFS
|
||||||
const auto load_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
const auto load_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
||||||
if (load_dir != nullptr && load_dir->GetSize() > 0) {
|
if (load_dir != nullptr && load_dir->GetSize() > 0) {
|
||||||
|
|
||||||
auto patch_dirs = load_dir->GetSubdirectories();
|
auto patch_dirs = load_dir->GetSubdirectories();
|
||||||
std::sort(
|
std::sort(
|
||||||
patch_dirs.begin(), patch_dirs.end(),
|
patch_dirs.begin(), patch_dirs.end(),
|
||||||
|
@ -348,18 +352,25 @@ std::map<std::string, std::string, std::less<>> PatchManager::GetPatchVersionNam
|
||||||
if (IsDirValidAndNonEmpty(exefs_dir)) {
|
if (IsDirValidAndNonEmpty(exefs_dir)) {
|
||||||
bool ips = false;
|
bool ips = false;
|
||||||
bool ipswitch = false;
|
bool ipswitch = false;
|
||||||
|
bool layeredfs = false;
|
||||||
|
|
||||||
for (const auto& file : exefs_dir->GetFiles()) {
|
for (const auto& file : exefs_dir->GetFiles()) {
|
||||||
if (file->GetExtension() == "ips")
|
if (file->GetExtension() == "ips") {
|
||||||
ips = true;
|
ips = true;
|
||||||
else if (file->GetExtension() == "pchtxt")
|
} else if (file->GetExtension() == "pchtxt") {
|
||||||
ipswitch = true;
|
ipswitch = true;
|
||||||
|
} else if (std::find(EXEFS_FILE_NAMES.begin(), EXEFS_FILE_NAMES.end(),
|
||||||
|
file->GetName()) != EXEFS_FILE_NAMES.end()) {
|
||||||
|
layeredfs = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ips)
|
if (ips)
|
||||||
AppendCommaIfNotEmpty(types, "IPS");
|
AppendCommaIfNotEmpty(types, "IPS");
|
||||||
if (ipswitch)
|
if (ipswitch)
|
||||||
AppendCommaIfNotEmpty(types, "IPSwitch");
|
AppendCommaIfNotEmpty(types, "IPSwitch");
|
||||||
|
if (layeredfs)
|
||||||
|
AppendCommaIfNotEmpty(types, "LayeredExeFS");
|
||||||
}
|
}
|
||||||
if (IsDirValidAndNonEmpty(mod->GetSubdirectory("romfs")))
|
if (IsDirValidAndNonEmpty(mod->GetSubdirectory("romfs")))
|
||||||
AppendCommaIfNotEmpty(types, "LayeredFS");
|
AppendCommaIfNotEmpty(types, "LayeredFS");
|
||||||
|
|
|
@ -148,7 +148,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="dump_exefs">
|
<widget class="QCheckBox" name="dump_exefs">
|
||||||
<property name="whatsThis">
|
<property name="whatsThis">
|
||||||
<string>When checked, any game that yuzu loads will have its ExeFS dumped</string>
|
<string>When checked, any game that yuzu loads will have its ExeFS dumped to the yuzu/dump directory.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Dump ExeFS</string>
|
<string>Dump ExeFS</string>
|
||||||
|
|
Loading…
Reference in a new issue