aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2021-06-29 18:57:06 +0200
committerGitHub <noreply@github.com>2021-06-29 18:57:06 +0200
commit8cc872fb60ec1b825655ba8dba06cc978fcd7e66 (patch)
tree03dc92102ed54e537af00a0d97dc91f279f82211 /Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs
parent28618c58d7ee1ae63fc57deca791a64ab38b57af (diff)
aoc/am: Cleanup aoc service and stub am calls (#2414)
* aoc/am: Cleanup aoc service and stub am calls This PR implement aoc call `GetAddOnContentListChangedEventWithProcessId` (Closes #2408) and `CreateContentsServiceManager`. Additionnally, a big cleanup (checked by RE on latest firmware) is made on the whole service. I've added `CountAddOnContent`, `ListAddOnContent` and `GetAddonContentBaseId` for games which require version `1.0.0-6.2.0` too. Am service call `ReportUserIsActive` is stubbed (checked by RE, closes #2413). Since some logic in the service (aoc) which handle the DLCs has been changed, it could be nice to have some testing to be sure there is no regression. * Remove wrong check * Addresses gdkchan feedback * Fix GetAddOnContentLostErrorCode * fix null pid in services * Add missing comment * remove leftover comment
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs285
1 files changed, 285 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs b/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs
new file mode 100644
index 00000000..bdffbbc7
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs
@@ -0,0 +1,285 @@
+using Ryujinx.Common.Logging;
+using Ryujinx.HLE.HOS.Ipc;
+using Ryujinx.HLE.HOS.Kernel.Common;
+using Ryujinx.HLE.HOS.Kernel.Threading;
+using System;
+using System.Collections.Generic;
+
+namespace Ryujinx.HLE.HOS.Services.Ns.Aoc
+{
+ [Service("aoc:u")]
+ class IAddOnContentManager : IpcService
+ {
+ private readonly KEvent _addOnContentListChangedEvent;
+
+ private ulong _addOnContentBaseId;
+
+ public IAddOnContentManager(ServiceCtx context)
+ {
+ _addOnContentListChangedEvent = new KEvent(context.Device.System.KernelContext);
+ }
+
+ [CommandHipc(0)] // 1.0.0-6.2.0
+ // CountAddOnContentByApplicationId(u64 title_id) -> u32
+ public ResultCode CountAddOnContentByApplicationId(ServiceCtx context)
+ {
+ ulong titleId = context.RequestData.ReadUInt64();
+
+ return CountAddOnContentImpl(context, titleId);
+ }
+
+ [CommandHipc(1)] // 1.0.0-6.2.0
+ // ListAddOnContentByApplicationId(u64 title_id, u32 start_index, u32 buffer_size) -> (u32 count, buffer<u32>)
+ public ResultCode ListAddOnContentByApplicationId(ServiceCtx context)
+ {
+ ulong titleId = context.RequestData.ReadUInt64();
+
+ return ListAddContentImpl(context, titleId);
+ }
+
+ [CommandHipc(2)]
+ // CountAddOnContent(pid) -> u32
+ public ResultCode CountAddOnContent(ServiceCtx context)
+ {
+ long pid = context.Request.HandleDesc.PId;
+
+ // NOTE: Service call arp:r GetApplicationLaunchProperty to get TitleId using the PId.
+
+ return CountAddOnContentImpl(context, context.Device.Application.TitleId);
+ }
+
+ [CommandHipc(3)]
+ // ListAddOnContent(u32 start_index, u32 buffer_size, pid) -> (u32 count, buffer<u32>)
+ public ResultCode ListAddOnContent(ServiceCtx context)
+ {
+ long pid = context.Request.HandleDesc.PId;
+
+ // NOTE: Service call arp:r GetApplicationLaunchProperty to get TitleId using the PId.
+
+ return ListAddContentImpl(context, context.Device.Application.TitleId);
+ }
+
+ [CommandHipc(4)] // 1.0.0-6.2.0
+ // GetAddOnContentBaseIdByApplicationId(u64 title_id) -> u64
+ public ResultCode GetAddOnContentBaseIdByApplicationId(ServiceCtx context)
+ {
+ ulong titleId = context.RequestData.ReadUInt64();
+
+ return GetAddOnContentBaseIdImpl(context, titleId);
+ }
+
+ [CommandHipc(5)]
+ // GetAddOnContentBaseId(pid) -> u64
+ public ResultCode GetAddOnContentBaseId(ServiceCtx context)
+ {
+ long pid = context.Request.HandleDesc.PId;
+
+ // NOTE: Service call arp:r GetApplicationLaunchProperty to get TitleId using the PId.
+
+ return GetAddOnContentBaseIdImpl(context, context.Device.Application.TitleId);
+ }
+
+ [CommandHipc(6)] // 1.0.0-6.2.0
+ // PrepareAddOnContentByApplicationId(u64 title_id, u32 index)
+ public ResultCode PrepareAddOnContentByApplicationId(ServiceCtx context)
+ {
+ ulong titleId = context.RequestData.ReadUInt64();
+
+ return PrepareAddOnContentImpl(context, titleId);
+ }
+
+ [CommandHipc(7)]
+ // PrepareAddOnContent(u32 index, pid)
+ public ResultCode PrepareAddOnContent(ServiceCtx context)
+ {
+ long pid = context.Request.HandleDesc.PId;
+
+ // NOTE: Service call arp:r GetApplicationLaunchProperty to get TitleId using the PId.
+
+ return PrepareAddOnContentImpl(context, context.Device.Application.TitleId);
+ }
+
+ [CommandHipc(8)] // 4.0.0+
+ // GetAddOnContentListChangedEvent() -> handle<copy>
+ public ResultCode GetAddOnContentListChangedEvent(ServiceCtx context)
+ {
+ return GetAddOnContentListChangedEventImpl(context);
+ }
+
+ [CommandHipc(9)] // 10.0.0+
+ // GetAddOnContentLostErrorCode() -> u64
+ public ResultCode GetAddOnContentLostErrorCode(ServiceCtx context)
+ {
+ // NOTE: 0x7D0A4 -> 2164-1000
+ context.ResponseData.Write(GetAddOnContentLostErrorCodeImpl(0x7D0A4));
+
+ return ResultCode.Success;
+ }
+
+ [CommandHipc(10)] // 11.0.0+
+ // GetAddOnContentListChangedEventWithProcessId(pid) -> handle<copy>
+ public ResultCode GetAddOnContentListChangedEventWithProcessId(ServiceCtx context)
+ {
+ long pid = context.Request.HandleDesc.PId;
+
+ // NOTE: Service call arp:r GetApplicationLaunchProperty to get TitleId using the PId.
+
+ // TODO: Found where stored value is used.
+ ResultCode resultCode = GetAddOnContentBaseIdFromTitleId(context, context.Device.Application.TitleId);
+
+ if (resultCode != ResultCode.Success)
+ {
+ return resultCode;
+ }
+
+ return GetAddOnContentListChangedEventImpl(context);
+ }
+
+ [CommandHipc(100)] // 7.0.0+
+ // CreateEcPurchasedEventManager() -> object<nn::ec::IPurchaseEventManager>
+ public ResultCode CreateEcPurchasedEventManager(ServiceCtx context)
+ {
+ MakeObject(context, new IPurchaseEventManager(context.Device.System));
+
+ return ResultCode.Success;
+ }
+
+ [CommandHipc(101)] // 9.0.0+
+ // CreatePermanentEcPurchasedEventManager() -> object<nn::ec::IPurchaseEventManager>
+ public ResultCode CreatePermanentEcPurchasedEventManager(ServiceCtx context)
+ {
+ // NOTE: Service call arp:r to get the TitleId, do some extra checks and pass it to returned interface.
+
+ MakeObject(context, new IPurchaseEventManager(context.Device.System));
+
+ return ResultCode.Success;
+ }
+
+ [CommandHipc(110)] // 12.0.0+
+ // CreateContentsServiceManager() -> object<nn::ec::IContentsServiceManager>
+ public ResultCode CreateContentsServiceManager(ServiceCtx context)
+ {
+ MakeObject(context, new IContentsServiceManager());
+
+ return ResultCode.Success;
+ }
+
+ private ResultCode CountAddOnContentImpl(ServiceCtx context, ulong titleId)
+ {
+ // NOTE: Service call sys:set GetQuestFlag and store it internally.
+ // If QuestFlag is true, counts some extra titles.
+
+ ResultCode resultCode = GetAddOnContentBaseIdFromTitleId(context, titleId);
+
+ if (resultCode != ResultCode.Success)
+ {
+ return resultCode;
+ }
+
+ // TODO: This should use _addOnContentBaseId;
+ uint aocCount = (uint)context.Device.System.ContentManager.GetAocCount();
+
+ context.ResponseData.Write(aocCount);
+
+ return ResultCode.Success;
+ }
+
+ private ResultCode ListAddContentImpl(ServiceCtx context, ulong titleId)
+ {
+ // NOTE: Service call sys:set GetQuestFlag and store it internally.
+ // If QuestFlag is true, counts some extra titles.
+
+ uint startIndex = context.RequestData.ReadUInt32();
+ uint bufferSize = context.RequestData.ReadUInt32();
+ ulong bufferPosition = context.Request.ReceiveBuff[0].Position;
+
+ // TODO: This should use _addOnContentBaseId;
+ uint aocCount = (uint)context.Device.System.ContentManager.GetAocCount();
+
+ if (aocCount - startIndex > bufferSize)
+ {
+ return ResultCode.InvalidBufferSize;
+ }
+
+ if (aocCount <= startIndex)
+ {
+ context.ResponseData.Write(0);
+
+ return ResultCode.Success;
+ }
+
+ IList<ulong> aocTitleIds = context.Device.System.ContentManager.GetAocTitleIds();
+
+ GetAddOnContentBaseIdFromTitleId(context, titleId);
+
+ for (int i = 0; i < aocCount; i++)
+ {
+ context.Memory.Write(bufferPosition + (ulong)i * 4, (uint)(aocTitleIds[i + (int)startIndex] - _addOnContentBaseId));
+ }
+
+ context.ResponseData.Write(aocCount);
+
+ return ResultCode.Success;
+ }
+
+ private ResultCode GetAddOnContentBaseIdImpl(ServiceCtx context, ulong titleId)
+ {
+ ResultCode resultCode = GetAddOnContentBaseIdFromTitleId(context, titleId);
+
+ context.ResponseData.Write(_addOnContentBaseId);
+
+ return resultCode;
+ }
+
+ private ResultCode GetAddOnContentBaseIdFromTitleId(ServiceCtx context, ulong titleId)
+ {
+ // NOTE: Service calls arp:r GetApplicationControlProperty to get AddOnContentBaseId using TitleId,
+ // If the call fails, it returns ResultCode.InvalidPid.
+
+ _addOnContentBaseId = context.Device.Application.ControlData.Value.AddOnContentBaseId;
+
+ if (_addOnContentBaseId == 0)
+ {
+ _addOnContentBaseId = titleId + 0x1000;
+ }
+
+ return ResultCode.Success;
+ }
+
+ private ResultCode PrepareAddOnContentImpl(ServiceCtx context, ulong titleId)
+ {
+ uint index = context.RequestData.ReadUInt32();
+
+ ResultCode resultCode = GetAddOnContentBaseIdFromTitleId(context, context.Device.Application.TitleId);
+
+ if (resultCode != ResultCode.Success)
+ {
+ return resultCode;
+ }
+
+ // TODO: Service calls ns:am RegisterContentsExternalKey?, GetOwnedApplicationContentMetaStatus? etc...
+ // Ideally, this should probably initialize the AocData values for the specified index
+
+ Logger.Stub?.PrintStub(LogClass.ServiceNs, new { index });
+
+ return ResultCode.Success;
+ }
+
+ private ResultCode GetAddOnContentListChangedEventImpl(ServiceCtx context)
+ {
+ if (context.Process.HandleTable.GenerateHandle(_addOnContentListChangedEvent.ReadableEvent, out int addOnContentListChangedEventHandle) != KernelResult.Success)
+ {
+ throw new InvalidOperationException("Out of handles!");
+ }
+
+ context.Response.HandleDesc = IpcHandleDesc.MakeCopy(addOnContentListChangedEventHandle);
+
+ return ResultCode.Success;
+ }
+
+ private static ulong GetAddOnContentLostErrorCodeImpl(int errorCode)
+ {
+ return ((ulong)errorCode & 0x1FF | ((((ulong)errorCode >> 9) & 0x1FFF) << 32)) + 2000;
+ }
+ }
+} \ No newline at end of file