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