2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-09-23 20:11:46 +02:00
|
|
|
using System;
|
2018-02-25 05:34:16 +01:00
|
|
|
using System.Collections.Generic;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Sm
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-04-06 06:01:52 +02:00
|
|
|
class IUserInterface : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-25 05:34:16 +01:00
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
private bool IsInitialized;
|
2018-02-25 05:34:16 +01:00
|
|
|
|
2018-04-06 06:01:52 +02:00
|
|
|
public IUserInterface()
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 0, Initialize },
|
|
|
|
{ 1, GetService }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
private const int SmNotInitialized = 0x415;
|
|
|
|
|
2018-02-25 05:34:16 +01:00
|
|
|
public long Initialize(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
IsInitialized = true;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-25 05:34:16 +01:00
|
|
|
public long GetService(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
//Only for kernel version > 3.0.0.
|
2018-03-19 19:58:46 +01:00
|
|
|
if (!IsInitialized)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
//return SmNotInitialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
string Name = string.Empty;
|
|
|
|
|
|
|
|
for (int Index = 0; Index < 8 &&
|
|
|
|
Context.RequestData.BaseStream.Position <
|
|
|
|
Context.RequestData.BaseStream.Length; Index++)
|
|
|
|
{
|
|
|
|
byte Chr = Context.RequestData.ReadByte();
|
|
|
|
|
|
|
|
if (Chr >= 0x20 && Chr < 0x7f)
|
|
|
|
{
|
|
|
|
Name += (char)Chr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-25 05:34:16 +01:00
|
|
|
if (Name == string.Empty)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
KSession Session = new KSession(ServiceFactory.MakeService(Context.Device.System, Name), Name);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-09-23 20:11:46 +02: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);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|