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