|
|
@@ -1,3 +1,5 @@
|
|
|
+using Ryujinx.HLE.HOS.Services.Glue;
|
|
|
+
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bcat
|
|
|
{
|
|
|
[Service("bcat:a")]
|
|
|
@@ -12,9 +14,16 @@ namespace Ryujinx.HLE.HOS.Services.Bcat
|
|
|
// CreateBcatService(u64, pid) -> object<nn::bcat::detail::ipc::IBcatService>
|
|
|
public ResultCode CreateBcatService(ServiceCtx context)
|
|
|
{
|
|
|
- long id = context.RequestData.ReadInt64();
|
|
|
+ // TODO: Call arp:r GetApplicationLaunchProperty with the pid to get the TitleId.
|
|
|
+ // Add an instance of nn::bcat::detail::service::core::PassphraseManager.
|
|
|
+ // Add an instance of nn::bcat::detail::service::ServiceMemoryManager.
|
|
|
+ // Add an instance of nn::bcat::detail::service::core::TaskManager who load "bcat-sys:/" system save data and open "dc/task.bin".
|
|
|
+ // If the file don't exist, create a new one (size of 0x800) and write 2 empty struct with a size of 0x400.
|
|
|
+
|
|
|
+ MakeObject(context, new IBcatService(ApplicationLaunchProperty.GetByPid(context)));
|
|
|
|
|
|
- MakeObject(context, new IBcatService());
|
|
|
+ // NOTE: If the IBcatService is null this error is returned, Doesn't occur in our case.
|
|
|
+ // return ResultCode.NullObject;
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
}
|
|
|
@@ -23,9 +32,16 @@ namespace Ryujinx.HLE.HOS.Services.Bcat
|
|
|
// CreateDeliveryCacheStorageService(u64, pid) -> object<nn::bcat::detail::ipc::IDeliveryCacheStorageService>
|
|
|
public ResultCode CreateDeliveryCacheStorageService(ServiceCtx context)
|
|
|
{
|
|
|
- long id = context.RequestData.ReadInt64();
|
|
|
+ // TODO: Call arp:r GetApplicationLaunchProperty with the pid to get the TitleId.
|
|
|
+ // Add an instance of nn::bcat::detail::service::core::ApplicationStorageManager who load "bcat-dc-X:/" system save data,
|
|
|
+ // return ResultCode.NullSaveData if failed.
|
|
|
+ // Where X depend of the ApplicationLaunchProperty stored in an array (range 0-3).
|
|
|
+ // Add an instance of nn::bcat::detail::service::ServiceMemoryManager.
|
|
|
+
|
|
|
+ MakeObject(context, new IDeliveryCacheStorageService(context, ApplicationLaunchProperty.GetByPid(context)));
|
|
|
|
|
|
- MakeObject(context, new IDeliveryCacheStorageService());
|
|
|
+ // NOTE: If the IDeliveryCacheStorageService is null this error is returned, Doesn't occur in our case.
|
|
|
+ // return ResultCode.NullObject;
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
}
|