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