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
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class ISelfController : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-12-02 00:23:43 +01:00
|
|
|
private readonly long _pid;
|
|
|
|
|
2019-06-16 03:58:22 +02:00
|
|
|
private KEvent _libraryAppletLaunchableEvent;
|
2020-12-02 00:23:43 +01:00
|
|
|
private int _libraryAppletLaunchableEventHandle;
|
2019-06-16 03:58:22 +02:00
|
|
|
|
|
|
|
private KEvent _accumulatedSuspendedTickChangedEvent;
|
2020-12-02 00:23:43 +01:00
|
|
|
private int _accumulatedSuspendedTickChangedEventHandle;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2020-03-04 04:41:41 +01: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;
|
|
|
|
|
2020-07-22 06:56:00 +02:00
|
|
|
// TODO: Determine where those fields are used.
|
|
|
|
private bool _screenShotPermission = false;
|
|
|
|
private bool _operationModeChangedNotification = false;
|
|
|
|
private bool _performanceModeChangedNotification = false;
|
|
|
|
private bool _restartMessageEnabled = false;
|
|
|
|
private bool _outOfFocusSuspendingEnabled = false;
|
|
|
|
private bool _handlesRequestToDisplay = false;
|
|
|
|
private bool _autoSleepDisabled = false;
|
|
|
|
private bool _albumImageTakenNotificationEnabled = false;
|
|
|
|
|
|
|
|
private uint _screenShotImageOrientation = 0;
|
|
|
|
private uint _idleTimeDetectionExtension = 0;
|
2018-10-07 17:12:11 +02:00
|
|
|
|
2021-06-28 20:54:45 +02:00
|
|
|
public ISelfController(ServiceCtx context, long pid)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2021-06-28 20:54:45 +02:00
|
|
|
_libraryAppletLaunchableEvent = new KEvent(context.Device.System.KernelContext);
|
2020-12-02 00:23:43 +01:00
|
|
|
_pid = pid;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// Exit()
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode Exit(ServiceCtx context)
|
2018-07-20 01:27:50 +02:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-08-17 01:47:36 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-07-20 01:27:50 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(1)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// LockExit()
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode LockExit(ServiceCtx context)
|
2018-02-25 19:58:16 +01:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-08-17 01:47:36 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-07-20 01:27:50 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(2)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// UnlockExit()
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode UnlockExit(ServiceCtx context)
|
2018-07-20 01:27:50 +02:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-08-17 01:47:36 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-25 19:58:16 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(3)] // 2.0.0+
|
2020-03-04 04:41:41 +01:00
|
|
|
// EnterFatalSection()
|
|
|
|
public ResultCode EnterFatalSection(ServiceCtx context)
|
|
|
|
{
|
|
|
|
lock (_fatalSectionLock)
|
|
|
|
{
|
|
|
|
_fatalSectionCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(4)] // 2.0.0+
|
2020-03-04 04:41:41 +01:00
|
|
|
// LeaveFatalSection()
|
|
|
|
public ResultCode LeaveFatalSection(ServiceCtx context)
|
|
|
|
{
|
|
|
|
ResultCode result = ResultCode.Success;
|
|
|
|
|
|
|
|
lock (_fatalSectionLock)
|
|
|
|
{
|
|
|
|
if (_fatalSectionCount != 0)
|
|
|
|
{
|
|
|
|
_fatalSectionCount--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = ResultCode.UnbalancedFatalSection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(9)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetLibraryAppletLaunchableEvent() -> handle<copy>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetLibraryAppletLaunchableEvent(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2019-06-16 03:58:22 +02:00
|
|
|
_libraryAppletLaunchableEvent.ReadableEvent.Signal();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
if (_libraryAppletLaunchableEventHandle == 0)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
2020-12-02 00:23:43 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_libraryAppletLaunchableEvent.ReadableEvent, out _libraryAppletLaunchableEventHandle) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-09-23 20:11:46 +02:00
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_libraryAppletLaunchableEventHandle);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(10)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetScreenShotPermission(u32)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetScreenShotPermission(ServiceCtx context)
|
2018-02-22 01:51:17 +01:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
bool screenShotPermission = context.RequestData.ReadBoolean();
|
2018-02-22 01:51:17 +01:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { screenShotPermission });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_screenShotPermission = screenShotPermission;
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-22 01:51:17 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(11)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetOperationModeChangedNotification(b8)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetOperationModeChangedNotification(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
bool operationModeChangedNotification = context.RequestData.ReadBoolean();
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { operationModeChangedNotification });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_operationModeChangedNotification = operationModeChangedNotification;
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(12)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetPerformanceModeChangedNotification(b8)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetPerformanceModeChangedNotification(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
bool performanceModeChangedNotification = context.RequestData.ReadBoolean();
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { performanceModeChangedNotification });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_performanceModeChangedNotification = performanceModeChangedNotification;
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(13)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetFocusHandlingMode(b8, b8, b8)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetFocusHandlingMode(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
bool unknownFlag1 = context.RequestData.ReadBoolean();
|
|
|
|
bool unknownFlag2 = context.RequestData.ReadBoolean();
|
|
|
|
bool unknownFlag3 = context.RequestData.ReadBoolean();
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { unknownFlag1, unknownFlag2, unknownFlag3 });
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(14)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetRestartMessageEnabled(b8)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetRestartMessageEnabled(ServiceCtx context)
|
2018-02-25 19:58:16 +01:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
bool restartMessageEnabled = context.RequestData.ReadBoolean();
|
2018-02-25 19:58:16 +01:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { restartMessageEnabled });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_restartMessageEnabled = restartMessageEnabled;
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-25 19:58:16 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(16)] // 2.0.0+
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetOutOfFocusSuspendingEnabled(b8)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetOutOfFocusSuspendingEnabled(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
bool outOfFocusSuspendingEnabled = context.RequestData.ReadBoolean();
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { outOfFocusSuspendingEnabled });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_outOfFocusSuspendingEnabled = outOfFocusSuspendingEnabled;
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2018-04-22 01:04:43 +02:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(19)] // 3.0.0+
|
2020-07-22 06:56:00 +02:00
|
|
|
// SetScreenShotImageOrientation(u32)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetScreenShotImageOrientation(ServiceCtx context)
|
2018-08-08 08:00:54 +02:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
uint screenShotImageOrientation = context.RequestData.ReadUInt32();
|
2018-08-17 01:47:36 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { screenShotImageOrientation });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_screenShotImageOrientation = screenShotImageOrientation;
|
2018-08-08 08:00:54 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-08-08 08:00:54 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(40)]
|
2020-12-02 00:23:43 +01:00
|
|
|
// CreateManagedDisplayLayer() -> u64
|
|
|
|
public ResultCode CreateManagedDisplayLayer(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.Device.System.SurfaceFlinger.CreateLayer(_pid, out long layerId);
|
2021-04-13 02:56:16 +02:00
|
|
|
context.Device.System.SurfaceFlinger.SetRenderLayer(layerId);
|
2020-12-02 00:23:43 +01:00
|
|
|
|
|
|
|
context.ResponseData.Write(layerId);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-06-28 20:54:45 +02:00
|
|
|
[CommandHipc(41)] // 4.0.0+
|
|
|
|
// IsSystemBufferSharingEnabled()
|
|
|
|
public ResultCode IsSystemBufferSharingEnabled(ServiceCtx context)
|
|
|
|
{
|
|
|
|
// NOTE: Service checks a private field and return an error if the SystemBufferSharing is disabled.
|
|
|
|
|
|
|
|
return ResultCode.NotImplemented;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(44)] // 10.0.0+
|
2020-12-02 00:23:43 +01:00
|
|
|
// CreateManagedDisplaySeparableLayer() -> (u64, u64)
|
|
|
|
public ResultCode CreateManagedDisplaySeparableLayer(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.Device.System.SurfaceFlinger.CreateLayer(_pid, out long displayLayerId);
|
2021-04-13 02:56:16 +02:00
|
|
|
context.Device.System.SurfaceFlinger.CreateLayer(_pid, out long recordingLayerId);
|
|
|
|
context.Device.System.SurfaceFlinger.SetRenderLayer(displayLayerId);
|
2020-12-02 00:23:43 +01:00
|
|
|
|
|
|
|
context.ResponseData.Write(displayLayerId);
|
|
|
|
context.ResponseData.Write(recordingLayerId);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(50)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetHandlesRequestToDisplay(b8)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetHandlesRequestToDisplay(ServiceCtx context)
|
2018-04-22 01:04:43 +02:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
bool handlesRequestToDisplay = context.RequestData.ReadBoolean();
|
2018-04-22 01:04:43 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { handlesRequestToDisplay });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_handlesRequestToDisplay = handlesRequestToDisplay;
|
2018-04-22 01:04:43 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-22 01:04:43 +02:00
|
|
|
}
|
2018-10-07 17:12:11 +02:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(62)]
|
2018-10-07 17:12:11 +02:00
|
|
|
// SetIdleTimeDetectionExtension(u32)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 17:12:11 +02:00
|
|
|
{
|
2020-07-22 06:56:00 +02:00
|
|
|
uint idleTimeDetectionExtension = context.RequestData.ReadUInt32();
|
2018-10-07 17:12:11 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { idleTimeDetectionExtension });
|
2020-07-22 06:56:00 +02:00
|
|
|
|
|
|
|
_idleTimeDetectionExtension = idleTimeDetectionExtension;
|
2018-10-07 17:12:11 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-10-07 17:12:11 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(63)]
|
2018-10-07 17:12:11 +02:00
|
|
|
// GetIdleTimeDetectionExtension() -> u32
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 17:12:11 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(_idleTimeDetectionExtension);
|
2018-10-07 17:12:11 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { _idleTimeDetectionExtension });
|
2018-10-07 17:12:11 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-10-07 17:12:11 +02:00
|
|
|
}
|
2019-06-16 03:58:22 +02:00
|
|
|
|
2021-06-29 18:57:06 +02:00
|
|
|
[CommandHipc(65)]
|
|
|
|
// ReportUserIsActive()
|
|
|
|
public ResultCode ReportUserIsActive(ServiceCtx context)
|
|
|
|
{
|
|
|
|
// TODO: Call idle:sys ReportUserIsActive when implemented.
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(68)]
|
2020-07-22 06:56:00 +02:00
|
|
|
// SetAutoSleepDisabled(u8)
|
|
|
|
public ResultCode SetAutoSleepDisabled(ServiceCtx context)
|
|
|
|
{
|
|
|
|
bool autoSleepDisabled = context.RequestData.ReadBoolean();
|
|
|
|
|
|
|
|
_autoSleepDisabled = autoSleepDisabled;
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(69)]
|
2020-07-22 06:56:00 +02:00
|
|
|
// IsAutoSleepDisabled() -> u8
|
|
|
|
public ResultCode IsAutoSleepDisabled(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(_autoSleepDisabled);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(90)] // 6.0.0+
|
2020-03-04 04:41:41 +01:00
|
|
|
// GetAccumulatedSuspendedTickValue() -> u64
|
|
|
|
public ResultCode GetAccumulatedSuspendedTickValue(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(_accumulatedSuspendedTickValue);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(91)] // 6.0.0+
|
2019-06-16 03:58:22 +02:00
|
|
|
// GetAccumulatedSuspendedTickChangedEvent() -> handle<copy>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetAccumulatedSuspendedTickChangedEvent(ServiceCtx context)
|
2019-06-16 03:58:22 +02:00
|
|
|
{
|
|
|
|
if (_accumulatedSuspendedTickChangedEventHandle == 0)
|
|
|
|
{
|
2020-05-04 05:41:29 +02:00
|
|
|
_accumulatedSuspendedTickChangedEvent = new KEvent(context.Device.System.KernelContext);
|
2019-06-16 03:58:22 +02:00
|
|
|
|
|
|
|
_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 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2019-06-16 03:58:22 +02:00
|
|
|
}
|
2020-07-22 06:56:00 +02:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(100)] // 7.0.0+
|
2020-07-22 06:56:00 +02:00
|
|
|
// SetAlbumImageTakenNotificationEnabled(u8)
|
|
|
|
public ResultCode SetAlbumImageTakenNotificationEnabled(ServiceCtx context)
|
|
|
|
{
|
|
|
|
bool albumImageTakenNotificationEnabled = context.RequestData.ReadBoolean();
|
|
|
|
|
|
|
|
_albumImageTakenNotificationEnabled = albumImageTakenNotificationEnabled;
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2019-07-12 03:13:43 +02:00
|
|
|
}
|