Ryujinx/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs

41 lines
1.0 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.Logging;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Pctl
{
class IParentalControlService : IpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
2018-06-13 02:51:59 +02:00
private bool Initialized = false;
2018-06-13 02:51:59 +02:00
private bool NeedInitialize;
public IParentalControlService(bool NeedInitialize = true)
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 1, Initialize }
};
2018-06-13 02:51:59 +02:00
this.NeedInitialize = NeedInitialize;
}
public long Initialize(ServiceCtx Context)
{
2018-06-13 02:51:59 +02:00
if (NeedInitialize && !Initialized)
{
Initialized = true;
2018-06-13 02:51:59 +02:00
}
else
2018-06-13 02:51:59 +02:00
{
Context.Device.Log.PrintWarning(LogClass.ServicePctl, "Service is already initialized!");
2018-06-13 02:51:59 +02:00
}
return 0;
}
}
}