2020-07-27 01:04:08 +02: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 18:57:06 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns.Aoc
|
2020-06-20 19:38:14 +02:00
|
|
|
{
|
|
|
|
class IPurchaseEventManager : IpcService
|
|
|
|
{
|
2020-07-27 01:04:08 +02:00
|
|
|
private readonly KEvent _purchasedEvent;
|
|
|
|
|
|
|
|
public IPurchaseEventManager(Horizon system)
|
|
|
|
{
|
|
|
|
_purchasedEvent = new KEvent(system.KernelContext);
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2020-07-27 01:04:08 +02:00
|
|
|
// SetDefaultDeliveryTarget(pid, buffer<bytes, 5> unknown)
|
|
|
|
public ResultCode SetDefaultDeliveryTarget(ServiceCtx context)
|
|
|
|
{
|
2021-06-29 18:57:06 +02:00
|
|
|
ulong inBufferPosition = context.Request.SendBuff[0].Position;
|
|
|
|
ulong inBufferSize = context.Request.SendBuff[0].Size;
|
2020-07-27 01:04:08 +02:00
|
|
|
byte[] buffer = new byte[inBufferSize];
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
context.Memory.Read(inBufferPosition, buffer);
|
2020-07-27 01:04:08 +02:00
|
|
|
|
|
|
|
// NOTE: Service use the pid to call arp:r GetApplicationLaunchProperty and store it in internal field.
|
|
|
|
// 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 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNs);
|
2020-07-27 01:04:08 +02:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(2)]
|
2020-07-27 01:04:08 +02:00
|
|
|
// GetPurchasedEventReadableHandle() -> handle<copy, event>
|
|
|
|
public ResultCode GetPurchasedEventReadableHandle(ServiceCtx context)
|
|
|
|
{
|
2021-06-29 18:57:06 +02:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_purchasedEvent.ReadableEvent, out int purchasedEventReadableHandle) != KernelResult.Success)
|
2020-07-27 01:04:08 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
|
2021-06-29 18:57:06 +02:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(purchasedEventReadableHandle);
|
2020-07-27 01:04:08 +02:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2020-06-20 19:38:14 +02:00
|
|
|
}
|
|
|
|
}
|