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

38 lines
1 KiB
C#
Raw Normal View History

using Ryujinx.HLE.Exceptions;
using System;
using System.IO;
namespace Ryujinx.HLE.Loaders.Npdm
{
class FsAccessHeader
{
public int Version { get; private set; }
public ulong PermissionsBitmask { get; private set; }
2018-12-01 21:01:59 +01:00
public FsAccessHeader(Stream stream, int offset, int size)
{
2018-12-01 21:01:59 +01:00
stream.Seek(offset, SeekOrigin.Begin);
2018-12-01 21:01:59 +01:00
BinaryReader reader = new BinaryReader(stream);
2018-12-01 21:01:59 +01:00
Version = reader.ReadInt32();
PermissionsBitmask = reader.ReadUInt64();
2018-12-01 21:01:59 +01:00
int dataSize = reader.ReadInt32();
2018-12-01 21:01:59 +01:00
if (dataSize != 0x1c)
{
throw new InvalidNpdmException("FsAccessHeader is corrupted!");
}
2018-12-01 21:01:59 +01:00
int contentOwnerIdSize = reader.ReadInt32();
int dataAndContentOwnerIdSize = reader.ReadInt32();
2018-12-01 21:01:59 +01:00
if (dataAndContentOwnerIdSize != 0x1c)
{
throw new NotImplementedException("ContentOwnerId section is not implemented!");
}
}
}
}