2018-10-17 12:15:50 -05:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-03-19 13:58:46 -05:00
|
|
|
class IApplicationFunctions : IpcService
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2019-07-11 20:13:43 -05:00
|
|
|
public IApplicationFunctions() { }
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(1)]
|
|
|
|
// PopLaunchParameter(u32) -> object<nn::am::service::IStorage>
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode PopLaunchParameter(ServiceCtx context)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2019-07-01 21:39:22 -05:00
|
|
|
// Only the first 0x18 bytes of the Data seems to be actually used.
|
2018-12-06 05:16:24 -06:00
|
|
|
MakeObject(context, new IStorage(StorageHelper.MakeLaunchParams()));
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(20)]
|
|
|
|
// EnsureSaveData(nn::account::Uid) -> u64
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode EnsureSaveData(ServiceCtx context)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
long uIdLow = context.RequestData.ReadInt64();
|
|
|
|
long uIdHigh = context.RequestData.ReadInt64();
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
context.ResponseData.Write(0L);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(21)]
|
|
|
|
// GetDesiredLanguage() -> nn::settings::LanguageCode
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode GetDesiredLanguage(ServiceCtx context)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
context.ResponseData.Write(context.Device.System.State.DesiredLanguageCode);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(22)]
|
|
|
|
// SetTerminateResult(u32)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetTerminateResult(ServiceCtx context)
|
2018-02-25 12:58:16 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
int errorCode = context.RequestData.ReadInt32();
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
string result = GetFormattedErrorCode(errorCode);
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
Logger.PrintInfo(LogClass.ServiceAm, $"Result = 0x{errorCode:x8} ({result}).");
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-25 12:58:16 -06:00
|
|
|
}
|
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
private string GetFormattedErrorCode(int errorCode)
|
2018-04-24 13:57:39 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
int module = (errorCode >> 0) & 0x1ff;
|
|
|
|
int description = (errorCode >> 9) & 0x1fff;
|
2018-04-24 13:57:39 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
return $"{(2000 + module):d4}-{description:d4}";
|
2018-04-24 13:57:39 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(23)]
|
|
|
|
// GetDisplayVersion() -> nn::oe::DisplayVersion
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode GetDisplayVersion(ServiceCtx context)
|
2018-04-21 23:21:49 -05:00
|
|
|
{
|
2019-07-01 21:39:22 -05:00
|
|
|
// FIXME: Need to check correct version on a switch.
|
2018-12-06 05:16:24 -06:00
|
|
|
context.ResponseData.Write(1L);
|
|
|
|
context.ResponseData.Write(0L);
|
2018-04-21 23:21:49 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-04-21 23:21:49 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(40)]
|
|
|
|
// NotifyRunning() -> b8
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode NotifyRunning(ServiceCtx context)
|
2018-02-06 17:28:32 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
context.ResponseData.Write(1);
|
2018-02-06 17:28:32 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-06 17:28:32 -06:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(50)] // 2.0.0+
|
|
|
|
// GetPseudoDeviceId() -> nn::util::Uuid
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode GetPseudoDeviceId(ServiceCtx context)
|
2018-05-25 16:33:09 -05:00
|
|
|
{
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-10 19:46:42 -05:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
context.ResponseData.Write(0L);
|
|
|
|
context.ResponseData.Write(0L);
|
2018-05-25 16:33:09 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-05-25 16:33:09 -05:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(66)] // 3.0.0+
|
|
|
|
// InitializeGamePlayRecording(u64, handle<copy>)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode InitializeGamePlayRecording(ServiceCtx context)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-06-02 17:46:09 -05:00
|
|
|
}
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(67)] // 3.0.0+
|
|
|
|
// SetGamePlayRecordingState(u32)
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode SetGamePlayRecordingState(ServiceCtx context)
|
2018-06-02 17:46:09 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
int state = context.RequestData.ReadInt32();
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2019-01-10 18:11:46 -06:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
}
|
2019-07-11 20:13:43 -05:00
|
|
|
}
|