2020-07-27 00:04:08 +01:00
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
|
|
using System;
|
|
|
|
|
2021-06-29 17:57:06 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns.Aoc
|
2020-06-20 18:38:14 +01:00
|
|
|
{
|
|
|
|
class IPurchaseEventManager : IpcService
|
|
|
|
{
|
2020-07-27 00:04:08 +01:00
|
|
|
private readonly KEvent _purchasedEvent;
|
|
|
|
|
|
|
|
public IPurchaseEventManager(Horizon system)
|
|
|
|
{
|
|
|
|
_purchasedEvent = new KEvent(system.KernelContext);
|
|
|
|
}
|
|
|
|
|
2021-04-13 23:01:24 +01:00
|
|
|
[CommandHipc(0)]
|
2020-07-27 00:04:08 +01:00
|
|
|
// SetDefaultDeliveryTarget(pid, buffer<bytes, 5> unknown)
|
|
|
|
public ResultCode SetDefaultDeliveryTarget(ServiceCtx context)
|
|
|
|
{
|
2021-06-29 17:57:06 +01:00
|
|
|
ulong inBufferPosition = context.Request.SendBuff[0].Position;
|
|
|
|
ulong inBufferSize = context.Request.SendBuff[0].Size;
|
2020-07-27 00:04:08 +01:00
|
|
|
byte[] buffer = new byte[inBufferSize];
|
|
|
|
|
2021-04-24 11:16:01 +01:00
|
|
|
context.Memory.Read(inBufferPosition, buffer);
|
2020-07-27 00:04:08 +01:00
|
|
|
|
2021-11-24 21:11:50 +00:00
|
|
|
// NOTE: Service uses the pid to call arp:r GetApplicationLaunchProperty and store it in internal field.
|
2020-07-27 00:04:08 +01:00
|
|
|
// Then it seems to use the buffer content and compare it with a stored linked instrusive list.
|
|
|
|
// Since we don't support purchase from eShop, we can stub it.
|
|
|
|
|
2020-08-04 00:32:53 +01:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNs);
|
2020-07-27 00:04:08 +01:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-13 23:01:24 +01:00
|
|
|
[CommandHipc(2)]
|
2020-07-27 00:04:08 +01:00
|
|
|
// GetPurchasedEventReadableHandle() -> handle<copy, event>
|
|
|
|
public ResultCode GetPurchasedEventReadableHandle(ServiceCtx context)
|
|
|
|
{
|
2021-06-29 17:57:06 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_purchasedEvent.ReadableEvent, out int purchasedEventReadableHandle) != KernelResult.Success)
|
2020-07-27 00:04:08 +01:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
|
2021-06-29 17:57:06 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(purchasedEventReadableHandle);
|
2020-07-27 00:04:08 +01:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2021-11-24 21:11:50 +00:00
|
|
|
|
|
|
|
[CommandHipc(3)]
|
|
|
|
// PopPurchasedProductInfo(nn::ec::detail::PurchasedProductInfo)
|
|
|
|
public ResultCode PopPurchasedProductInfo(ServiceCtx context)
|
|
|
|
{
|
|
|
|
byte[] purchasedProductInfo = new byte[0x80];
|
|
|
|
|
|
|
|
context.ResponseData.Write(purchasedProductInfo);
|
|
|
|
|
|
|
|
// NOTE: Service finds info using internal array then convert it into nn::ec::detail::PurchasedProductInfo.
|
|
|
|
// Returns 0x320A4 if the internal array size is null.
|
|
|
|
// Since we don't support purchase from eShop, we can stub it.
|
|
|
|
|
|
|
|
Logger.Debug?.PrintStub(LogClass.ServiceNs); // NOTE: Uses Debug to avoid spamming.
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2020-06-20 18:38:14 +01:00
|
|
|
}
|
|
|
|
}
|