2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00: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;
|
2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Apm;
|
2018-09-23 18:11:46 +00:00
|
|
|
using System;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class ICommonStateGetter : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-09-19 00:45:11 +00:00
|
|
|
private CpuBoostMode _cpuBoostMode = CpuBoostMode.Disabled;
|
2019-08-28 11:02:50 +00:00
|
|
|
|
2020-04-23 11:59:11 +00:00
|
|
|
public ICommonStateGetter() { }
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
|
|
|
// GetEventHandle() -> handle<copy>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetEventHandle(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
KEvent Event = context.Device.System.AppletState.MessageEvent;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(Event.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1)]
|
|
|
|
// ReceiveMessage() -> nn::am::AppletMessage
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode ReceiveMessage(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
if (!context.Device.System.AppletState.TryDequeueMessage(out MessageInfo message))
|
2018-03-19 18:58:46 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.NoMessages;
|
2018-03-19 18:58:46 +00:00
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((int)message);
|
2018-03-19 18:58:46 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(5)]
|
|
|
|
// GetOperationMode() -> u8
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetOperationMode(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
OperationMode mode = context.Device.System.State.DockedMode
|
2018-08-14 22:02:42 +00:00
|
|
|
? OperationMode.Docked
|
|
|
|
: OperationMode.Handheld;
|
2018-08-11 12:24:55 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((byte)mode);
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(6)]
|
|
|
|
// GetPerformanceMode() -> u32
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetPerformanceMode(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-09-19 00:45:11 +00:00
|
|
|
PerformanceMode mode = context.Device.System.State.DockedMode
|
|
|
|
? PerformanceMode.Docked
|
|
|
|
: PerformanceMode.Handheld;
|
2018-08-11 12:24:55 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((int)mode);
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(8)]
|
|
|
|
// GetBootMode() -> u8
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetBootMode(ServiceCtx context)
|
2018-04-21 23:04:43 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((byte)0); //Unknown value.
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-04-21 23:04:43 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(9)]
|
|
|
|
// GetCurrentFocusState() -> u8
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetCurrentFocusState(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((byte)context.Device.System.AppletState.FocusState);
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2018-06-10 23:53:28 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(60)] // 3.0.0+
|
|
|
|
// GetDefaultDisplayResolution() -> (u32, u32)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetDefaultDisplayResolution(ServiceCtx context)
|
2018-06-10 23:53:28 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(1280);
|
|
|
|
context.ResponseData.Write(720);
|
2018-06-10 23:53:28 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-10 23:53:28 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(61)] // 3.0.0+
|
|
|
|
// GetDefaultDisplayResolutionChangeEvent() -> handle<copy>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetDefaultDisplayResolutionChangeEvent(ServiceCtx context)
|
2018-06-10 23:53:28 +00:00
|
|
|
{
|
2020-04-23 11:59:11 +00:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(context.Device.System.DisplayResolutionChangeEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-10 23:53:28 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-10 23:53:28 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-10 23:53:28 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-10 23:53:28 +00:00
|
|
|
}
|
2019-08-28 11:02:50 +00:00
|
|
|
|
|
|
|
[Command(66)] // 6.0.0+
|
|
|
|
// SetCpuBoostMode(u32 cpu_boost_mode)
|
|
|
|
public ResultCode SetCpuBoostMode(ServiceCtx context)
|
|
|
|
{
|
|
|
|
uint cpuBoostMode = context.RequestData.ReadUInt32();
|
|
|
|
|
|
|
|
if (cpuBoostMode > 1)
|
|
|
|
{
|
2020-02-11 23:07:13 +00:00
|
|
|
return ResultCode.InvalidParameters;
|
2019-08-28 11:02:50 +00:00
|
|
|
}
|
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
_cpuBoostMode = (CpuBoostMode)cpuBoostMode;
|
2019-08-28 11:02:50 +00:00
|
|
|
|
|
|
|
// NOTE: There is a condition variable after the assignment, probably waiting something with apm:sys service (SetCpuBoostMode call?).
|
|
|
|
// Since we will probably never support CPU boost things, it's not needed to implement more.
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|