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