mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 21:03:16 +00:00
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#pragma once
|
|
#include <cstring>
|
|
#include <switch.h>
|
|
|
|
namespace controller {
|
|
|
|
struct HardwareID {
|
|
uint16_t vid;
|
|
uint16_t pid;
|
|
};
|
|
|
|
enum ControllerType {
|
|
ControllerType_Unknown,
|
|
ControllerType_Joycon,
|
|
ControllerType_SwitchPro,
|
|
ControllerType_Wiimote,
|
|
ControllerType_WiiUPro,
|
|
ControllerType_Dualshock4,
|
|
ControllerType_XboxOne,
|
|
};
|
|
|
|
class BluetoothController {
|
|
|
|
public:
|
|
const BluetoothAddress& address(void) const;
|
|
ControllerType type(void);
|
|
bool isSwitchController(void);
|
|
|
|
virtual Result initialize(void);
|
|
virtual void convertReportFormat(const HidReport *inReport, HidReport *outReport) {};
|
|
|
|
protected:
|
|
BluetoothController(ControllerType type, const BluetoothAddress *address);
|
|
|
|
ControllerType m_type;
|
|
BluetoothAddress m_address;
|
|
|
|
bool m_switchController;
|
|
|
|
};
|
|
|
|
inline bool bdcmp(const BluetoothAddress *addr1, const BluetoothAddress *addr2) {
|
|
return std::memcmp(addr1, addr2, sizeof(BluetoothAddress)) == 0;
|
|
}
|
|
|
|
}
|