* Add docstrings for exceptions to methods near TryGetApplicationsFromFile() * Make sure TryGetApplicationsFromFile() doesn't throw exceptions anymore * Add missing filePath to ApplicationData when loading applications from ExeFS * Fix typo Co-authored-by: riperiperi <rhy3756547@hotmail.com> --------- Co-authored-by: riperiperi <rhy3756547@hotmail.com>
81 lines
3.1 KiB
C#
81 lines
3.1 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 ProcessFlags { 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; }
|
|
|
|
/// <exception cref="InvalidNpdmException">The stream doesn't contain valid NPDM data.</exception>
|
|
/// <exception cref="System.NotImplementedException">The FsAccessHeader.ContentOwnerId section is not implemented.</exception>
|
|
/// <exception cref="System.ArgumentException">The stream does not support reading, is <see langword="null"/>, or is already closed.</exception>
|
|
/// <exception cref="System.ArgumentException">An error occured while reading bytes from the stream.</exception>
|
|
/// <exception cref="EndOfStreamException">The end of the stream is reached.</exception>
|
|
/// <exception cref="System.ObjectDisposedException">The stream is closed.</exception>
|
|
/// <exception cref="IOException">An I/O error occurred.</exception>
|
|
public Npdm(Stream stream)
|
|
{
|
|
BinaryReader reader = new(stream);
|
|
|
|
if (reader.ReadInt32() != MetaMagic)
|
|
{
|
|
throw new InvalidNpdmException("NPDM Stream doesn't contain NPDM file!");
|
|
}
|
|
|
|
reader.ReadInt64();
|
|
|
|
ProcessFlags = reader.ReadByte();
|
|
|
|
Is64Bit = (ProcessFlags & 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();
|
|
#pragma warning disable IDE0059 // Remove unnecessary value assignment
|
|
int aci0Size = reader.ReadInt32();
|
|
int acidOffset = reader.ReadInt32();
|
|
int acidSize = reader.ReadInt32();
|
|
#pragma warning restore IDE0059
|
|
|
|
Aci0 = new Aci0(stream, aci0Offset);
|
|
Acid = new Acid(stream, acidOffset);
|
|
}
|
|
}
|
|
}
|