2018-10-17 17:15:50 +00:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-18 05:33:36 +00:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-08-16 23:47:36 +00:00
|
|
|
|
using Ryujinx.HLE.Input;
|
2018-09-23 18:11:46 +00:00
|
|
|
|
using System;
|
2018-06-02 22:46:09 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nfp
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
|
|
|
|
class IUser : IpcService
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private const HidControllerId NpadId = HidControllerId.ControllerPlayer1;
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private State _state = State.NonInitialized;
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private DeviceState _deviceState = DeviceState.Initialized;
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private KEvent _activateEvent;
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private KEvent _deactivateEvent;
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private KEvent _availabilityChangeEvent;
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public IUser(Horizon system)
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
2018-06-10 04:36:07 +00:00
|
|
|
|
{ 0, Initialize },
|
|
|
|
|
{ 17, AttachActivateEvent },
|
|
|
|
|
{ 18, AttachDeactivateEvent },
|
|
|
|
|
{ 19, GetState },
|
|
|
|
|
{ 20, GetDeviceState },
|
|
|
|
|
{ 21, GetNpadId },
|
|
|
|
|
{ 23, AttachAvailabilityChangeEvent }
|
2018-06-02 22:46:09 +00:00
|
|
|
|
};
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_activateEvent = new KEvent(system);
|
|
|
|
|
_deactivateEvent = new KEvent(system);
|
|
|
|
|
_availabilityChangeEvent = new KEvent(system);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long Initialize(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceNfp);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_state = State.Initialized;
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long AttachActivateEvent(ServiceCtx context)
|
2018-06-10 04:36:07 +00:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceNfp);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_activateEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long AttachDeactivateEvent(ServiceCtx context)
|
2018-06-10 04:36:07 +00:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceNfp);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_deactivateEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long GetState(ServiceCtx context)
|
2018-06-11 00:46:42 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.ResponseData.Write((int)_state);
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceNfp);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long GetDeviceState(ServiceCtx context)
|
2018-06-10 04:36:07 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.ResponseData.Write((int)_deviceState);
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceNfp);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long GetNpadId(ServiceCtx context)
|
2018-06-10 04:36:07 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.ResponseData.Write((int)NpadId);
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceNfp);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long AttachAvailabilityChangeEvent(ServiceCtx context)
|
2018-06-10 04:36:07 +00:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceNfp);
|
2018-06-11 00:46:42 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_availabilityChangeEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
2018-06-02 22:46:09 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|