From 8cc872fb60ec1b825655ba8dba06cc978fcd7e66 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Tue, 29 Jun 2021 18:57:06 +0200 Subject: 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 --- .../HOS/Services/Pctl/IParentalControlServiceFactory.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs') diff --git a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs b/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs index 785d2280..a84e13b5 100644 --- a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs +++ b/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs @@ -19,8 +19,9 @@ namespace Ryujinx.HLE.HOS.Services.Pctl // CreateService(u64, pid) -> object public ResultCode CreateService(ServiceCtx context) { - // TODO: Should pass the pid. - MakeObject(context, new IParentalControlService(context, true, _permissionFlag)); + long pid = context.Request.HandleDesc.PId; + + MakeObject(context, new IParentalControlService(context, pid, true, _permissionFlag)); return ResultCode.Success; } @@ -29,8 +30,9 @@ namespace Ryujinx.HLE.HOS.Services.Pctl // CreateServiceWithoutInitialize(u64, pid) -> object public ResultCode CreateServiceWithoutInitialize(ServiceCtx context) { - // TODO: Should pass the pid. - MakeObject(context, new IParentalControlService(context, false, _permissionFlag)); + long pid = context.Request.HandleDesc.PId; + + MakeObject(context, new IParentalControlService(context, pid, false, _permissionFlag)); return ResultCode.Success; } -- cgit v1.2.3