2018-10-17 12:15:50 -05:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 18:47:36 -05:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-17 23:33:36 -06:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-09-23 13:11:46 -05:00
|
|
|
using System;
|
2018-06-10 19:46:42 -05:00
|
|
|
|
2019-09-18 19:45:11 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
2018-06-10 19:46:42 -05:00
|
|
|
{
|
|
|
|
class IHomeMenuFunctions : IpcService
|
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
private KEvent _channelEvent;
|
2018-06-10 19:46:42 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
public IHomeMenuFunctions(Horizon system)
|
2018-06-10 19:46:42 -05:00
|
|
|
{
|
2019-07-01 21:39:22 -05:00
|
|
|
// TODO: Signal this Event somewhere in future.
|
2020-05-03 22:41:29 -05:00
|
|
|
_channelEvent = new KEvent(system.KernelContext);
|
2018-06-10 19:46:42 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(10)]
|
|
|
|
// RequestToGetForeground()
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode RequestToGetForeground(ServiceCtx context)
|
2018-06-10 19:46:42 -05:00
|
|
|
{
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-10 19:46:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-06-10 19:46:42 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(21)]
|
|
|
|
// GetPopFromGeneralChannelEvent() -> handle<copy>
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode GetPopFromGeneralChannelEvent(ServiceCtx context)
|
2018-06-10 19:46:42 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_channelEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 13:11:46 -05:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-10 19:46:42 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-10 19:46:42 -05:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-10 19:46:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-06-10 19:46:42 -05:00
|
|
|
}
|
|
|
|
}
|
2019-07-11 20:13:43 -05:00
|
|
|
}
|