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-09-18 20:45:11 -04:00
|
|
|
|
using Ryujinx.HLE.HOS.Services.Hid.HidServer;
|
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)
|
2019-07-14 15:04:38 -04:00
|
|
|
|
public ResultCode 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
|
|
|
|
|
2020-08-03 19:32:53 -04:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceIrs, new { appletResourceUserId });
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
|
return ResultCode.Success;
|
2018-10-07 11:12:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(303)]
|
2018-10-07 11:12:11 -04:00
|
|
|
|
// DeactivateIrsensor(nn::applet::AppletResourceUserId, pid)
|
2019-07-14 15:04:38 -04:00
|
|
|
|
public ResultCode 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
|
|
|
|
|
2020-08-03 19:32:53 -04:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceIrs, new { appletResourceUserId });
|
2018-10-07 11:12:11 -04:00
|
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
|
return ResultCode.Success;
|
2018-10-07 11:12:11 -04:00
|
|
|
|
}
|
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>
|
2019-07-14 15:04:38 -04:00
|
|
|
|
public ResultCode GetIrsensorSharedMemoryHandle(ServiceCtx context)
|
2019-04-19 22:23:13 -04:00
|
|
|
|
{
|
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
|
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
|
return ResultCode.Success;
|
2019-04-19 22:23:13 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(311)]
|
2019-04-19 21:56:55 -04:00
|
|
|
|
// GetNpadIrCameraHandle(u32) -> nn::irsensor::IrCameraHandle
|
2019-07-14 15:04:38 -04:00
|
|
|
|
public ResultCode GetNpadIrCameraHandle(ServiceCtx context)
|
2019-04-19 21:56:55 -04:00
|
|
|
|
{
|
2020-04-02 20:10:02 -04:00
|
|
|
|
NpadIdType npadIdType = (NpadIdType)context.RequestData.ReadUInt32();
|
2019-04-19 21:56:55 -04:00
|
|
|
|
|
2020-04-02 20:10:02 -04:00
|
|
|
|
if (npadIdType > NpadIdType.Player8 &&
|
|
|
|
|
npadIdType != NpadIdType.Unknown &&
|
|
|
|
|
npadIdType != NpadIdType.Handheld)
|
2019-04-19 21:56:55 -04:00
|
|
|
|
{
|
2019-07-14 15:04:38 -04:00
|
|
|
|
return ResultCode.NpadIdOutOfRange;
|
2019-04-19 21:56:55 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-02 20:10:02 -04:00
|
|
|
|
PlayerIndex 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.
|
2019-07-14 15:04:38 -04:00
|
|
|
|
// return ResultCode.HandlePointerIsNull;
|
2019-04-19 21:56:55 -04:00
|
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
|
return ResultCode.Success;
|
2019-04-19 21:56:55 -04:00
|
|
|
|
}
|
|
|
|
|
|
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)
|
2019-07-14 15:04:38 -04:00
|
|
|
|
public ResultCode ActivateIrsensorWithFunctionLevel(ServiceCtx context)
|
2019-04-25 09:03:00 -04:00
|
|
|
|
{
|
|
|
|
|
long appletResourceUserId = context.RequestData.ReadInt64();
|
|
|
|
|
long packedFunctionLevel = context.RequestData.ReadInt64();
|
|
|
|
|
|
2020-08-03 19:32:53 -04:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceIrs, new { appletResourceUserId, packedFunctionLevel });
|
2019-04-25 09:03:00 -04:00
|
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
|
return ResultCode.Success;
|
2019-04-25 09:03:00 -04:00
|
|
|
|
}
|
2018-10-07 11:12:11 -04:00
|
|
|
|
}
|
|
|
|
|
}
|