Ryujinx/Ryujinx.HLE/HOS/Services/Am/IApplicationFunctions.cs

118 lines
3.3 KiB
C#
Raw Normal View History

using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
2018-02-05 00:08:20 +01:00
namespace Ryujinx.HLE.HOS.Services.Am
2018-02-05 00:08:20 +01:00
{
class IApplicationFunctions : IpcService
2018-02-05 00:08:20 +01:00
{
private Dictionary<int, ServiceProcessRequest> _commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public IApplicationFunctions()
{
_commands = new Dictionary<int, ServiceProcessRequest>
{
{ 1, PopLaunchParameter },
{ 20, EnsureSaveData },
{ 21, GetDesiredLanguage },
{ 22, SetTerminateResult },
{ 23, GetDisplayVersion },
{ 40, NotifyRunning },
{ 50, GetPseudoDeviceId },
{ 66, InitializeGamePlayRecording },
{ 67, SetGamePlayRecordingState }
};
}
public long PopLaunchParameter(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
//Only the first 0x18 bytes of the Data seems to be actually used.
MakeObject(context, new IStorage(StorageHelper.MakeLaunchParams()));
2018-02-05 00:08:20 +01:00
return 0;
}
public long EnsureSaveData(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
long uIdLow = context.RequestData.ReadInt64();
long uIdHigh = context.RequestData.ReadInt64();
2018-02-05 00:08:20 +01:00
Logger.PrintStub(LogClass.ServiceAm);
context.ResponseData.Write(0L);
2018-02-05 00:08:20 +01:00
return 0;
}
public long GetDesiredLanguage(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
context.ResponseData.Write(context.Device.System.State.DesiredLanguageCode);
2018-02-05 00:08:20 +01:00
return 0;
}
public long SetTerminateResult(ServiceCtx context)
{
int errorCode = context.RequestData.ReadInt32();
string result = GetFormattedErrorCode(errorCode);
Logger.PrintInfo(LogClass.ServiceAm, $"Result = 0x{errorCode:x8} ({result}).");
return 0;
}
private string GetFormattedErrorCode(int errorCode)
2018-04-24 20:57:39 +02:00
{
int module = (errorCode >> 0) & 0x1ff;
int description = (errorCode >> 9) & 0x1fff;
2018-04-24 20:57:39 +02:00
return $"{(2000 + module):d4}-{description:d4}";
2018-04-24 20:57:39 +02: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;
}
public long NotifyRunning(ServiceCtx context)
{
context.ResponseData.Write(1);
return 0;
}
public long GetPseudoDeviceId(ServiceCtx context)
{
Logger.PrintStub(LogClass.ServiceAm);
context.ResponseData.Write(0L);
context.ResponseData.Write(0L);
return 0;
}
public long InitializeGamePlayRecording(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
Logger.PrintStub(LogClass.ServiceAm);
2018-02-05 00:08:20 +01:00
return 0;
}
2018-02-05 00:08:20 +01:00
public long SetGamePlayRecordingState(ServiceCtx context)
{
int state = context.RequestData.ReadInt32();
Logger.PrintStub(LogClass.ServiceAm);
2018-02-05 00:08:20 +01:00
return 0;
2018-02-05 00:08:20 +01:00
}
}
}