2018-04-24 14:57:39 -04:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-03-19 14:58:46 -04:00
|
|
|
using Ryujinx.Core.OsHle.Handles;
|
2018-02-20 15:09:23 -05:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
2018-02-09 19:14:55 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
using static Ryujinx.Core.OsHle.ErrorCode;
|
|
|
|
|
2018-03-20 16:00:00 -04:00
|
|
|
namespace Ryujinx.Core.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
|
|
|
|
|
|
|
public ICommonStateGetter()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 0, GetEventHandle },
|
|
|
|
{ 1, ReceiveMessage },
|
|
|
|
{ 5, GetOperationMode },
|
|
|
|
{ 6, GetPerformanceMode },
|
2018-04-21 19:04:43 -04:00
|
|
|
{ 8, GetBootMode },
|
2018-03-19 14:58:46 -04:00
|
|
|
{ 9, GetCurrentFocusState }
|
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)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write((byte)OperationMode.Handheld);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetPerformanceMode(ServiceCtx Context)
|
|
|
|
{
|
2018-04-04 18:16:59 -04:00
|
|
|
Context.ResponseData.Write((byte)Apm.PerformanceMode.Handheld);
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|