1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-01 01:38:44 +00:00
sys-con/source/ControllerSwitch/SwitchHDLHandler.h
2021-09-23 19:56:06 +03:00

39 lines
1.2 KiB
C++

#pragma once
#include "switch.h"
#include "IController.h"
#include "SwitchVirtualGamepadHandler.h"
//Wrapper for HDL functions for switch versions [7.0.0+]
class SwitchHDLHandler : public SwitchVirtualGamepadHandler
{
private:
HiddbgHdlsHandle m_hdlHandle;
HiddbgHdlsDeviceInfo m_deviceInfo;
HiddbgHdlsState m_hdlState;
public:
//Initialize the class with specified controller
SwitchHDLHandler(std::unique_ptr<IController> &&controller);
~SwitchHDLHandler();
//Initialize controller handler, HDL state
virtual Result Initialize() override;
virtual void Exit() override;
//This will be called periodically by the input threads
virtual void UpdateInput() override;
//This will be called periodically by the output threads
virtual void UpdateOutput() override;
//Separately init and close the HDL state
Result InitHdlState();
Result ExitHdlState();
//Fills out the HDL state with the specified button data
void FillHdlState(const NormalizedButtonData &data);
//Passes the HDL state to HID so that it could register the inputs
Result UpdateHdlState();
static HiddbgHdlsSessionId &GetHdlsSessionId();
};