2018-10-17 13:15:50 -04:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2019-04-19 22:23:13 -04:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
2019-06-27 12:02:41 -04:00
|
|
|
|
using Ryujinx.HLE.Input;
|
2019-04-19 21:56:55 -04:00
|
|
|
|
using System;
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
2019-06-27 12:02:41 -04:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Hid.Irs
|
2018-10-07 11:12:11 -04:00
|
|
|
|
{
|
2019-07-10 11:59:54 -04:00
|
|
|
|
[Service("irs")]
|
2018-10-07 11:12:11 -04:00
|
|
|
|
class IIrSensorServer : IpcService
|
|
|
|
|
{
|
2019-06-27 12:02:41 -04:00
|
|
|
|
private int _irsensorSharedMemoryHandle = 0;
|
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
public IIrSensorServer(ServiceCtx context) { }
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(302)]
|
2018-10-07 11:12:11 -04:00
|
|
|
|
// ActivateIrsensor(nn::applet::AppletResourceUserId, pid)
|
2018-12-06 06:16:24 -05:00
|
|
|
|
public long ActivateIrsensor(ServiceCtx context)
|
2018-10-07 11:12:11 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
long appletResourceUserId = context.RequestData.ReadInt64();
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
2019-01-10 19:11:46 -05:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceIrs, new { appletResourceUserId });
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(303)]
|
2018-10-07 11:12:11 -04:00
|
|
|
|
// DeactivateIrsensor(nn::applet::AppletResourceUserId, pid)
|
2018-12-06 06:16:24 -05:00
|
|
|
|
public long DeactivateIrsensor(ServiceCtx context)
|
2018-10-07 11:12:11 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
long appletResourceUserId = context.RequestData.ReadInt64();
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
2019-01-10 19:11:46 -05:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceIrs, new { appletResourceUserId });
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2019-04-19 21:56:55 -04:00
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(304)]
|
2019-04-19 22:23:13 -04:00
|
|
|
|
// GetIrsensorSharedMemoryHandle(nn::applet::AppletResourceUserId, pid) -> handle<copy>
|
|
|
|
|
public long GetIrsensorSharedMemoryHandle(ServiceCtx context)
|
|
|
|
|
{
|
2019-06-27 12:02:41 -04:00
|
|
|
|
if (_irsensorSharedMemoryHandle == 0)
|
2019-04-19 22:23:13 -04:00
|
|
|
|
{
|
2019-06-27 12:02:41 -04:00
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(context.Device.System.IirsSharedMem, out _irsensorSharedMemoryHandle) != KernelResult.Success)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
2019-04-19 22:23:13 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-27 12:02:41 -04:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_irsensorSharedMemoryHandle);
|
2019-04-19 22:23:13 -04:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(311)]
|
2019-04-19 21:56:55 -04:00
|
|
|
|
// GetNpadIrCameraHandle(u32) -> nn::irsensor::IrCameraHandle
|
|
|
|
|
public long GetNpadIrCameraHandle(ServiceCtx context)
|
|
|
|
|
{
|
2019-06-27 12:02:41 -04:00
|
|
|
|
NpadIdType npadIdType = (NpadIdType)context.RequestData.ReadUInt32();
|
2019-04-19 21:56:55 -04:00
|
|
|
|
|
2019-06-27 12:02:41 -04:00
|
|
|
|
if (npadIdType > NpadIdType.Player8 &&
|
|
|
|
|
npadIdType != NpadIdType.Unknown &&
|
|
|
|
|
npadIdType != NpadIdType.Handheld)
|
2019-04-19 21:56:55 -04:00
|
|
|
|
{
|
2019-06-27 12:02:41 -04:00
|
|
|
|
return ErrorCode.MakeError(ErrorModule.Irsensor, IrsError.NpadIdOutOfRange);
|
2019-04-19 21:56:55 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-27 12:02:41 -04:00
|
|
|
|
HidControllerId irCameraHandle = HidUtils.GetIndexFromNpadIdType(npadIdType);
|
2019-04-19 21:56:55 -04:00
|
|
|
|
|
2019-06-27 12:02:41 -04:00
|
|
|
|
context.ResponseData.Write((int)irCameraHandle);
|
2019-04-19 21:56:55 -04:00
|
|
|
|
|
2019-06-27 12:02:41 -04:00
|
|
|
|
// NOTE: If the irCameraHandle pointer is null this error is returned, Doesn't occur in our case.
|
|
|
|
|
// return ErrorCode.MakeError(ErrorModule.Irsensor, IrsError.HandlePointerIsNull);
|
2019-04-19 21:56:55 -04:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(319)] // 4.0.0+
|
2019-04-25 09:03:00 -04:00
|
|
|
|
// ActivateIrsensorWithFunctionLevel(nn::applet::AppletResourceUserId, nn::irsensor::PackedFunctionLevel, pid)
|
|
|
|
|
public long ActivateIrsensorWithFunctionLevel(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
long appletResourceUserId = context.RequestData.ReadInt64();
|
|
|
|
|
long packedFunctionLevel = context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceIrs, new { appletResourceUserId, packedFunctionLevel });
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2018-10-07 11:12:11 -04:00
|
|
|
|
}
|
|
|
|
|
}
|