2018-08-16 19:47:36 -04:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-09-23 14:11:46 -04:00
|
|
|
using System;
|
2018-02-09 19:14:55 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Hid
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2018-03-19 14:58:46 -04:00
|
|
|
class IAppletResource : IpcService
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-08-15 14:59:51 -04:00
|
|
|
private KSharedMemory HidSharedMem;
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-08-15 14:59:51 -04:00
|
|
|
public IAppletResource(KSharedMemory HidSharedMem)
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 0, GetSharedMemoryHandle }
|
|
|
|
};
|
|
|
|
|
2018-03-12 00:04:52 -04:00
|
|
|
this.HidSharedMem = HidSharedMem;
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
|
|
|
|
2018-03-12 00:04:52 -04:00
|
|
|
public long GetSharedMemoryHandle(ServiceCtx Context)
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2018-09-23 14:11:46 -04:00
|
|
|
if (Context.Process.HandleTable.GenerateHandle(HidSharedMem, out int Handle) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-03-12 00:04:52 -04:00
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
2018-02-09 19:14:55 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|