2018-08-17 01:47:36 +02:00
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
|
|
|
|
using Ryujinx.HLE.Logging;
|
2018-09-23 20:11:46 +02:00
|
|
|
|
using System;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
class ILibraryAppletAccessor : IpcService
|
|
|
|
|
{
|
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
|
|
private KEvent StateChangedEvent;
|
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
|
public ILibraryAppletAccessor(Horizon System)
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
|
{
|
|
|
|
|
{ 0, GetAppletStateChangedEvent },
|
|
|
|
|
{ 10, Start },
|
|
|
|
|
{ 30, GetResult },
|
|
|
|
|
{ 100, PushInData },
|
|
|
|
|
{ 101, PopOutData }
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
|
StateChangedEvent = new KEvent(System);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long GetAppletStateChangedEvent(ServiceCtx Context)
|
|
|
|
|
{
|
2018-09-23 20:11:46 +02:00
|
|
|
|
StateChangedEvent.ReadableEvent.Signal();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
2018-09-23 20:11:46 +02:00
|
|
|
|
if (Context.Process.HandleTable.GenerateHandle(StateChangedEvent.ReadableEvent, out int Handle) != KernelResult.Success)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long Start(ServiceCtx Context)
|
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long GetResult(ServiceCtx Context)
|
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long PushInData(ServiceCtx Context)
|
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long PopOutData(ServiceCtx Context)
|
|
|
|
|
{
|
|
|
|
|
MakeObject(Context, new IStorage(StorageHelper.MakeLaunchParams()));
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|