Ryujinx/Ryujinx.HLE/Loaders/Npdm/Npdm.cs

73 lines
2.3 KiB
C#
Raw Normal View History

2018-11-29 03:01:19 +01:00
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
class Npdm
{
private const int MetaMagic = 'M' << 0 | 'E' << 8 | 'T' << 16 | 'A' << 24;
public byte MmuFlags { get; private set; }
public bool Is64Bits { get; private set; }
public byte MainThreadPriority { get; private set; }
public byte DefaultCpuId { get; private set; }
public int PersonalMmHeapSize { get; private set; }
public int ProcessCategory { get; private set; }
public int MainThreadStackSize { get; private set; }
public string TitleName { get; private set; }
public byte[] ProductCode { get; private set; }
public Aci0 Aci0 { get; private set; }
public Acid Acid { get; private set; }
public Npdm(Stream stream)
2018-11-29 03:01:19 +01:00
{
BinaryReader reader = new BinaryReader(stream);
2018-11-29 03:01:19 +01:00
if (reader.ReadInt32() != MetaMagic)
2018-11-29 03:01:19 +01:00
{
throw new InvalidNpdmException("NPDM Stream doesn't contain NPDM file!");
}
reader.ReadInt64();
2018-11-29 03:01:19 +01:00
MmuFlags = reader.ReadByte();
2018-11-29 03:01:19 +01:00
Is64Bits = (MmuFlags & 1) != 0;
reader.ReadByte();
2018-11-29 03:01:19 +01:00
MainThreadPriority = reader.ReadByte();
DefaultCpuId = reader.ReadByte();
2018-11-29 03:01:19 +01:00
reader.ReadInt32();
2018-11-29 03:01:19 +01:00
PersonalMmHeapSize = reader.ReadInt32();
2018-11-29 03:01:19 +01:00
ProcessCategory = reader.ReadInt32();
2018-11-29 03:01:19 +01:00
MainThreadStackSize = reader.ReadInt32();
2018-11-29 03:01:19 +01:00
byte[] tempTitleName = reader.ReadBytes(0x10);
2018-11-29 03:01:19 +01:00
TitleName = Encoding.UTF8.GetString(tempTitleName, 0, tempTitleName.Length).Trim('\0');
2018-11-29 03:01:19 +01:00
ProductCode = reader.ReadBytes(0x10);
2018-11-29 03:01:19 +01:00
stream.Seek(0x30, SeekOrigin.Current);
2018-11-29 03:01:19 +01:00
int aci0Offset = reader.ReadInt32();
int aci0Size = reader.ReadInt32();
int acidOffset = reader.ReadInt32();
int acidSize = reader.ReadInt32();
2018-11-29 03:01:19 +01:00
Aci0 = new Aci0(stream, aci0Offset);
Acid = new Acid(stream, acidOffset);
2018-11-29 03:01:19 +01:00
}
}
}