2018-08-16 19:47:36 -04:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-06-10 20:46:42 -04:00
|
|
|
using Ryujinx.HLE.Logging;
|
2018-02-09 19:14:55 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
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
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-06-02 18:46:09 -04:00
|
|
|
private KEvent LaunchableEvent;
|
|
|
|
|
2018-09-18 19:36:43 -04:00
|
|
|
public ISelfController(Horizon System)
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-07-19 19:27:50 -04:00
|
|
|
{ 0, Exit },
|
2018-03-21 19:30:10 -04:00
|
|
|
{ 1, LockExit },
|
2018-07-19 19:27:50 -04:00
|
|
|
{ 2, UnlockExit },
|
2018-06-02 18:46:09 -04:00
|
|
|
{ 9, GetLibraryAppletLaunchableEvent },
|
2018-02-21 19:51:17 -05:00
|
|
|
{ 10, SetScreenShotPermission },
|
2018-02-09 19:14:55 -05:00
|
|
|
{ 11, SetOperationModeChangedNotification },
|
|
|
|
{ 12, SetPerformanceModeChangedNotification },
|
|
|
|
{ 13, SetFocusHandlingMode },
|
2018-02-25 13:58:16 -05:00
|
|
|
{ 14, SetRestartMessageEnabled },
|
2018-04-21 19:04:43 -04:00
|
|
|
{ 16, SetOutOfFocusSuspendingEnabled },
|
2018-08-08 02:00:54 -04:00
|
|
|
{ 19, SetScreenShotImageOrientation },
|
2018-04-21 19:04:43 -04:00
|
|
|
{ 50, SetHandlesRequestToDisplay }
|
2018-02-09 19:14:55 -05:00
|
|
|
};
|
2018-06-02 18:46:09 -04:00
|
|
|
|
2018-09-18 19:36:43 -04:00
|
|
|
LaunchableEvent = new KEvent(System);
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
|
|
|
|
2018-07-19 19:27:50 -04:00
|
|
|
public long Exit(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
|
|
|
|
2018-07-19 19:27:50 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-21 19:30:10 -04:00
|
|
|
public long LockExit(ServiceCtx Context)
|
2018-02-25 13:58:16 -05:00
|
|
|
{
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
|
|
|
|
2018-07-19 19:27:50 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long UnlockExit(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
|
|
|
|
2018-02-25 13:58:16 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-02 18:46:09 -04:00
|
|
|
public long GetLibraryAppletLaunchableEvent(ServiceCtx Context)
|
|
|
|
{
|
2018-09-18 19:36:43 -04:00
|
|
|
LaunchableEvent.Signal();
|
2018-06-02 18:46:09 -04:00
|
|
|
|
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(LaunchableEvent);
|
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-02 18:46:09 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-21 19:51:17 -05:00
|
|
|
public long SetScreenShotPermission(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-16 20:24:42 -04:00
|
|
|
|
2018-02-21 19:51:17 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-09 19:14:55 -05:00
|
|
|
public long SetOperationModeChangedNotification(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-16 20:24:42 -04:00
|
|
|
|
2018-02-09 19:14:55 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long SetPerformanceModeChangedNotification(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-16 20:24:42 -04:00
|
|
|
|
2018-02-09 19:14:55 -05: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-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-16 20:24:42 -04:00
|
|
|
|
2018-02-09 19:14:55 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-25 13:58:16 -05:00
|
|
|
public long SetRestartMessageEnabled(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-16 20:24:42 -04:00
|
|
|
|
2018-02-25 13:58:16 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-09 19:14:55 -05:00
|
|
|
public long SetOutOfFocusSuspendingEnabled(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
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
|
|
|
|
2018-08-08 02:00:54 -04:00
|
|
|
public long SetScreenShotImageOrientation(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Orientation = Context.RequestData.ReadInt32();
|
2018-08-16 19:47:36 -04:00
|
|
|
|
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-08-08 02:00:54 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-21 19:04:43 -04:00
|
|
|
public long SetHandlesRequestToDisplay(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-21 19:04:43 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
2018-07-19 19:27:50 -04:00
|
|
|
}
|