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