2018-10-17 19:15:50 +02:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-10-07 17:12:11 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Irs
|
|
|
|
|
{
|
|
|
|
|
class IIrSensorServer : IpcService
|
|
|
|
|
{
|
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
|
|
private bool Activated;
|
|
|
|
|
|
|
|
|
|
public IIrSensorServer()
|
|
|
|
|
{
|
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
|
{
|
|
|
|
|
{ 302, ActivateIrsensor },
|
|
|
|
|
{ 303, DeactivateIrsensor }
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ActivateIrsensor(nn::applet::AppletResourceUserId, pid)
|
|
|
|
|
public long ActivateIrsensor(ServiceCtx Context)
|
|
|
|
|
{
|
|
|
|
|
long AppletResourceUserId = Context.RequestData.ReadInt64();
|
|
|
|
|
|
2018-10-17 19:15:50 +02:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceIrs, $"Stubbed. AppletResourceUserId: {AppletResourceUserId}");
|
2018-10-07 17:12:11 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeactivateIrsensor(nn::applet::AppletResourceUserId, pid)
|
|
|
|
|
public long DeactivateIrsensor(ServiceCtx Context)
|
|
|
|
|
{
|
|
|
|
|
long AppletResourceUserId = Context.RequestData.ReadInt64();
|
|
|
|
|
|
2018-10-17 19:15:50 +02:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceIrs, $"Stubbed. AppletResourceUserId: {AppletResourceUserId}");
|
2018-10-07 17:12:11 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|