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

43 lines
1.2 KiB
C#
Raw Normal View History

2018-11-29 02:01:19 +00:00
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Text;
namespace Ryujinx.HLE.Loaders.Npdm
{
class ServiceAccessControl
{
public IReadOnlyDictionary<string, bool> Services { get; private set; }
2018-11-29 02:01:19 +00:00
public ServiceAccessControl(Stream Stream, int Offset, int Size)
2018-11-29 02:01:19 +00:00
{
Stream.Seek(Offset, SeekOrigin.Begin);
2018-11-29 02:01:19 +00:00
BinaryReader Reader = new BinaryReader(Stream);
2018-11-29 02:01:19 +00:00
int ByteReaded = 0;
2018-11-29 02:01:19 +00:00
Dictionary<string, bool> Services = new Dictionary<string, bool>();
2018-11-29 02:01:19 +00:00
while (ByteReaded != Size)
2018-11-29 02:01:19 +00:00
{
byte ControlByte = Reader.ReadByte();
2018-11-29 02:01:19 +00:00
if (ControlByte == 0)
2018-11-29 02:01:19 +00:00
{
break;
}
int Length = (ControlByte & 0x07) + 1;
bool RegisterAllowed = (ControlByte & 0x80) != 0;
2018-11-29 02:01:19 +00:00
Services.Add(Encoding.ASCII.GetString(Reader.ReadBytes(Length), 0, Length), RegisterAllowed);
2018-11-29 02:01:19 +00:00
ByteReaded += Length + 1;
2018-11-29 02:01:19 +00:00
}
this.Services = new ReadOnlyDictionary<string, bool>(Services);
2018-11-29 02:01:19 +00:00
}
}
}