2020-01-05 11:49:44 +00:00
|
|
|
using LibHac;
|
|
|
|
using LibHac.Account;
|
|
|
|
using LibHac.Common;
|
2020-02-02 03:24:17 +00:00
|
|
|
using LibHac.Fs;
|
2020-01-05 11:49:44 +00:00
|
|
|
using LibHac.Ncm;
|
|
|
|
using LibHac.Ns;
|
|
|
|
using Ryujinx.Common;
|
2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-09-20 04:42:32 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Am.AppletAE.Storage;
|
2019-11-15 00:25:22 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Sdb.Pdm.QueryService;
|
2019-09-20 04:42:32 +00:00
|
|
|
using System;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2020-01-05 11:49:44 +00:00
|
|
|
using static LibHac.Fs.ApplicationSaveDataManagement;
|
2020-02-02 03:24:17 +00:00
|
|
|
using AccountUid = Ryujinx.HLE.HOS.Services.Account.Acc.UserId;
|
2020-01-05 11:49:44 +00:00
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletOE.ApplicationProxyService.ApplicationProxy
|
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
|
|
|
{
|
2019-09-20 04:42:32 +00:00
|
|
|
private KEvent _gpuErrorDetectedSystemEvent;
|
|
|
|
|
|
|
|
public IApplicationFunctions(Horizon system)
|
|
|
|
{
|
|
|
|
_gpuErrorDetectedSystemEvent = new KEvent(system);
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1)]
|
|
|
|
// PopLaunchParameter(u32) -> object<nn::am::service::IStorage>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode PopLaunchParameter(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-07-02 02:39:22 +00:00
|
|
|
// Only the first 0x18 bytes of the Data seems to be actually used.
|
2020-02-02 03:24:17 +00:00
|
|
|
MakeObject(context, new AppletAE.IStorage(StorageHelper.MakeLaunchParams(context.Device.System.State.Account.LastOpenedUser)));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(20)]
|
|
|
|
// EnsureSaveData(nn::account::Uid) -> u64
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode EnsureSaveData(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2020-02-02 03:24:17 +00:00
|
|
|
Uid userId = context.RequestData.ReadStruct<AccountUid>().ToLibHacUid();
|
2020-01-05 11:49:44 +00:00
|
|
|
TitleId titleId = new TitleId(context.Process.TitleId);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2020-01-05 11:49:44 +00:00
|
|
|
BlitStruct<ApplicationControlProperty> controlHolder = context.Device.System.ControlData;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2020-01-05 11:49:44 +00:00
|
|
|
ref ApplicationControlProperty control = ref controlHolder.Value;
|
2019-11-15 00:25:22 +00:00
|
|
|
|
2020-01-05 11:49:44 +00:00
|
|
|
if (Util.IsEmpty(controlHolder.ByteSpan))
|
|
|
|
{
|
|
|
|
// If the current application doesn't have a loaded control property, create a dummy one
|
|
|
|
// and set the savedata sizes so a user savedata will be created.
|
|
|
|
control = ref new BlitStruct<ApplicationControlProperty>(1).Value;
|
|
|
|
|
|
|
|
// The set sizes don't actually matter as long as they're non-zero because we use directory savedata.
|
|
|
|
control.UserAccountSaveDataSize = 0x4000;
|
|
|
|
control.UserAccountSaveDataJournalSize = 0x4000;
|
|
|
|
|
|
|
|
Logger.PrintWarning(LogClass.ServiceAm,
|
|
|
|
"No control file was found for this game. Using a dummy one instead. This may cause inaccuracies in some games.");
|
|
|
|
}
|
|
|
|
|
2020-01-21 22:23:11 +00:00
|
|
|
Result result = EnsureApplicationSaveData(context.Device.FileSystem.FsClient, out long requiredSize, titleId,
|
2020-01-05 11:49:44 +00:00
|
|
|
ref context.Device.System.ControlData.Value, ref userId);
|
|
|
|
|
|
|
|
context.ResponseData.Write(requiredSize);
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(21)]
|
|
|
|
// GetDesiredLanguage() -> nn::settings::LanguageCode
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode 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
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(22)]
|
|
|
|
// SetTerminateResult(u32)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetTerminateResult(ServiceCtx context)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2019-11-15 00:25:22 +00:00
|
|
|
int errorCode = context.RequestData.ReadInt32();
|
|
|
|
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
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-25 18:58:16 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(23)]
|
|
|
|
// GetDisplayVersion() -> nn::oe::DisplayVersion
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetDisplayVersion(ServiceCtx context)
|
2018-04-22 04:21:49 +00:00
|
|
|
{
|
2019-07-02 02:39:22 +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
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-04-22 04:21:49 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
// GetSaveDataSize(u8, nn::account::Uid) -> (u64, u64)
|
|
|
|
[Command(26)] // 3.0.0+
|
|
|
|
public ResultCode GetSaveDataSize(ServiceCtx context)
|
|
|
|
{
|
|
|
|
SaveDataType saveDataType = (SaveDataType)context.RequestData.ReadByte();
|
|
|
|
context.RequestData.BaseStream.Seek(7, System.IO.SeekOrigin.Current);
|
|
|
|
|
|
|
|
Uid userId = context.RequestData.ReadStruct<AccountUid>().ToLibHacUid();
|
|
|
|
|
|
|
|
// TODO: We return a size of 2GB as we use a directory based save system. This should be enough for most of the games.
|
|
|
|
context.ResponseData.Write(2000000000u);
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm, new { saveDataType, userId });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(40)]
|
|
|
|
// NotifyRunning() -> b8
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode 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
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-06 23:28:32 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(50)] // 2.0.0+
|
|
|
|
// GetPseudoDeviceId() -> nn::util::Uuid
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetPseudoDeviceId(ServiceCtx context)
|
2018-05-25 21:33:09 +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
|
|
|
|
2019-11-15 00:25:22 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-05-25 21:33:09 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(66)] // 3.0.0+
|
|
|
|
// InitializeGamePlayRecording(u64, handle<copy>)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode InitializeGamePlayRecording(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-02 22:46:09 +00:00
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(67)] // 3.0.0+
|
|
|
|
// SetGamePlayRecordingState(u32)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode 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
|
|
|
|
2019-11-15 00:25:22 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAm, new { state });
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2019-09-20 04:42:32 +00:00
|
|
|
|
2019-11-15 00:25:22 +00:00
|
|
|
[Command(110)] // 5.0.0+
|
|
|
|
// QueryApplicationPlayStatistics(buffer<bytes, 5> title_id_list) -> (buffer<bytes, 6> entries, s32 entries_count)
|
|
|
|
public ResultCode QueryApplicationPlayStatistics(ServiceCtx context)
|
|
|
|
{
|
|
|
|
// TODO: Call pdm:qry cmd 13 when IPC call between services will be implemented.
|
|
|
|
return (ResultCode)QueryPlayStatisticsManager.GetPlayStatistics(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Command(111)] // 6.0.0+
|
|
|
|
// QueryApplicationPlayStatisticsByUid(nn::account::Uid, buffer<bytes, 5> title_id_list) -> (buffer<bytes, 6> entries, s32 entries_count)
|
|
|
|
public ResultCode QueryApplicationPlayStatisticsByUid(ServiceCtx context)
|
|
|
|
{
|
|
|
|
// TODO: Call pdm:qry cmd 16 when IPC call between services will be implemented.
|
|
|
|
return (ResultCode)QueryPlayStatisticsManager.GetPlayStatistics(context, true);
|
|
|
|
}
|
|
|
|
|
2019-09-20 04:42:32 +00:00
|
|
|
[Command(130)] // 8.0.0+
|
|
|
|
// GetGpuErrorDetectedSystemEvent() -> handle<copy>
|
|
|
|
public ResultCode GetGpuErrorDetectedSystemEvent(ServiceCtx context)
|
|
|
|
{
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_gpuErrorDetectedSystemEvent.ReadableEvent, out int gpuErrorDetectedSystemEventHandle) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(gpuErrorDetectedSystemEventHandle);
|
|
|
|
|
|
|
|
// NOTE: This is used by "sdk" NSO during applet-application initialization.
|
|
|
|
// A seperate thread is setup where event-waiting is handled.
|
|
|
|
// When the Event is signaled, official sw will assert.
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|