mirror of
https://github.com/cathery/sys-con.git
synced 2024-11-16 14:09:51 +00:00
37 lines
1.1 KiB
C++
37 lines
1.1 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:
|
|
u64 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();
|
|
}; |