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