2019-09-18 17:45:11 -07:00
|
|
|
using Ryujinx.HLE.HOS.Services.Pctl.ParentalControlServiceFactory;
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Pctl
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2020-05-14 18:14:38 -07:00
|
|
|
[Service("pctl", 0x303)]
|
|
|
|
[Service("pctl:a", 0x83BE)]
|
|
|
|
[Service("pctl:r", 0x8040)]
|
|
|
|
[Service("pctl:s", 0x838E)]
|
2018-04-05 21:01:52 -07:00
|
|
|
class IParentalControlServiceFactory : IpcService
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2020-05-14 18:14:38 -07:00
|
|
|
private int _permissionFlag;
|
|
|
|
|
|
|
|
public IParentalControlServiceFactory(ServiceCtx context, int permissionFlag)
|
|
|
|
{
|
|
|
|
_permissionFlag = permissionFlag;
|
|
|
|
}
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2021-04-13 15:01:24 -07:00
|
|
|
[CommandHipc(0)]
|
2019-07-11 18:13:43 -07:00
|
|
|
// CreateService(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
2019-07-14 12:04:38 -07:00
|
|
|
public ResultCode CreateService(ServiceCtx context)
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2021-06-29 09:57:06 -07:00
|
|
|
long pid = context.Request.HandleDesc.PId;
|
|
|
|
|
|
|
|
MakeObject(context, new IParentalControlService(context, pid, true, _permissionFlag));
|
2018-02-24 20:34:16 -08:00
|
|
|
|
2019-07-14 12:04:38 -07:00
|
|
|
return ResultCode.Success;
|
2018-02-09 16:14:55 -08:00
|
|
|
}
|
2018-06-12 11:28:45 -07:00
|
|
|
|
2021-04-13 15:01:24 -07:00
|
|
|
[CommandHipc(1)] // 4.0.0+
|
2019-07-11 18:13:43 -07:00
|
|
|
// CreateServiceWithoutInitialize(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
2019-07-14 12:04:38 -07:00
|
|
|
public ResultCode CreateServiceWithoutInitialize(ServiceCtx context)
|
2018-06-12 11:28:45 -07:00
|
|
|
{
|
2021-06-29 09:57:06 -07:00
|
|
|
long pid = context.Request.HandleDesc.PId;
|
|
|
|
|
|
|
|
MakeObject(context, new IParentalControlService(context, pid, false, _permissionFlag));
|
2018-06-12 11:28:45 -07:00
|
|
|
|
2019-07-14 12:04:38 -07:00
|
|
|
return ResultCode.Success;
|
2018-06-12 11:28:45 -07:00
|
|
|
}
|
2018-02-09 16:14:55 -08:00
|
|
|
}
|
|
|
|
}
|