2018-10-17 12:15:50 -05:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 18:47:36 -05:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-17 23:33:36 -06:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-09-23 13:11:46 -05:00
|
|
|
using System;
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2018-03-19 13:58:46 -05:00
|
|
|
class ISelfController : IpcService
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2019-06-15 20:58:22 -05:00
|
|
|
private KEvent _libraryAppletLaunchableEvent;
|
|
|
|
|
|
|
|
private KEvent _accumulatedSuspendedTickChangedEvent;
|
|
|
|
private int _accumulatedSuspendedTickChangedEventHandle = 0;
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
private int _idleTimeDetectionExtension;
|
2018-10-07 10:12:11 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
public ISelfController(Horizon system)
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2019-06-15 20:58:22 -05:00
|
|
|
_libraryAppletLaunchableEvent = new KEvent(system);
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(0)]
|
|
|
|
// Exit()
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode Exit(ServiceCtx context)
|
2018-07-19 18:27:50 -05:00
|
|
|
{
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-16 18:47:36 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-07-19 18:27:50 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(1)]
|
|
|
|
// LockExit()
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode LockExit(ServiceCtx context)
|
2018-02-25 12:58:16 -06:00
|
|
|
{
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-16 18:47:36 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-07-19 18:27:50 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(2)]
|
|
|
|
// UnlockExit()
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode UnlockExit(ServiceCtx context)
|
2018-07-19 18:27:50 -05:00
|
|
|
{
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-16 18:47:36 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-25 12:58:16 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(9)]
|
|
|
|
// GetLibraryAppletLaunchableEvent() -> handle<copy>
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode GetLibraryAppletLaunchableEvent(ServiceCtx context)
|
2018-06-02 17:46:09 -05:00
|
|
|
{
|
2019-06-15 20:58:22 -05:00
|
|
|
_libraryAppletLaunchableEvent.ReadableEvent.Signal();
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2019-06-15 20:58:22 -05:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_libraryAppletLaunchableEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 13:11:46 -05:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-06-02 17:46:09 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(10)]
|
|
|
|
// SetScreenShotPermission(u32)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetScreenShotPermission(ServiceCtx context)
|
2018-02-21 18:51:17 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-21 18:51:17 -06:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-21 18:51:17 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(11)]
|
|
|
|
// SetOperationModeChangedNotification(b8)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetOperationModeChangedNotification(ServiceCtx context)
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(12)]
|
|
|
|
// SetPerformanceModeChangedNotification(b8)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetPerformanceModeChangedNotification(ServiceCtx context)
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(13)]
|
|
|
|
// SetFocusHandlingMode(b8, b8, b8)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetFocusHandlingMode(ServiceCtx context)
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
bool flag1 = context.RequestData.ReadByte() != 0;
|
|
|
|
bool flag2 = context.RequestData.ReadByte() != 0;
|
|
|
|
bool flag3 = context.RequestData.ReadByte() != 0;
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(14)]
|
|
|
|
// SetRestartMessageEnabled(b8)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetRestartMessageEnabled(ServiceCtx context)
|
2018-02-25 12:58:16 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-25 12:58:16 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(16)] // 2.0.0+
|
|
|
|
// SetOutOfFocusSuspendingEnabled(b8)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetOutOfFocusSuspendingEnabled(ServiceCtx context)
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
2018-04-21 18:04:43 -05:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(19)] // 3.0.0+
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetScreenShotImageOrientation(ServiceCtx context)
|
2018-08-08 01:00:54 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
int orientation = context.RequestData.ReadInt32();
|
2018-08-16 18:47:36 -05:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-08-08 01:00:54 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-08-08 01:00:54 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(50)]
|
|
|
|
// SetHandlesRequestToDisplay(b8)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetHandlesRequestToDisplay(ServiceCtx context)
|
2018-04-21 18:04:43 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-04-21 18:04:43 -05:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-21 18:04:43 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-04-21 18:04:43 -05:00
|
|
|
}
|
2018-10-07 10:12:11 -05:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(62)]
|
2018-10-07 10:12:11 -05:00
|
|
|
// SetIdleTimeDetectionExtension(u32)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 10:12:11 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
_idleTimeDetectionExtension = context.RequestData.ReadInt32();
|
2018-10-07 10:12:11 -05:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, new { _idleTimeDetectionExtension });
|
2018-10-07 10:12:11 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-10-07 10:12:11 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(63)]
|
2018-10-07 10:12:11 -05:00
|
|
|
// GetIdleTimeDetectionExtension() -> u32
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode GetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 10:12:11 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
context.ResponseData.Write(_idleTimeDetectionExtension);
|
2018-10-07 10:12:11 -05:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, new { _idleTimeDetectionExtension });
|
2018-10-07 10:12:11 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-10-07 10:12:11 -05:00
|
|
|
}
|
2019-06-15 20:58:22 -05:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(91)] // 6.0.0+
|
2019-06-15 20:58:22 -05:00
|
|
|
// GetAccumulatedSuspendedTickChangedEvent() -> handle<copy>
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode GetAccumulatedSuspendedTickChangedEvent(ServiceCtx context)
|
2019-06-15 20:58:22 -05: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 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2019-06-15 20:58:22 -05:00
|
|
|
}
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
2019-07-11 20:13:43 -05:00
|
|
|
}
|