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