2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-06-11 02:46:42 +02:00
|
|
|
using Ryujinx.HLE.Logging;
|
2018-02-10 01:14:55 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class ICommonStateGetter : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-06-11 01:53:28 +02:00
|
|
|
private KEvent DisplayResolutionChangeEvent;
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public ICommonStateGetter()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-08-11 15:31:34 +02:00
|
|
|
{ 0, GetEventHandle },
|
|
|
|
{ 1, ReceiveMessage },
|
|
|
|
{ 5, GetOperationMode },
|
|
|
|
{ 6, GetPerformanceMode },
|
|
|
|
{ 8, GetBootMode },
|
|
|
|
{ 9, GetCurrentFocusState },
|
|
|
|
{ 60, GetDefaultDisplayResolution },
|
|
|
|
{ 61, GetDefaultDisplayResolutionChangeEvent }
|
2018-02-10 01:14:55 +01:00
|
|
|
};
|
2018-06-11 01:53:28 +02:00
|
|
|
|
|
|
|
DisplayResolutionChangeEvent = new KEvent();
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public long GetEventHandle(ServiceCtx Context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
KEvent Event = Context.Process.AppletState.MessageEvent;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(Event);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long ReceiveMessage(ServiceCtx Context)
|
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
if (!Context.Process.AppletState.TryDequeueMessage(out MessageInfo Message))
|
|
|
|
{
|
|
|
|
return MakeError(ErrorModule.Am, AmErr.NoMessages);
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
Context.ResponseData.Write((int)Message);
|
|
|
|
|
|
|
|
return 0;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public long GetOperationMode(ServiceCtx Context)
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
OperationMode Mode = Context.Device.System.State.DockedMode
|
2018-08-15 00:02:42 +02:00
|
|
|
? OperationMode.Docked
|
|
|
|
: OperationMode.Handheld;
|
2018-08-11 14:24:55 +02:00
|
|
|
|
2018-08-11 14:12:28 +02:00
|
|
|
Context.ResponseData.Write((byte)Mode);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetPerformanceMode(ServiceCtx Context)
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
Apm.PerformanceMode Mode = Context.Device.System.State.DockedMode
|
2018-08-15 00:02:42 +02:00
|
|
|
? Apm.PerformanceMode.Docked
|
|
|
|
: Apm.PerformanceMode.Handheld;
|
2018-08-11 14:24:55 +02:00
|
|
|
|
2018-08-11 15:31:34 +02:00
|
|
|
Context.ResponseData.Write((int)Mode);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-22 01:04:43 +02:00
|
|
|
public long GetBootMode(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write((byte)0); //Unknown value.
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-22 01:04:43 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public long GetCurrentFocusState(ServiceCtx Context)
|
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
Context.ResponseData.Write((byte)Context.Process.AppletState.FocusState);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-06-11 01:53:28 +02:00
|
|
|
|
|
|
|
public long GetDefaultDisplayResolution(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(1280);
|
|
|
|
Context.ResponseData.Write(720);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetDefaultDisplayResolutionChangeEvent(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(DisplayResolutionChangeEvent);
|
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-11 01:53:28 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2018-08-11 14:12:28 +02:00
|
|
|
}
|