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
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-06-02 22:46:09 +00:00
|
|
|
private KEvent LaunchableEvent;
|
|
|
|
|
2018-10-07 15:12:11 +00:00
|
|
|
private int IdleTimeDetectionExtension;
|
|
|
|
|
2018-09-18 23:36:43 +00:00
|
|
|
public ISelfController(Horizon System)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
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-09-18 23:36:43 +00:00
|
|
|
LaunchableEvent = new KEvent(System);
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 23:27:50 +00:00
|
|
|
public long Exit(ServiceCtx Context)
|
|
|
|
{
|
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-03-21 23:30:10 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long UnlockExit(ServiceCtx Context)
|
|
|
|
{
|
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-06-02 22:46:09 +00:00
|
|
|
public long GetLibraryAppletLaunchableEvent(ServiceCtx Context)
|
|
|
|
{
|
2018-09-23 18:11:46 +00:00
|
|
|
LaunchableEvent.ReadableEvent.Signal();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-09-23 18:11:46 +00:00
|
|
|
if (Context.Process.HandleTable.GenerateHandle(LaunchableEvent.ReadableEvent, out int Handle) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-22 00:51:17 +00:00
|
|
|
public long SetScreenShotPermission(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
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-02-10 00:14:55 +00:00
|
|
|
public long SetOperationModeChangedNotification(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long SetPerformanceModeChangedNotification(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long SetFocusHandlingMode(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Flag1 = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
bool Flag2 = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
bool Flag3 = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
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-02-25 18:58:16 +00:00
|
|
|
public long SetRestartMessageEnabled(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
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-02-10 00:14:55 +00:00
|
|
|
public long SetOutOfFocusSuspendingEnabled(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
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-08-08 06:00:54 +00:00
|
|
|
public long SetScreenShotImageOrientation(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
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-04-21 23:04:43 +00:00
|
|
|
public long SetHandlesRequestToDisplay(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
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)
|
|
|
|
public long SetIdleTimeDetectionExtension(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
IdleTimeDetectionExtension = Context.RequestData.ReadInt32();
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, $"Stubbed. IdleTimeDetectionExtension: {IdleTimeDetectionExtension}");
|
2018-10-07 15:12:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetIdleTimeDetectionExtension() -> u32
|
|
|
|
public long GetIdleTimeDetectionExtension(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(IdleTimeDetectionExtension);
|
|
|
|
|
2018-10-17 17:15:50 +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
|
|
|
}
|