aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs')
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs b/src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs
new file mode 100644
index 00000000..564b8dc3
--- /dev/null
+++ b/src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs
@@ -0,0 +1,37 @@
+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; }
+
+ public FsAccessHeader(Stream stream, int offset, int size)
+ {
+ stream.Seek(offset, SeekOrigin.Begin);
+
+ BinaryReader reader = new BinaryReader(stream);
+
+ Version = reader.ReadInt32();
+ PermissionsBitmask = reader.ReadUInt64();
+
+ int dataSize = reader.ReadInt32();
+
+ if (dataSize != 0x1c)
+ {
+ throw new InvalidNpdmException("FsAccessHeader is corrupted!");
+ }
+
+ int contentOwnerIdSize = reader.ReadInt32();
+ int dataAndContentOwnerIdSize = reader.ReadInt32();
+
+ if (dataAndContentOwnerIdSize != 0x1c)
+ {
+ throw new NotImplementedException("ContentOwnerId section is not implemented!");
+ }
+ }
+ }
+}