2018-06-10 20:46:42 -04:00
|
|
|
using Ryujinx.HLE.Logging;
|
|
|
|
using Ryujinx.HLE.OsHle.Handles;
|
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-09 19:14:55 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-10 20:46:42 -04:00
|
|
|
using static Ryujinx.HLE.OsHle.ErrorCode;
|
2018-03-19 14:58:46 -04:00
|
|
|
|
2018-06-10 20:46:42 -04:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Am
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2018-03-19 14:58:46 -04:00
|
|
|
class ICommonStateGetter : 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-10 19:53:28 -04:00
|
|
|
private KEvent DisplayResolutionChangeEvent;
|
|
|
|
|
2018-02-09 19:14:55 -05:00
|
|
|
public ICommonStateGetter()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-08-11 09:31:34 -04:00
|
|
|
{ 0, GetEventHandle },
|
|
|
|
{ 1, ReceiveMessage },
|
|
|
|
{ 5, GetOperationMode },
|
|
|
|
{ 6, GetPerformanceMode },
|
|
|
|
{ 8, GetBootMode },
|
|
|
|
{ 9, GetCurrentFocusState },
|
|
|
|
{ 60, GetDefaultDisplayResolution },
|
|
|
|
{ 61, GetDefaultDisplayResolutionChangeEvent }
|
2018-02-09 19:14:55 -05:00
|
|
|
};
|
2018-06-10 19:53:28 -04:00
|
|
|
|
|
|
|
DisplayResolutionChangeEvent = new KEvent();
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
public long GetEventHandle(ServiceCtx Context)
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2018-03-19 14:58:46 -04:00
|
|
|
KEvent Event = Context.Process.AppletState.MessageEvent;
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(Event);
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
2018-02-09 19:14:55 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long ReceiveMessage(ServiceCtx Context)
|
|
|
|
{
|
2018-03-19 14:58:46 -04:00
|
|
|
if (!Context.Process.AppletState.TryDequeueMessage(out MessageInfo Message))
|
|
|
|
{
|
|
|
|
return MakeError(ErrorModule.Am, AmErr.NoMessages);
|
|
|
|
}
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
Context.ResponseData.Write((int)Message);
|
|
|
|
|
|
|
|
return 0;
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public long GetOperationMode(ServiceCtx Context)
|
|
|
|
{
|
2018-08-14 18:02:42 -04:00
|
|
|
OperationMode Mode = Context.Ns.Os.SystemState.DockedMode
|
|
|
|
? OperationMode.Docked
|
|
|
|
: OperationMode.Handheld;
|
2018-08-11 08:24:55 -04:00
|
|
|
|
2018-08-11 08:12:28 -04:00
|
|
|
Context.ResponseData.Write((byte)Mode);
|
2018-02-09 19:14:55 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetPerformanceMode(ServiceCtx Context)
|
|
|
|
{
|
2018-08-14 18:02:42 -04:00
|
|
|
Apm.PerformanceMode Mode = Context.Ns.Os.SystemState.DockedMode
|
|
|
|
? Apm.PerformanceMode.Docked
|
|
|
|
: Apm.PerformanceMode.Handheld;
|
2018-08-11 08:24:55 -04:00
|
|
|
|
2018-08-11 09:31:34 -04:00
|
|
|
Context.ResponseData.Write((int)Mode);
|
2018-02-09 19:14:55 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-21 19:04:43 -04:00
|
|
|
public long GetBootMode(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write((byte)0); //Unknown value.
|
|
|
|
|
2018-04-24 14:57:39 -04:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-21 19:04:43 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-09 19:14:55 -05:00
|
|
|
public long GetCurrentFocusState(ServiceCtx Context)
|
|
|
|
{
|
2018-03-19 14:58:46 -04:00
|
|
|
Context.ResponseData.Write((byte)Context.Process.AppletState.FocusState);
|
2018-02-09 19:14:55 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-06-10 19:53:28 -04: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);
|
|
|
|
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
2018-08-11 08:12:28 -04:00
|
|
|
}
|