aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-10-07 18:12:11 +0300
committerThomas Guillemard <thog@protonmail.com>2018-10-07 17:12:11 +0200
commit625fc8c0e0f7a10bbdabe86f9cc86b16d1a62be3 (patch)
treea0f8d488a0b918226460a738689ca7c005cbfbba /Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs
parentcaa181edf2c956a1433d3c2f8678231af52f9dad (diff)
Stubs Again (#439)
* stub/implement audren commands * stub ISelfController get/set IdleTimeDetectonExtension * stub irs * add irs logclass, stub mmu:u irequest 1 * style fixes, addressed comments
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs46
1 files changed, 46 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs b/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs
new file mode 100644
index 00000000..c6354314
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs
@@ -0,0 +1,46 @@
+using Ryujinx.HLE.HOS.Ipc;
+using Ryujinx.HLE.HOS.Kernel;
+using Ryujinx.HLE.Logging;
+using System;
+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();
+
+ Context.Device.Log.PrintStub(LogClass.ServiceIrs, $"Stubbed. AppletResourceUserId: {AppletResourceUserId}");
+
+ return 0;
+ }
+
+ // DeactivateIrsensor(nn::applet::AppletResourceUserId, pid)
+ public long DeactivateIrsensor(ServiceCtx Context)
+ {
+ long AppletResourceUserId = Context.RequestData.ReadInt64();
+
+ Context.Device.Log.PrintStub(LogClass.ServiceIrs, $"Stubbed. AppletResourceUserId: {AppletResourceUserId}");
+
+ return 0;
+ }
+ }
+} \ No newline at end of file