2018-10-17 18:15:50 +01:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-17 00:47:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-09-23 19:11:46 +01:00
|
|
|
using System;
|
2018-06-11 01:46:42 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-17 00:47:36 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-06-11 01:46:42 +01:00
|
|
|
{
|
|
|
|
class IHomeMenuFunctions : IpcService
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
2018-06-11 01:46:42 +01:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-06-11 01:46:42 +01:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
private KEvent ChannelEvent;
|
2018-06-11 01:46:42 +01:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public IHomeMenuFunctions(Horizon System)
|
2018-06-11 01:46:42 +01:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
2018-06-11 01:46:42 +01:00
|
|
|
{
|
|
|
|
{ 10, RequestToGetForeground },
|
|
|
|
{ 21, GetPopFromGeneralChannelEvent }
|
|
|
|
};
|
|
|
|
|
|
|
|
//ToDo: Signal this Event somewhere in future.
|
2018-12-05 00:52:39 +00:00
|
|
|
ChannelEvent = new KEvent(System);
|
2018-06-11 01:46:42 +01:00
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public long RequestToGetForeground(ServiceCtx Context)
|
2018-06-11 01:46:42 +01:00
|
|
|
{
|
2018-10-17 18:15:50 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-11 01:46:42 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public long GetPopFromGeneralChannelEvent(ServiceCtx Context)
|
2018-06-11 01:46:42 +01:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
if (Context.Process.HandleTable.GenerateHandle(ChannelEvent.ReadableEvent, out int Handle) != KernelResult.Success)
|
2018-09-23 19:11:46 +01:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-11 01:46:42 +01:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
2018-06-11 01:46:42 +01:00
|
|
|
|
2018-10-17 18:15:50 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-11 01:46:42 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|