| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using Ryujinx.Common.Logging;
- using Ryujinx.HLE.HOS.Ipc;
- using Ryujinx.HLE.HOS.Kernel;
- 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, "Stubbed.");
- 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, "Stubbed.");
- return 0;
- }
- }
- }
|