Ryujinx/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs

73 lines
1.9 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using System;
using System.Collections.Generic;
2018-02-05 00:08:20 +01:00
namespace Ryujinx.HLE.HOS.Services.Sm
2018-02-05 00:08:20 +01:00
{
class IUserInterface : IpcService
2018-02-05 00:08:20 +01:00
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
private bool IsInitialized;
public IUserInterface()
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, Initialize },
{ 1, GetService }
};
}
2018-02-05 00:08:20 +01:00
private const int SmNotInitialized = 0x415;
public long Initialize(ServiceCtx Context)
2018-02-05 00:08:20 +01:00
{
IsInitialized = true;
2018-02-05 00:08:20 +01:00
return 0;
}
public long GetService(ServiceCtx Context)
2018-02-05 00:08:20 +01:00
{
//Only for kernel version > 3.0.0.
if (!IsInitialized)
2018-02-05 00:08:20 +01:00
{
//return SmNotInitialized;
}
string Name = string.Empty;
2018-02-05 00:08:20 +01:00
for (int Index = 0; Index < 8 &&
Context.RequestData.BaseStream.Position <
Context.RequestData.BaseStream.Length; Index++)
2018-02-05 00:08:20 +01:00
{
byte Chr = Context.RequestData.ReadByte();
2018-02-05 00:08:20 +01:00
if (Chr >= 0x20 && Chr < 0x7f)
2018-02-05 00:08:20 +01:00
{
Name += (char)Chr;
2018-02-05 00:08:20 +01:00
}
}
if (Name == string.Empty)
{
return 0;
}
KSession Session = new KSession(ServiceFactory.MakeService(Context.Device.System, Name), Name);
2018-02-05 00:08:20 +01:00
if (Context.Process.HandleTable.GenerateHandle(Session, out int Handle) != KernelResult.Success)
{
throw new InvalidOperationException("Out of handles!");
}
2018-02-05 00:08:20 +01:00
Context.Response.HandleDesc = IpcHandleDesc.MakeMove(Handle);
2018-02-05 00:08:20 +01:00
return 0;
}
}
}