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

41 lines
1 KiB
C#
Raw Normal View History

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