mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 02:48:36 +00:00
189c0c9c72
* Implement Modding Support * Executables: Rewrite to use contiguous mem and Spans * Reorder ExeFs, Npdm, ControlData and SaveData calls After discussion with gdkchan, it was decided it's best to call LoadExeFs after all other loads are done as it starts the guest process. * Build RomFs manually instead of Layering FS Layered FS approach has considerable latency when building the final romfs. So, we manually replace files in a single romfs instance. * Add RomFs modding via storage file * Fix and cleanup MemPatch * Add dynamically loaded NRO patching * Support exefs file replacement * Rewrite ModLoader to use mods-search architecture * Disable PPTC when exefs patches are detected Disable PPTC on exefs replacements too * Rewrite ModLoader, again * Increased maintainability and matches Atmosphere closely * Creates base mods structure if it doesn't exist * Add Exefs partition replacement * IPSwitch: Fix nsobid parsing * Move mod logs to new LogClass * Allow custom suffixes to title dirs again * Address nits * Add a per-App "Open Mods Directory" context menu item Creates the path if not present. * Normalize tooltips verbiage * Use LocalStorage and remove unused namespaces
73 lines
2.3 KiB
C#
73 lines
2.3 KiB
C#
using Ryujinx.HLE.Exceptions;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Ryujinx.HLE.Loaders.Npdm
|
|
{
|
|
// https://github.com/SciresM/hactool/blob/master/npdm.c
|
|
// https://github.com/SciresM/hactool/blob/master/npdm.h
|
|
// http://switchbrew.org/index.php?title=NPDM
|
|
public class Npdm
|
|
{
|
|
private const int MetaMagic = 'M' << 0 | 'E' << 8 | 'T' << 16 | 'A' << 24;
|
|
|
|
public byte MmuFlags { get; private set; }
|
|
public bool Is64Bit { get; private set; }
|
|
public byte MainThreadPriority { get; private set; }
|
|
public byte DefaultCpuId { get; private set; }
|
|
public int PersonalMmHeapSize { get; private set; }
|
|
public int Version { get; private set; }
|
|
public int MainThreadStackSize { get; private set; }
|
|
public string TitleName { get; set; }
|
|
public byte[] ProductCode { get; private set; }
|
|
|
|
public Aci0 Aci0 { get; private set; }
|
|
public Acid Acid { get; private set; }
|
|
|
|
public Npdm(Stream stream)
|
|
{
|
|
BinaryReader reader = new BinaryReader(stream);
|
|
|
|
if (reader.ReadInt32() != MetaMagic)
|
|
{
|
|
throw new InvalidNpdmException("NPDM Stream doesn't contain NPDM file!");
|
|
}
|
|
|
|
reader.ReadInt64();
|
|
|
|
MmuFlags = reader.ReadByte();
|
|
|
|
Is64Bit = (MmuFlags & 1) != 0;
|
|
|
|
reader.ReadByte();
|
|
|
|
MainThreadPriority = reader.ReadByte();
|
|
DefaultCpuId = reader.ReadByte();
|
|
|
|
reader.ReadInt32();
|
|
|
|
PersonalMmHeapSize = reader.ReadInt32();
|
|
|
|
Version = reader.ReadInt32();
|
|
|
|
MainThreadStackSize = reader.ReadInt32();
|
|
|
|
byte[] tempTitleName = reader.ReadBytes(0x10);
|
|
|
|
TitleName = Encoding.UTF8.GetString(tempTitleName, 0, tempTitleName.Length).Trim('\0');
|
|
|
|
ProductCode = reader.ReadBytes(0x10);
|
|
|
|
stream.Seek(0x30, SeekOrigin.Current);
|
|
|
|
int aci0Offset = reader.ReadInt32();
|
|
int aci0Size = reader.ReadInt32();
|
|
int acidOffset = reader.ReadInt32();
|
|
int acidSize = reader.ReadInt32();
|
|
|
|
Aci0 = new Aci0(stream, aci0Offset);
|
|
Acid = new Acid(stream, acidOffset);
|
|
}
|
|
}
|
|
}
|