2020-04-28 03:44:29 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
|
|
|
|
{
|
|
|
|
|
class IReadOnlyApplicationControlDataInterface : IpcService
|
|
|
|
|
{
|
|
|
|
|
public IReadOnlyApplicationControlDataInterface(ServiceCtx context) { }
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(0)]
|
2020-04-28 03:44:29 +02:00
|
|
|
|
// GetApplicationControlData(u8, u64) -> (unknown<4>, buffer<unknown, 6>)
|
|
|
|
|
public ResultCode GetApplicationControlData(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
byte source = (byte)context.RequestData.ReadInt64();
|
|
|
|
|
ulong titleId = context.RequestData.ReadUInt64();
|
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
|
ulong position = context.Request.ReceiveBuff[0].Position;
|
2020-04-28 03:44:29 +02:00
|
|
|
|
|
2020-05-15 08:16:46 +02:00
|
|
|
|
byte[] nacpData = context.Device.Application.ControlData.ByteSpan.ToArray();
|
2020-04-28 03:44:29 +02:00
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
|
context.Memory.Write(position, nacpData);
|
2020-04-28 03:44:29 +02:00
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|