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