| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using Ryujinx.Common.Logging;
- using Ryujinx.HLE.HOS.Ipc;
- using Ryujinx.HLE.HOS.Kernel.Common;
- using Ryujinx.HLE.HOS.Kernel.Threading;
- using System;
- using System.Collections.Generic;
- namespace Ryujinx.HLE.HOS.Services.Am
- {
- class IHomeMenuFunctions : IpcService
- {
- private Dictionary<int, ServiceProcessRequest> _commands;
- public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
- private KEvent _channelEvent;
- public IHomeMenuFunctions(Horizon system)
- {
- _commands = new Dictionary<int, ServiceProcessRequest>
- {
- { 10, RequestToGetForeground },
- { 21, GetPopFromGeneralChannelEvent }
- };
- //ToDo: Signal this Event somewhere in future.
- _channelEvent = new KEvent(system);
- }
- public long RequestToGetForeground(ServiceCtx context)
- {
- Logger.PrintStub(LogClass.ServiceAm);
- return 0;
- }
- public long GetPopFromGeneralChannelEvent(ServiceCtx context)
- {
- if (context.Process.HandleTable.GenerateHandle(_channelEvent.ReadableEvent, out int handle) != KernelResult.Success)
- {
- throw new InvalidOperationException("Out of handles!");
- }
- context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
- Logger.PrintStub(LogClass.ServiceAm);
- return 0;
- }
- }
- }
|