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;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-09-23 18:11:46 +00:00
|
|
|
using System;
|
2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
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
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
private KEvent _launchableEvent;
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
private int _idleTimeDetectionExtension;
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public ISelfController(Horizon system)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-07-19 23:27:50 +00:00
|
|
|
{ 0, Exit },
|
2018-03-21 23:30:10 +00:00
|
|
|
{ 1, LockExit },
|
2018-07-19 23:27:50 +00:00
|
|
|
{ 2, UnlockExit },
|
2018-06-02 22:46:09 +00:00
|
|
|
{ 9, GetLibraryAppletLaunchableEvent },
|
2018-02-22 00:51:17 +00:00
|
|
|
{ 10, SetScreenShotPermission },
|
2018-02-10 00:14:55 +00:00
|
|
|
{ 11, SetOperationModeChangedNotification },
|
|
|
|
{ 12, SetPerformanceModeChangedNotification },
|
|
|
|
{ 13, SetFocusHandlingMode },
|
2018-02-25 18:58:16 +00:00
|
|
|
{ 14, SetRestartMessageEnabled },
|
2018-04-21 23:04:43 +00:00
|
|
|
{ 16, SetOutOfFocusSuspendingEnabled },
|
2018-08-08 06:00:54 +00:00
|
|
|
{ 19, SetScreenShotImageOrientation },
|
2018-10-07 15:12:11 +00:00
|
|
|
{ 50, SetHandlesRequestToDisplay },
|
|
|
|
{ 62, SetIdleTimeDetectionExtension },
|
|
|
|
{ 63, GetIdleTimeDetectionExtension }
|
2018-02-10 00:14:55 +00:00
|
|
|
};
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
_launchableEvent = new KEvent(system);
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long Exit(ServiceCtx context)
|
2018-07-19 23:27:50 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2018-07-19 23:27:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long LockExit(ServiceCtx context)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2018-07-19 23:27:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long UnlockExit(ServiceCtx context)
|
2018-07-19 23:27:50 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2018-02-25 18:58:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetLibraryAppletLaunchableEvent(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
_launchableEvent.ReadableEvent.Signal();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_launchableEvent.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-04 20:23:37 +00:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetScreenShotPermission(ServiceCtx context)
|
2018-02-22 00:51:17 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-22 00:51:17 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-22 00:51:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetOperationModeChangedNotification(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetPerformanceModeChangedNotification(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetFocusHandlingMode(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +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
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetRestartMessageEnabled(ServiceCtx context)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-25 18:58:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetOutOfFocusSuspendingEnabled(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetScreenShotImageOrientation(ServiceCtx context)
|
2018-08-08 06:00:54 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
int orientation = context.RequestData.ReadInt32();
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-08-08 06:00:54 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetHandlesRequestToDisplay(ServiceCtx context)
|
2018-04-21 23:04:43 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
bool enable = context.RequestData.ReadByte() != 0;
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-21 23:04:43 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-10-07 15:12:11 +00:00
|
|
|
|
|
|
|
// SetIdleTimeDetectionExtension(u32)
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 15:12:11 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
_idleTimeDetectionExtension = context.RequestData.ReadInt32();
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, $"Stubbed. IdleTimeDetectionExtension: {_idleTimeDetectionExtension}");
|
2018-10-07 15:12:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetIdleTimeDetectionExtension() -> u32
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetIdleTimeDetectionExtension(ServiceCtx context)
|
2018-10-07 15:12:11 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
context.ResponseData.Write(_idleTimeDetectionExtension);
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, $"Stubbed. IdleTimeDetectionExtension: {_idleTimeDetectionExtension}");
|
2018-10-07 15:12:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2018-07-19 23:27:50 +00:00
|
|
|
}
|