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;
|
2018-12-18 06:33:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-09-23 20:11:46 +02:00
|
|
|
using System;
|
2018-02-10 01:14:55 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class ICommonStateGetter : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private KEvent _displayResolutionChangeEvent;
|
2018-06-11 01:53:28 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public ICommonStateGetter(Horizon system)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-08-11 15:31:34 +02:00
|
|
|
{ 0, GetEventHandle },
|
|
|
|
{ 1, ReceiveMessage },
|
|
|
|
{ 5, GetOperationMode },
|
|
|
|
{ 6, GetPerformanceMode },
|
|
|
|
{ 8, GetBootMode },
|
|
|
|
{ 9, GetCurrentFocusState },
|
|
|
|
{ 60, GetDefaultDisplayResolution },
|
|
|
|
{ 61, GetDefaultDisplayResolutionChangeEvent }
|
2018-02-10 01:14:55 +01:00
|
|
|
};
|
2018-06-11 01:53:28 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_displayResolutionChangeEvent = new KEvent(system);
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetEventHandle(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
KEvent Event = context.Device.System.AppletState.MessageEvent;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(Event.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long ReceiveMessage(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (!context.Device.System.AppletState.TryDequeueMessage(out MessageInfo message))
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
|
|
|
return MakeError(ErrorModule.Am, AmErr.NoMessages);
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((int)message);
|
2018-03-19 19:58:46 +01:00
|
|
|
|
|
|
|
return 0;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetOperationMode(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
OperationMode mode = context.Device.System.State.DockedMode
|
2018-08-15 00:02:42 +02:00
|
|
|
? OperationMode.Docked
|
|
|
|
: OperationMode.Handheld;
|
2018-08-11 14:24:55 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((byte)mode);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetPerformanceMode(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Apm.PerformanceMode mode = context.Device.System.State.DockedMode
|
2018-08-15 00:02:42 +02:00
|
|
|
? Apm.PerformanceMode.Docked
|
|
|
|
: Apm.PerformanceMode.Handheld;
|
2018-08-11 14:24:55 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((int)mode);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetBootMode(ServiceCtx context)
|
2018-04-22 01:04:43 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((byte)0); //Unknown value.
|
2018-04-22 01:04:43 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-22 01:04:43 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetCurrentFocusState(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((byte)context.Device.System.AppletState.FocusState);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-06-11 01:53:28 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetDefaultDisplayResolution(ServiceCtx context)
|
2018-06-11 01:53:28 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(1280);
|
|
|
|
context.ResponseData.Write(720);
|
2018-06-11 01:53:28 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetDefaultDisplayResolutionChangeEvent(ServiceCtx context)
|
2018-06-11 01:53:28 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_displayResolutionChangeEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-11 01:53:28 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-11 01:53:28 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-11 01:53:28 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2018-08-11 14:12:28 +02:00
|
|
|
}
|