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