| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461 |
- using Ryujinx.Common.Logging;
- using Ryujinx.HLE.HOS.Ipc;
- using Ryujinx.HLE.HOS.Kernel.Common;
- using Ryujinx.HLE.HOS.Kernel.Threading;
- using Ryujinx.HLE.Input;
- using System;
- using System.Collections.Generic;
- namespace Ryujinx.HLE.HOS.Services.Hid
- {
- class IHidServer : IpcService
- {
- private Dictionary<int, ServiceProcessRequest> _commands;
- private KEvent _npadStyleSetUpdateEvent;
- private KEvent _xpadIdEvent;
- private KEvent _palmaOperationCompleteEvent;
- private int _xpadIdEventHandle;
- private bool _sixAxisSensorFusionEnabled;
- private bool _unintendedHomeButtonInputProtectionEnabled;
- private bool _vibrationPermitted;
- private bool _usbFullKeyControllerEnabled;
- private HidNpadJoyHoldType _npadJoyHoldType;
- private HidNpadStyle _npadStyleSet;
- private HidNpadJoyAssignmentMode _npadJoyAssignmentMode;
- private HidNpadHandheldActivationMode _npadHandheldActivationMode;
- private HidGyroscopeZeroDriftMode _gyroscopeZeroDriftMode;
- private long _npadCommunicationMode;
- private uint _accelerometerPlayMode;
- private long _vibrationGcErmCommand;
- private float _sevenSixAxisSensorFusionStrength;
- private HidSensorFusionParameters _sensorFusionParams;
- private HidAccelerometerParameters _accelerometerParams;
- private HidVibrationValue _vibrationValue;
- public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
- public IHidServer(Horizon system)
- {
- _commands = new Dictionary<int, ServiceProcessRequest>
- {
- { 0, CreateAppletResource },
- { 1, ActivateDebugPad },
- { 11, ActivateTouchScreen },
- { 21, ActivateMouse },
- { 31, ActivateKeyboard },
- { 40, AcquireXpadIdEventHandle },
- { 41, ReleaseXpadIdEventHandle },
- { 51, ActivateXpad },
- { 55, GetXpadIds },
- { 56, ActivateJoyXpad },
- { 58, GetJoyXpadLifoHandle },
- { 59, GetJoyXpadIds },
- { 60, ActivateSixAxisSensor },
- { 61, DeactivateSixAxisSensor },
- { 62, GetSixAxisSensorLifoHandle },
- { 63, ActivateJoySixAxisSensor },
- { 64, DeactivateJoySixAxisSensor },
- { 65, GetJoySixAxisSensorLifoHandle },
- { 66, StartSixAxisSensor },
- { 67, StopSixAxisSensor },
- { 68, IsSixAxisSensorFusionEnabled },
- { 69, EnableSixAxisSensorFusion },
- { 70, SetSixAxisSensorFusionParameters },
- { 71, GetSixAxisSensorFusionParameters },
- { 72, ResetSixAxisSensorFusionParameters },
- { 73, SetAccelerometerParameters },
- { 74, GetAccelerometerParameters },
- { 75, ResetAccelerometerParameters },
- { 76, SetAccelerometerPlayMode },
- { 77, GetAccelerometerPlayMode },
- { 78, ResetAccelerometerPlayMode },
- { 79, SetGyroscopeZeroDriftMode },
- { 80, GetGyroscopeZeroDriftMode },
- { 81, ResetGyroscopeZeroDriftMode },
- { 82, IsSixAxisSensorAtRest },
- { 91, ActivateGesture },
- { 100, SetSupportedNpadStyleSet },
- { 101, GetSupportedNpadStyleSet },
- { 102, SetSupportedNpadIdType },
- { 103, ActivateNpad },
- { 104, DeactivateNpad },
- { 106, AcquireNpadStyleSetUpdateEventHandle },
- { 107, DisconnectNpad },
- { 108, GetPlayerLedPattern },
- { 109, ActivateNpadWithRevision },
- { 120, SetNpadJoyHoldType },
- { 121, GetNpadJoyHoldType },
- { 122, SetNpadJoyAssignmentModeSingleByDefault },
- { 123, SetNpadJoyAssignmentModeSingle },
- { 124, SetNpadJoyAssignmentModeDual },
- { 125, MergeSingleJoyAsDualJoy },
- { 126, StartLrAssignmentMode },
- { 127, StopLrAssignmentMode },
- { 128, SetNpadHandheldActivationMode },
- { 129, GetNpadHandheldActivationMode },
- { 130, SwapNpadAssignment },
- { 131, IsUnintendedHomeButtonInputProtectionEnabled },
- { 132, EnableUnintendedHomeButtonInputProtection },
- { 133, SetNpadJoyAssignmentModeSingleWithDestination },
- { 200, GetVibrationDeviceInfo },
- { 201, SendVibrationValue },
- { 202, GetActualVibrationValue },
- { 203, CreateActiveVibrationDeviceList },
- { 204, PermitVibration },
- { 205, IsVibrationPermitted },
- { 206, SendVibrationValues },
- { 207, SendVibrationGcErmCommand },
- { 208, GetActualVibrationGcErmCommand },
- { 209, BeginPermitVibrationSession },
- { 210, EndPermitVibrationSession },
- { 300, ActivateConsoleSixAxisSensor },
- { 301, StartConsoleSixAxisSensor },
- { 302, StopConsoleSixAxisSensor },
- { 303, ActivateSevenSixAxisSensor },
- { 304, StartSevenSixAxisSensor },
- { 305, StopSevenSixAxisSensor },
- { 306, InitializeSevenSixAxisSensor },
- { 307, FinalizeSevenSixAxisSensor },
- { 308, SetSevenSixAxisSensorFusionStrength },
- { 309, GetSevenSixAxisSensorFusionStrength },
- { 400, IsUsbFullKeyControllerEnabled },
- { 401, EnableUsbFullKeyController },
- { 402, IsUsbFullKeyControllerConnected },
- { 403, HasBattery },
- { 404, HasLeftRightBattery },
- { 405, GetNpadInterfaceType },
- { 406, GetNpadLeftRightInterfaceType },
- { 500, GetPalmaConnectionHandle },
- { 501, InitializePalma },
- { 502, AcquirePalmaOperationCompleteEvent },
- { 503, GetPalmaOperationInfo },
- { 504, PlayPalmaActivity },
- { 505, SetPalmaFrModeType },
- { 506, ReadPalmaStep },
- { 507, EnablePalmaStep },
- { 508, SuspendPalmaStep },
- { 509, ResetPalmaStep },
- { 510, ReadPalmaApplicationSection },
- { 511, WritePalmaApplicationSection },
- { 512, ReadPalmaUniqueCode },
- { 513, SetPalmaUniqueCodeInvalid },
- { 1000, SetNpadCommunicationMode },
- { 1001, GetNpadCommunicationMode }
- };
- _npadStyleSetUpdateEvent = new KEvent(system);
- _xpadIdEvent = new KEvent(system);
- _palmaOperationCompleteEvent = new KEvent(system);
- _npadJoyHoldType = HidNpadJoyHoldType.Vertical;
- _npadStyleSet = HidNpadStyle.FullKey | HidNpadStyle.Dual | HidNpadStyle.Left | HidNpadStyle.Right | HidNpadStyle.Handheld;
- _npadJoyAssignmentMode = HidNpadJoyAssignmentMode.Dual;
- _npadHandheldActivationMode = HidNpadHandheldActivationMode.Dual;
- _gyroscopeZeroDriftMode = HidGyroscopeZeroDriftMode.Standard;
- _sensorFusionParams = new HidSensorFusionParameters();
- _accelerometerParams = new HidAccelerometerParameters();
- _vibrationValue = new HidVibrationValue();
- // TODO: signal event at right place
- _xpadIdEvent.ReadableEvent.Signal();
- }
- // CreateAppletResource(nn::applet::AppletResourceUserId) -> object<nn::hid::IAppletResource>
- public long CreateAppletResource(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- MakeObject(context, new IAppletResource(context.Device.System.HidSharedMem));
- return 0;
- }
- // ActivateDebugPad(nn::applet::AppletResourceUserId)
- public long ActivateDebugPad(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // ActivateTouchScreen(nn::applet::AppletResourceUserId)
- public long ActivateTouchScreen(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // ActivateMouse(nn::applet::AppletResourceUserId)
- public long ActivateMouse(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // ActivateKeyboard(nn::applet::AppletResourceUserId)
- public long ActivateKeyboard(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // AcquireXpadIdEventHandle(ulong XpadId) -> nn::sf::NativeHandle
- public long AcquireXpadIdEventHandle(ServiceCtx context)
- {
- long xpadId = context.RequestData.ReadInt64();
- if (context.Process.HandleTable.GenerateHandle(_xpadIdEvent.ReadableEvent, out _xpadIdEventHandle) != KernelResult.Success)
- {
- throw new InvalidOperationException("Out of handles!");
- }
- context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_xpadIdEventHandle);
- Logger.PrintStub(LogClass.ServiceHid, new { xpadId });
- return 0;
- }
- // ReleaseXpadIdEventHandle(ulong XpadId)
- public long ReleaseXpadIdEventHandle(ServiceCtx context)
- {
- long xpadId = context.RequestData.ReadInt64();
- context.Process.HandleTable.CloseHandle(_xpadIdEventHandle);
- Logger.PrintStub(LogClass.ServiceHid, new { xpadId });
- return 0;
- }
- // ActivateXpad(nn::hid::BasicXpadId, nn::applet::AppletResourceUserId)
- public long ActivateXpad(ServiceCtx context)
- {
- int basicXpadId = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, basicXpadId });
- return 0;
- }
- // GetXpadIds() -> long IdsCount, buffer<array<nn::hid::BasicXpadId>, type: 0xa>
- public long GetXpadIds(ServiceCtx context)
- {
- // There is any Xpad, so we return 0 and write nothing inside the type-0xa buffer.
- context.ResponseData.Write(0L);
- Logger.PrintStub(LogClass.ServiceHid);
- return 0;
- }
- // ActivateJoyXpad(nn::hid::JoyXpadId)
- public long ActivateJoyXpad(ServiceCtx context)
- {
- int joyXpadId = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { joyXpadId });
- return 0;
- }
- // GetJoyXpadLifoHandle(nn::hid::JoyXpadId) -> nn::sf::NativeHandle
- public long GetJoyXpadLifoHandle(ServiceCtx context)
- {
- int joyXpadId = context.RequestData.ReadInt32();
- int handle = 0;
- context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
- Logger.PrintStub(LogClass.ServiceHid, new { joyXpadId });
- return 0;
- }
- // GetJoyXpadIds() -> long IdsCount, buffer<array<nn::hid::JoyXpadId>, type: 0xa>
- public long GetJoyXpadIds(ServiceCtx context)
- {
- // There is any JoyXpad, so we return 0 and write nothing inside the type-0xa buffer.
- context.ResponseData.Write(0L);
- Logger.PrintStub(LogClass.ServiceHid);
- return 0;
- }
- // ActivateSixAxisSensor(nn::hid::BasicXpadId)
- public long ActivateSixAxisSensor(ServiceCtx context)
- {
- int basicXpadId = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { basicXpadId });
- return 0;
- }
- // DeactivateSixAxisSensor(nn::hid::BasicXpadId)
- public long DeactivateSixAxisSensor(ServiceCtx context)
- {
- int basicXpadId = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { basicXpadId });
- return 0;
- }
- // GetSixAxisSensorLifoHandle(nn::hid::BasicXpadId) -> nn::sf::NativeHandle
- public long GetSixAxisSensorLifoHandle(ServiceCtx context)
- {
- int basicXpadId = context.RequestData.ReadInt32();
- int handle = 0;
- context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
- Logger.PrintStub(LogClass.ServiceHid, new { basicXpadId });
- return 0;
- }
- // ActivateJoySixAxisSensor(nn::hid::JoyXpadId)
- public long ActivateJoySixAxisSensor(ServiceCtx context)
- {
- int joyXpadId = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { joyXpadId });
- return 0;
- }
- // DeactivateJoySixAxisSensor(nn::hid::JoyXpadId)
- public long DeactivateJoySixAxisSensor(ServiceCtx context)
- {
- int joyXpadId = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { joyXpadId });
- return 0;
- }
- // GetJoySixAxisSensorLifoHandle(nn::hid::JoyXpadId) -> nn::sf::NativeHandle
- public long GetJoySixAxisSensorLifoHandle(ServiceCtx context)
- {
- int joyXpadId = context.RequestData.ReadInt32();
- int handle = 0;
- context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
- Logger.PrintStub(LogClass.ServiceHid, new { joyXpadId });
- return 0;
- }
- // StartSixAxisSensor(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long StartSixAxisSensor(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle });
- return 0;
- }
- // StopSixAxisSensor(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long StopSixAxisSensor(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle });
- return 0;
- }
- // IsSixAxisSensorFusionEnabled(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId) -> bool IsEnabled
- public long IsSixAxisSensorFusionEnabled(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_sixAxisSensorFusionEnabled);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _sixAxisSensorFusionEnabled });
- return 0;
- }
- // EnableSixAxisSensorFusion(bool Enabled, nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long EnableSixAxisSensorFusion(ServiceCtx context)
- {
- _sixAxisSensorFusionEnabled = context.RequestData.ReadBoolean();
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _sixAxisSensorFusionEnabled });
- return 0;
- }
- // SetSixAxisSensorFusionParameters(nn::hid::SixAxisSensorHandle, float RevisePower, float ReviseRange, nn::applet::AppletResourceUserId)
- public long SetSixAxisSensorFusionParameters(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- _sensorFusionParams = new HidSensorFusionParameters
- {
- RevisePower = context.RequestData.ReadInt32(),
- ReviseRange = context.RequestData.ReadInt32()
- };
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _sensorFusionParams.RevisePower, _sensorFusionParams.ReviseRange });
- return 0;
- }
- // GetSixAxisSensorFusionParameters(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId) -> float RevisePower, float ReviseRange)
- public long GetSixAxisSensorFusionParameters(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_sensorFusionParams.RevisePower);
- context.ResponseData.Write(_sensorFusionParams.ReviseRange);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _sensorFusionParams.RevisePower, _sensorFusionParams.ReviseRange });
- return 0;
- }
- // ResetSixAxisSensorFusionParameters(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long ResetSixAxisSensorFusionParameters(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- _sensorFusionParams.RevisePower = 0;
- _sensorFusionParams.ReviseRange = 0;
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _sensorFusionParams.RevisePower, _sensorFusionParams.ReviseRange });
- return 0;
- }
- // SetAccelerometerParameters(nn::hid::SixAxisSensorHandle, float X, float Y, nn::applet::AppletResourceUserId)
- public long SetAccelerometerParameters(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- _accelerometerParams = new HidAccelerometerParameters
- {
- X = context.RequestData.ReadInt32(),
- Y = context.RequestData.ReadInt32()
- };
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _accelerometerParams.X, _accelerometerParams.Y });
- return 0;
- }
- // GetAccelerometerParameters(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId) -> float X, float Y
- public long GetAccelerometerParameters(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_accelerometerParams.X);
- context.ResponseData.Write(_accelerometerParams.Y);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _accelerometerParams.X, _accelerometerParams.Y });
- return 0;
- }
- // ResetAccelerometerParameters(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long ResetAccelerometerParameters(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- _accelerometerParams.X = 0;
- _accelerometerParams.Y = 0;
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _accelerometerParams.X, _accelerometerParams.Y });
- return 0;
- }
- // SetAccelerometerPlayMode(nn::hid::SixAxisSensorHandle, uint PlayMode, nn::applet::AppletResourceUserId)
- public long SetAccelerometerPlayMode(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- _accelerometerPlayMode = context.RequestData.ReadUInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _accelerometerPlayMode });
- return 0;
- }
- // GetAccelerometerPlayMode(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId) -> uint PlayMode
- public long GetAccelerometerPlayMode(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_accelerometerPlayMode);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _accelerometerPlayMode });
- return 0;
- }
- // ResetAccelerometerPlayMode(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long ResetAccelerometerPlayMode(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- _accelerometerPlayMode = 0;
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _accelerometerPlayMode });
- return 0;
- }
- // SetGyroscopeZeroDriftMode(nn::hid::SixAxisSensorHandle, uint GyroscopeZeroDriftMode, nn::applet::AppletResourceUserId)
- public long SetGyroscopeZeroDriftMode(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- _gyroscopeZeroDriftMode = (HidGyroscopeZeroDriftMode)context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _gyroscopeZeroDriftMode });
- return 0;
- }
- // GetGyroscopeZeroDriftMode(nn::applet::AppletResourceUserId, nn::hid::SixAxisSensorHandle) -> int GyroscopeZeroDriftMode
- public long GetGyroscopeZeroDriftMode(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write((int)_gyroscopeZeroDriftMode);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _gyroscopeZeroDriftMode });
- return 0;
- }
- // ResetGyroscopeZeroDriftMode(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long ResetGyroscopeZeroDriftMode(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- _gyroscopeZeroDriftMode = HidGyroscopeZeroDriftMode.Standard;
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, _gyroscopeZeroDriftMode });
- return 0;
- }
- // IsSixAxisSensorAtRest(nn::hid::SixAxisSensorHandle, nn::applet::AppletResourceUserId) -> bool IsAsRest
- public long IsSixAxisSensorAtRest(ServiceCtx context)
- {
- int sixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- bool isAtRest = true;
- context.ResponseData.Write(isAtRest);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, sixAxisSensorHandle, isAtRest });
- return 0;
- }
- // ActivateGesture(nn::applet::AppletResourceUserId, int Unknown0)
- public long ActivateGesture(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- int unknown0 = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, unknown0 });
- return 0;
- }
- // SetSupportedNpadStyleSet(nn::applet::AppletResourceUserId, nn::hid::NpadStyleTag)
- public long SetSupportedNpadStyleSet(ServiceCtx context)
- {
- _npadStyleSet = (HidNpadStyle)context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _npadStyleSet });
- _npadStyleSetUpdateEvent.ReadableEvent.Signal();
- return 0;
- }
- // GetSupportedNpadStyleSet(nn::applet::AppletResourceUserId) -> uint nn::hid::NpadStyleTag
- public long GetSupportedNpadStyleSet(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write((int)_npadStyleSet);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _npadStyleSet });
- return 0;
- }
- // SetSupportedNpadIdType(nn::applet::AppletResourceUserId, array<NpadIdType, 9>)
- public long SetSupportedNpadIdType(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- HidControllerId npadIdType = (HidControllerId)context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, npadIdType });
- return 0;
- }
- // ActivateNpad(nn::applet::AppletResourceUserId)
- public long ActivateNpad(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // DeactivateNpad(nn::applet::AppletResourceUserId)
- public long DeactivateNpad(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // AcquireNpadStyleSetUpdateEventHandle(nn::applet::AppletResourceUserId, uint, ulong) -> nn::sf::NativeHandle
- public long AcquireNpadStyleSetUpdateEventHandle(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- int npadId = context.RequestData.ReadInt32();
- long npadStyleSet = context.RequestData.ReadInt64();
- if (context.Process.HandleTable.GenerateHandle(_npadStyleSetUpdateEvent.ReadableEvent, out int handle) != KernelResult.Success)
- {
- throw new InvalidOperationException("Out of handles!");
- }
- context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, npadId, npadStyleSet });
- return 0;
- }
- // DisconnectNpad(nn::applet::AppletResourceUserId, uint NpadIdType)
- public long DisconnectNpad(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- int npadIdType = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, npadIdType });
- return 0;
- }
- // GetPlayerLedPattern(uint NpadId) -> ulong LedPattern
- public long GetPlayerLedPattern(ServiceCtx context)
- {
- int npadId = context.RequestData.ReadInt32();
- long ledPattern = 0;
- context.ResponseData.Write(ledPattern);
- Logger.PrintStub(LogClass.ServiceHid, new { npadId, ledPattern });
- return 0;
- }
- // ActivateNpadWithRevision(nn::applet::AppletResourceUserId, int Unknown)
- public long ActivateNpadWithRevision(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- int unknown = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, unknown });
- return 0;
- }
- // SetNpadJoyHoldType(nn::applet::AppletResourceUserId, long NpadJoyHoldType)
- public long SetNpadJoyHoldType(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- _npadJoyHoldType = (HidNpadJoyHoldType)context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _npadJoyHoldType });
- return 0;
- }
- // GetNpadJoyHoldType(nn::applet::AppletResourceUserId) -> long NpadJoyHoldType
- public long GetNpadJoyHoldType(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write((long)_npadJoyHoldType);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _npadJoyHoldType });
- return 0;
- }
- // SetNpadJoyAssignmentModeSingleByDefault(uint HidControllerId, nn::applet::AppletResourceUserId)
- public long SetNpadJoyAssignmentModeSingleByDefault(ServiceCtx context)
- {
- HidControllerId hidControllerId = (HidControllerId)context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- _npadJoyAssignmentMode = HidNpadJoyAssignmentMode.Single;
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, hidControllerId, _npadJoyAssignmentMode });
- return 0;
- }
- // SetNpadJoyAssignmentModeSingle(uint HidControllerId, nn::applet::AppletResourceUserId, long HidNpadJoyDeviceType)
- public long SetNpadJoyAssignmentModeSingle(ServiceCtx context)
- {
- HidControllerId hidControllerId = (HidControllerId)context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- HidNpadJoyDeviceType hidNpadJoyDeviceType = (HidNpadJoyDeviceType)context.RequestData.ReadInt64();
- _npadJoyAssignmentMode = HidNpadJoyAssignmentMode.Single;
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, hidControllerId, hidNpadJoyDeviceType, _npadJoyAssignmentMode });
- return 0;
- }
- // SetNpadJoyAssignmentModeDual(uint HidControllerId, nn::applet::AppletResourceUserId)
- public long SetNpadJoyAssignmentModeDual(ServiceCtx context)
- {
- HidControllerId hidControllerId = (HidControllerId)context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- _npadJoyAssignmentMode = HidNpadJoyAssignmentMode.Dual;
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, hidControllerId, _npadJoyAssignmentMode });
- return 0;
- }
- // MergeSingleJoyAsDualJoy(uint SingleJoyId0, uint SingleJoyId1, nn::applet::AppletResourceUserId)
- public long MergeSingleJoyAsDualJoy(ServiceCtx context)
- {
- long singleJoyId0 = context.RequestData.ReadInt32();
- long singleJoyId1 = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, singleJoyId0, singleJoyId1 });
- return 0;
- }
- // StartLrAssignmentMode(nn::applet::AppletResourceUserId)
- public long StartLrAssignmentMode(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // StopLrAssignmentMode(nn::applet::AppletResourceUserId)
- public long StopLrAssignmentMode(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // SetNpadHandheldActivationMode(nn::applet::AppletResourceUserId, long HidNpadHandheldActivationMode)
- public long SetNpadHandheldActivationMode(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- _npadHandheldActivationMode = (HidNpadHandheldActivationMode)context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _npadHandheldActivationMode });
- return 0;
- }
- // GetNpadHandheldActivationMode(nn::applet::AppletResourceUserId) -> long HidNpadHandheldActivationMode
- public long GetNpadHandheldActivationMode(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write((long)_npadHandheldActivationMode);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _npadHandheldActivationMode });
- return 0;
- }
- // SwapNpadAssignment(uint OldNpadAssignment, uint NewNpadAssignment, nn::applet::AppletResourceUserId)
- public long SwapNpadAssignment(ServiceCtx context)
- {
- int oldNpadAssignment = context.RequestData.ReadInt32();
- int newNpadAssignment = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, oldNpadAssignment, newNpadAssignment });
- return 0;
- }
- // IsUnintendedHomeButtonInputProtectionEnabled(uint Unknown0, nn::applet::AppletResourceUserId) -> bool IsEnabled
- public long IsUnintendedHomeButtonInputProtectionEnabled(ServiceCtx context)
- {
- uint unknown0 = context.RequestData.ReadUInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_unintendedHomeButtonInputProtectionEnabled);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, unknown0, _unintendedHomeButtonInputProtectionEnabled });
- return 0;
- }
- // EnableUnintendedHomeButtonInputProtection(bool Enable, uint Unknown0, nn::applet::AppletResourceUserId)
- public long EnableUnintendedHomeButtonInputProtection(ServiceCtx context)
- {
- _unintendedHomeButtonInputProtectionEnabled = context.RequestData.ReadBoolean();
- uint unknown0 = context.RequestData.ReadUInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, unknown0, _unintendedHomeButtonInputProtectionEnabled });
- return 0;
- }
- // SetNpadJoyAssignmentModeSingleWithDestination(uint HidControllerId, long HidNpadJoyDeviceType, nn::applet::AppletResourceUserId) -> bool Unknown0, uint Unknown1
- public long SetNpadJoyAssignmentModeSingleWithDestination(ServiceCtx context)
- {
- HidControllerId hidControllerId = (HidControllerId)context.RequestData.ReadInt32();
- HidNpadJoyDeviceType hidNpadJoyDeviceType = (HidNpadJoyDeviceType)context.RequestData.ReadInt64();
- long appletResourceUserId = context.RequestData.ReadInt64();
- _npadJoyAssignmentMode = HidNpadJoyAssignmentMode.Single;
- context.ResponseData.Write(0); //Unknown0
- context.ResponseData.Write(0); //Unknown1
- Logger.PrintStub(LogClass.ServiceHid, new {
- appletResourceUserId,
- hidControllerId,
- hidNpadJoyDeviceType,
- _npadJoyAssignmentMode,
- Unknown0 = 0,
- Unknown1 = 0
- });
- return 0;
- }
- // GetVibrationDeviceInfo(nn::hid::VibrationDeviceHandle) -> nn::hid::VibrationDeviceInfo
- public long GetVibrationDeviceInfo(ServiceCtx context)
- {
- int vibrationDeviceHandle = context.RequestData.ReadInt32();
- HidVibrationDeviceValue deviceInfo = new HidVibrationDeviceValue
- {
- DeviceType = HidVibrationDeviceType.None,
- Position = HidVibrationDevicePosition.None
- };
- context.ResponseData.Write((int)deviceInfo.DeviceType);
- context.ResponseData.Write((int)deviceInfo.Position);
- Logger.PrintStub(LogClass.ServiceHid, new { vibrationDeviceHandle, deviceInfo.DeviceType, deviceInfo.Position });
- return 0;
- }
- // SendVibrationValue(nn::hid::VibrationDeviceHandle, nn::hid::VibrationValue, nn::applet::AppletResourceUserId)
- public long SendVibrationValue(ServiceCtx context)
- {
- int vibrationDeviceHandle = context.RequestData.ReadInt32();
- _vibrationValue = new HidVibrationValue
- {
- AmplitudeLow = context.RequestData.ReadSingle(),
- FrequencyLow = context.RequestData.ReadSingle(),
- AmplitudeHigh = context.RequestData.ReadSingle(),
- FrequencyHigh = context.RequestData.ReadSingle()
- };
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new {
- appletResourceUserId,
- vibrationDeviceHandle,
- _vibrationValue.AmplitudeLow,
- _vibrationValue.FrequencyLow,
- _vibrationValue.AmplitudeHigh,
- _vibrationValue.FrequencyHigh
- });
- return 0;
- }
- // GetActualVibrationValue(nn::hid::VibrationDeviceHandle, nn::applet::AppletResourceUserId) -> nn::hid::VibrationValue
- public long GetActualVibrationValue(ServiceCtx context)
- {
- int vibrationDeviceHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_vibrationValue.AmplitudeLow);
- context.ResponseData.Write(_vibrationValue.FrequencyLow);
- context.ResponseData.Write(_vibrationValue.AmplitudeHigh);
- context.ResponseData.Write(_vibrationValue.FrequencyHigh);
- Logger.PrintStub(LogClass.ServiceHid, new {
- appletResourceUserId,
- vibrationDeviceHandle,
- _vibrationValue.AmplitudeLow,
- _vibrationValue.FrequencyLow,
- _vibrationValue.AmplitudeHigh,
- _vibrationValue.FrequencyHigh
- });
- return 0;
- }
- // CreateActiveVibrationDeviceList() -> object<nn::hid::IActiveVibrationDeviceList>
- public long CreateActiveVibrationDeviceList(ServiceCtx context)
- {
- MakeObject(context, new IActiveApplicationDeviceList());
- return 0;
- }
- // PermitVibration(bool Enable)
- public long PermitVibration(ServiceCtx context)
- {
- _vibrationPermitted = context.RequestData.ReadBoolean();
- Logger.PrintStub(LogClass.ServiceHid, new { _vibrationPermitted });
- return 0;
- }
- // IsVibrationPermitted() -> bool IsEnabled
- public long IsVibrationPermitted(ServiceCtx context)
- {
- context.ResponseData.Write(_vibrationPermitted);
- Logger.PrintStub(LogClass.ServiceHid, new { _vibrationPermitted });
- return 0;
- }
- // SendVibrationValues(nn::applet::AppletResourceUserId, buffer<array<nn::hid::VibrationDeviceHandle>, type: 9>, buffer<array<nn::hid::VibrationValue>, type: 9>)
- public long SendVibrationValues(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- byte[] vibrationDeviceHandleBuffer = context.Memory.ReadBytes(
- context.Request.PtrBuff[0].Position,
- context.Request.PtrBuff[0].Size);
- byte[] vibrationValueBuffer = context.Memory.ReadBytes(
- context.Request.PtrBuff[1].Position,
- context.Request.PtrBuff[1].Size);
- //Todo: Read all handles and values from buffer.
- Logger.PrintStub(LogClass.ServiceHid, new {
- appletResourceUserId,
- VibrationDeviceHandleBufferLength = vibrationDeviceHandleBuffer.Length,
- VibrationValueBufferLength = vibrationValueBuffer.Length
- });
- return 0;
- }
- // SendVibrationGcErmCommand(nn::hid::VibrationDeviceHandle, nn::hid::VibrationGcErmCommand, nn::applet::AppletResourceUserId)
- public long SendVibrationGcErmCommand(ServiceCtx context)
- {
- int vibrationDeviceHandle = context.RequestData.ReadInt32();
- long vibrationGcErmCommand = context.RequestData.ReadInt64();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, vibrationDeviceHandle, vibrationGcErmCommand });
- return 0;
- }
- // GetActualVibrationGcErmCommand(nn::hid::VibrationDeviceHandle, nn::applet::AppletResourceUserId) -> nn::hid::VibrationGcErmCommand
- public long GetActualVibrationGcErmCommand(ServiceCtx context)
- {
- int vibrationDeviceHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_vibrationGcErmCommand);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, vibrationDeviceHandle, _vibrationGcErmCommand });
- return 0;
- }
- // BeginPermitVibrationSession(nn::applet::AppletResourceUserId)
- public long BeginPermitVibrationSession(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // EndPermitVibrationSession()
- public long EndPermitVibrationSession(ServiceCtx context)
- {
- Logger.PrintStub(LogClass.ServiceHid);
- return 0;
- }
- // ActivateConsoleSixAxisSensor(nn::applet::AppletResourceUserId)
- public long ActivateConsoleSixAxisSensor(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // StartConsoleSixAxisSensor(nn::hid::ConsoleSixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long StartConsoleSixAxisSensor(ServiceCtx context)
- {
- int consoleSixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, consoleSixAxisSensorHandle });
- return 0;
- }
- // StopConsoleSixAxisSensor(nn::hid::ConsoleSixAxisSensorHandle, nn::applet::AppletResourceUserId)
- public long StopConsoleSixAxisSensor(ServiceCtx context)
- {
- int consoleSixAxisSensorHandle = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, consoleSixAxisSensorHandle });
- return 0;
- }
- // ActivateSevenSixAxisSensor(nn::applet::AppletResourceUserId)
- public long ActivateSevenSixAxisSensor(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // StartSevenSixAxisSensor(nn::applet::AppletResourceUserId)
- public long StartSevenSixAxisSensor(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // StopSevenSixAxisSensor(nn::applet::AppletResourceUserId)
- public long StopSevenSixAxisSensor(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // InitializeSevenSixAxisSensor(array<nn::sf::NativeHandle>, ulong Counter0, array<nn::sf::NativeHandle>, ulong Counter1, nn::applet::AppletResourceUserId)
- public long InitializeSevenSixAxisSensor(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- long counter0 = context.RequestData.ReadInt64();
- long counter1 = context.RequestData.ReadInt64();
- // Todo: Determine if array<nn::sf::NativeHandle> is a buffer or not...
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, counter0, counter1 });
- return 0;
- }
- // FinalizeSevenSixAxisSensor(nn::applet::AppletResourceUserId)
- public long FinalizeSevenSixAxisSensor(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId });
- return 0;
- }
- // SetSevenSixAxisSensorFusionStrength(float Strength, nn::applet::AppletResourceUserId)
- public long SetSevenSixAxisSensorFusionStrength(ServiceCtx context)
- {
- _sevenSixAxisSensorFusionStrength = context.RequestData.ReadSingle();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _sevenSixAxisSensorFusionStrength });
- return 0;
- }
- // GetSevenSixAxisSensorFusionStrength(nn::applet::AppletResourceUserId) -> float Strength
- public long GetSevenSixAxisSensorFusionStrength(ServiceCtx context)
- {
- long appletResourceUserId = context.RequestData.ReadInt64();
- context.ResponseData.Write(_sevenSixAxisSensorFusionStrength);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _sevenSixAxisSensorFusionStrength });
- return 0;
- }
- // IsUsbFullKeyControllerEnabled() -> bool IsEnabled
- public long IsUsbFullKeyControllerEnabled(ServiceCtx context)
- {
- context.ResponseData.Write(_usbFullKeyControllerEnabled);
- Logger.PrintStub(LogClass.ServiceHid, new { _usbFullKeyControllerEnabled });
- return 0;
- }
- // EnableUsbFullKeyController(bool Enable)
- public long EnableUsbFullKeyController(ServiceCtx context)
- {
- _usbFullKeyControllerEnabled = context.RequestData.ReadBoolean();
- Logger.PrintStub(LogClass.ServiceHid, new { _usbFullKeyControllerEnabled });
- return 0;
- }
- // IsUsbFullKeyControllerConnected(uint Unknown0) -> bool Connected
- public long IsUsbFullKeyControllerConnected(ServiceCtx context)
- {
- int unknown0 = context.RequestData.ReadInt32();
- context.ResponseData.Write(true); //FullKeyController is always connected ?
- Logger.PrintStub(LogClass.ServiceHid, new { unknown0, Connected = true });
- return 0;
- }
- // HasBattery(uint NpadId) -> bool HasBattery
- public long HasBattery(ServiceCtx context)
- {
- int npadId = context.RequestData.ReadInt32();
- context.ResponseData.Write(true); //Npad always got a battery ?
- Logger.PrintStub(LogClass.ServiceHid, new { npadId, HasBattery = true });
- return 0;
- }
- // HasLeftRightBattery(uint NpadId) -> bool HasLeftBattery, bool HasRightBattery
- public long HasLeftRightBattery(ServiceCtx context)
- {
- int npadId = context.RequestData.ReadInt32();
- context.ResponseData.Write(true); //Npad always got a left battery ?
- context.ResponseData.Write(true); //Npad always got a right battery ?
- Logger.PrintStub(LogClass.ServiceHid, new { npadId, HasLeftBattery = true, HasRightBattery = true });
- return 0;
- }
- // GetNpadInterfaceType(uint NpadId) -> uchar InterfaceType
- public long GetNpadInterfaceType(ServiceCtx context)
- {
- int npadId = context.RequestData.ReadInt32();
- context.ResponseData.Write((byte)0);
- Logger.PrintStub(LogClass.ServiceHid, new { npadId, NpadInterfaceType = 0 });
- return 0;
- }
- // GetNpadLeftRightInterfaceType(uint NpadId) -> uchar LeftInterfaceType, uchar RightInterfaceType
- public long GetNpadLeftRightInterfaceType(ServiceCtx context)
- {
- int npadId = context.RequestData.ReadInt32();
- context.ResponseData.Write((byte)0);
- context.ResponseData.Write((byte)0);
- Logger.PrintStub(LogClass.ServiceHid, new { npadId, LeftInterfaceType = 0, RightInterfaceType = 0 });
- return 0;
- }
- // GetPalmaConnectionHandle(uint Unknown0, nn::applet::AppletResourceUserId) -> nn::hid::PalmaConnectionHandle
- public long GetPalmaConnectionHandle(ServiceCtx context)
- {
- int unknown0 = context.RequestData.ReadInt32();
- long appletResourceUserId = context.RequestData.ReadInt64();
- int palmaConnectionHandle = 0;
- context.ResponseData.Write(palmaConnectionHandle);
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId , unknown0, palmaConnectionHandle });
- return 0;
- }
- // InitializePalma(nn::hid::PalmaConnectionHandle)
- public long InitializePalma(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle });
- _palmaOperationCompleteEvent.ReadableEvent.Signal();
- return 0;
- }
- // AcquirePalmaOperationCompleteEvent(nn::hid::PalmaConnectionHandle) -> nn::sf::NativeHandle
- public long AcquirePalmaOperationCompleteEvent(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- if (context.Process.HandleTable.GenerateHandle(_palmaOperationCompleteEvent.ReadableEvent, out int handle) != KernelResult.Success)
- {
- throw new InvalidOperationException("Out of handles!");
- }
- context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle });
- return 0;
- }
- // GetPalmaOperationInfo(nn::hid::PalmaConnectionHandle) -> long Unknown0, buffer<Unknown>
- public long GetPalmaOperationInfo(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- long unknown0 = 0; //Counter?
- context.ResponseData.Write(unknown0);
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle, unknown0 });
- return 0;
- }
- // PlayPalmaActivity(nn::hid::PalmaConnectionHandle, ulong Unknown0)
- public long PlayPalmaActivity(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- long unknown0 = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle, unknown0 });
- _palmaOperationCompleteEvent.ReadableEvent.Signal();
- return 0;
- }
- // SetPalmaFrModeType(nn::hid::PalmaConnectionHandle, ulong FrModeType)
- public long SetPalmaFrModeType(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- long frModeType = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle, frModeType });
- _palmaOperationCompleteEvent.ReadableEvent.Signal();
- return 0;
- }
- // ReadPalmaStep(nn::hid::PalmaConnectionHandle)
- public long ReadPalmaStep(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle });
- return 0;
- }
- // EnablePalmaStep(nn::hid::PalmaConnectionHandle, bool Enable)
- public long EnablePalmaStep(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- bool enabledPalmaStep = context.RequestData.ReadBoolean();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle, enabledPalmaStep });
- _palmaOperationCompleteEvent.ReadableEvent.Signal();
- return 0;
- }
- // SuspendPalmaStep(nn::hid::PalmaConnectionHandle)
- public long SuspendPalmaStep(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle });
- _palmaOperationCompleteEvent.ReadableEvent.Signal();
- return 0;
- }
- // ResetPalmaStep(nn::hid::PalmaConnectionHandle)
- public long ResetPalmaStep(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle });
- _palmaOperationCompleteEvent.ReadableEvent.Signal();
- return 0;
- }
- // ReadPalmaApplicationSection(nn::hid::PalmaConnectionHandle, ulong Unknown0, ulong Unknown1)
- public long ReadPalmaApplicationSection(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- long unknown0 = context.RequestData.ReadInt64();
- long unknown1 = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle, unknown0, unknown1 });
- return 0;
- }
- // WritePalmaApplicationSection(nn::hid::PalmaConnectionHandle, ulong Unknown0, ulong Unknown1, nn::hid::PalmaApplicationSectionAccessBuffer)
- public long WritePalmaApplicationSection(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- long unknown0 = context.RequestData.ReadInt64();
- long unknown1 = context.RequestData.ReadInt64();
- // nn::hid::PalmaApplicationSectionAccessBuffer cast is unknown
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle, unknown0, unknown1 });
- _palmaOperationCompleteEvent.ReadableEvent.Signal();
- return 0;
- }
- // ReadPalmaUniqueCode(nn::hid::PalmaConnectionHandle)
- public long ReadPalmaUniqueCode(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle });
- return 0;
- }
- // SetPalmaUniqueCodeInvalid(nn::hid::PalmaConnectionHandle)
- public long SetPalmaUniqueCodeInvalid(ServiceCtx context)
- {
- int palmaConnectionHandle = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceHid, new { palmaConnectionHandle });
- return 0;
- }
- // SetNpadCommunicationMode(long CommunicationMode, nn::applet::AppletResourceUserId)
- public long SetNpadCommunicationMode(ServiceCtx context)
- {
- _npadCommunicationMode = context.RequestData.ReadInt64();
- long appletResourceUserId = context.RequestData.ReadInt64();
- Logger.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _npadCommunicationMode });
- return 0;
- }
- // GetNpadCommunicationMode() -> long CommunicationMode
- public long GetNpadCommunicationMode(ServiceCtx context)
- {
- context.ResponseData.Write(_npadCommunicationMode);
- Logger.PrintStub(LogClass.ServiceHid, new { _npadCommunicationMode });
- return 0;
- }
- }
- }
|