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;
|
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 ISelfController : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-06-16 01:58:22 +00:00
|
|
|
private KEvent _libraryAppletLaunchableEvent;
|
|
|
|
|
|
|
|
private KEvent _accumulatedSuspendedTickChangedEvent;
|
|
|
|
private int _accumulatedSuspendedTickChangedEventHandle = 0;
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2020-03-04 03:41:41 +00:00
|
|
|
private object _fatalSectionLock = new object();
|
|
|
|
private int _fatalSectionCount;
|
|
|
|
|
|
|
|
// TODO: Set this when the game goes in suspension (go back to home menu ect), we currently don't support that so we can keep it set to 0.
|
|
|
|
private ulong _accumulatedSuspendedTickValue = 0;
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private int _idleTimeDetectionExtension;
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public ISelfController(Horizon system)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-06-16 01:58:22 +00:00
|
|
|
_libraryAppletLaunchableEvent = new KEvent(system);
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
|
|
|
// Exit()
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode Exit(ServiceCtx context)
|
2018-07-19 23:27:50 +00:00
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-07-19 23:27:50 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1)]
|
|
|
|
// LockExit()
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode LockExit(ServiceCtx context)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-07-19 23:27:50 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2)]
|
|
|
|
// UnlockExit()
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode UnlockExit(ServiceCtx context)
|
2018-07-19 23:27:50 +00:00
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-25 18:58:16 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 03:41:41 +00:00
|
|
|
[Command(3)] // 2.0.0+
|
|
|
|
// EnterFatalSection()
|
|
|
|
public ResultCode EnterFatalSection(ServiceCtx context)
|
|
|
|
{
|
|
|
|
lock (_fatalSectionLock)
|
|
|
|
{
|
|
|
|
_fatalSectionCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Command(4)] // 2.0.0+
|
|
|
|
// LeaveFatalSection()
|
|
|
|
public ResultCode LeaveFatalSection(ServiceCtx context)
|
|
|
|
{
|
|
|
|
ResultCode result = ResultCode.Success;
|
|
|
|
|
|
|
|
lock (_fatalSectionLock)
|
|
|
|
{
|
|
|
|
if (_fatalSectionCount != 0)
|
|
|
|
{
|
|
|
|
_fatalSectionCount--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = ResultCode.UnbalancedFatalSection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(9)]
|
|
|
|
// GetLibraryAppletLaunchableEvent() -> handle<copy>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetLibraryAppletLaunchableEvent(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2019-06-16 01:58:22 +00:00
|
|
|
_libraryAppletLaunchableEvent.ReadableEvent.Signal();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-06-16 01:58:22 +00:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_libraryAppletLaunchableEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-02 22:46:09 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(10)]
|
|
|
|
// SetScreenShotPermission(u32)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetScreenShotPermission(ServiceCtx context)
|
2018-02-22 00:51:17 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-22 00:51:17 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-22 00:51:17 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(11)]
|
|
|
|
// SetOperationModeChangedNotification(b8)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetOperationModeChangedNotification(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +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(12)]
|
|
|
|
// SetPerformanceModeChangedNotification(b8)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetPerformanceModeChangedNotification(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +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(13)]
|
|
|
|
// SetFocusHandlingMode(b8, b8, b8)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetFocusHandlingMode(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool flag1 = context.RequestData.ReadByte() != 0;
|
|
|
|
bool flag2 = context.RequestData.ReadByte() != 0;
|
|
|
|
bool flag3 = context.RequestData.ReadByte() != 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +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(14)]
|
|
|
|
// SetRestartMessageEnabled(b8)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetRestartMessageEnabled(ServiceCtx context)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-25 18:58:16 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(16)] // 2.0.0+
|
|
|
|
// SetOutOfFocusSuspendingEnabled(b8)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetOutOfFocusSuspendingEnabled(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(19)] // 3.0.0+
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetScreenShotImageOrientation(ServiceCtx context)
|
2018-08-08 06:00:54 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int orientation = context.RequestData.ReadInt32();
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-08 06:00:54 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-08-08 06:00:54 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(50)]
|
|
|
|
// SetHandlesRequestToDisplay(b8)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetHandlesRequestToDisplay(ServiceCtx context)
|
2018-04-21 23:04:43 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
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
|
|
|
}
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(62)]
|
2018-10-07 15:12:11 +00:00
|
|
|
// SetIdleTimeDetectionExtension(u32)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 15:12:11 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_idleTimeDetectionExtension = context.RequestData.ReadInt32();
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, new { _idleTimeDetectionExtension });
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-10-07 15:12:11 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(63)]
|
2018-10-07 15:12:11 +00:00
|
|
|
// GetIdleTimeDetectionExtension() -> u32
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 15:12:11 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(_idleTimeDetectionExtension);
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, new { _idleTimeDetectionExtension });
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-10-07 15:12:11 +00:00
|
|
|
}
|
2019-06-16 01:58:22 +00:00
|
|
|
|
2020-03-04 03:41:41 +00:00
|
|
|
[Command(90)] // 6.0.0+
|
|
|
|
// GetAccumulatedSuspendedTickValue() -> u64
|
|
|
|
public ResultCode GetAccumulatedSuspendedTickValue(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(_accumulatedSuspendedTickValue);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(91)] // 6.0.0+
|
2019-06-16 01:58:22 +00:00
|
|
|
// GetAccumulatedSuspendedTickChangedEvent() -> handle<copy>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetAccumulatedSuspendedTickChangedEvent(ServiceCtx context)
|
2019-06-16 01:58:22 +00:00
|
|
|
{
|
|
|
|
if (_accumulatedSuspendedTickChangedEventHandle == 0)
|
|
|
|
{
|
|
|
|
_accumulatedSuspendedTickChangedEvent = new KEvent(context.Device.System);
|
|
|
|
|
|
|
|
_accumulatedSuspendedTickChangedEvent.ReadableEvent.Signal();
|
|
|
|
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_accumulatedSuspendedTickChangedEvent.ReadableEvent, out _accumulatedSuspendedTickChangedEventHandle) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_accumulatedSuspendedTickChangedEventHandle);
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2019-06-16 01:58:22 +00:00
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|