2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.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-12-06 11:16:24 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
|
|
|
public IApplicationFunctions()
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
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
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +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-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new IStorage(StorageHelper.MakeLaunchParams()));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long EnsureSaveData(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long uIdLow = context.RequestData.ReadInt64();
|
|
|
|
long uIdHigh = context.RequestData.ReadInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0L);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetDesiredLanguage(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(context.Device.System.State.DesiredLanguageCode);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long SetTerminateResult(ServiceCtx context)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int errorCode = context.RequestData.ReadInt32();
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
string result = GetFormattedErrorCode(errorCode);
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Logger.PrintInfo(LogClass.ServiceAm, $"Result = 0x{errorCode:x8} ({result}).");
|
2018-02-25 18:58:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private string GetFormattedErrorCode(int errorCode)
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int module = (errorCode >> 0) & 0x1ff;
|
|
|
|
int description = (errorCode >> 9) & 0x1fff;
|
2018-04-24 18:57:39 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
return $"{(2000 + module):d4}-{description:d4}";
|
2018-04-24 18:57:39 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetDisplayVersion(ServiceCtx context)
|
2018-04-22 04:21:49 +00:00
|
|
|
{
|
|
|
|
//FIXME: Need to check correct version on a switch.
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(1L);
|
|
|
|
context.ResponseData.Write(0L);
|
2018-04-22 04:21:49 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long NotifyRunning(ServiceCtx context)
|
2018-02-06 23:28:32 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(1);
|
2018-02-06 23:28:32 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetPseudoDeviceId(ServiceCtx context)
|
2018-05-25 21:33:09 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-11 00:46:42 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0L);
|
|
|
|
context.ResponseData.Write(0L);
|
2018-05-25 21:33:09 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long InitializeGamePlayRecording(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.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-12-06 11:16:24 +00:00
|
|
|
public long SetGamePlayRecordingState(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int state = context.RequestData.ReadInt32();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.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
|
|
|
}
|