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