2018-06-11 00:46:42 +00:00
|
|
|
using Ryujinx.HLE.Logging;
|
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-06-11 00:46:42 +00:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Am
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IApplicationFunctions : IpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
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
|
|
|
|
|
|
|
public IApplicationFunctions()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-06-02 22:46:09 +00:00
|
|
|
{ 1, PopLaunchParameter },
|
|
|
|
{ 20, EnsureSaveData },
|
|
|
|
{ 21, GetDesiredLanguage },
|
|
|
|
{ 22, SetTerminateResult },
|
|
|
|
{ 23, GetDisplayVersion },
|
|
|
|
{ 40, NotifyRunning },
|
|
|
|
{ 50, GetPseudoDeviceId },
|
|
|
|
{ 66, InitializeGamePlayRecording },
|
|
|
|
{ 67, SetGamePlayRecordingState }
|
2018-02-10 00:14:55 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public long PopLaunchParameter(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
//Only the first 0x18 bytes of the Data seems to be actually used.
|
2018-06-02 22:46:09 +00:00
|
|
|
MakeObject(Context, new IStorage(StorageHelper.MakeLaunchParams()));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public long EnsureSaveData(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
long UIdLow = Context.RequestData.ReadInt64();
|
|
|
|
long UIdHigh = Context.RequestData.ReadInt64();
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-04 23:08:20 +00:00
|
|
|
Context.ResponseData.Write(0L);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public long GetDesiredLanguage(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-04-29 23:18:46 +00:00
|
|
|
Context.ResponseData.Write(Context.Ns.Os.SystemState.DesiredLanguageCode);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-25 18:58:16 +00:00
|
|
|
public long SetTerminateResult(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int ErrorCode = Context.RequestData.ReadInt32();
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
string Result = GetFormattedErrorCode(ErrorCode);
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
Context.Ns.Log.PrintInfo(LogClass.ServiceAm, $"Result = 0x{ErrorCode:x8} ({Result}).");
|
2018-02-25 18:58:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
private string GetFormattedErrorCode(int ErrorCode)
|
|
|
|
{
|
|
|
|
int Module = (ErrorCode >> 0) & 0x1ff;
|
|
|
|
int Description = (ErrorCode >> 9) & 0x1fff;
|
|
|
|
|
|
|
|
return $"{(2000 + Module):d4}-{Description:d4}";
|
|
|
|
}
|
|
|
|
|
2018-04-22 04:21:49 +00:00
|
|
|
public long GetDisplayVersion(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
//FIXME: Need to check correct version on a switch.
|
|
|
|
Context.ResponseData.Write(1L);
|
|
|
|
Context.ResponseData.Write(0L);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public long NotifyRunning(ServiceCtx Context)
|
2018-02-06 23:28:32 +00:00
|
|
|
{
|
|
|
|
Context.ResponseData.Write(1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-25 21:33:09 +00:00
|
|
|
public long GetPseudoDeviceId(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-11 00:46:42 +00:00
|
|
|
|
2018-05-25 21:33:09 +00:00
|
|
|
Context.ResponseData.Write(0L);
|
|
|
|
Context.ResponseData.Write(0L);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-02 22:46:09 +00:00
|
|
|
public long InitializeGamePlayRecording(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-06-02 22:46:09 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-06-02 22:46:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-06-02 22:46:09 +00:00
|
|
|
public long SetGamePlayRecordingState(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int State = Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-06-02 22:46:09 +00:00
|
|
|
return 0;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-25 21:33:09 +00:00
|
|
|
}
|