2020-09-13 23:59:55 +00:00
|
|
|
/*
|
2021-01-26 03:03:26 +00:00
|
|
|
* Copyright (c) 2020-2021 ndeadly
|
2020-09-13 23:59:55 +00:00
|
|
|
*
|
2021-01-26 03:03:26 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
2020-09-13 23:59:55 +00:00
|
|
|
*
|
2021-01-26 03:03:26 +00:00
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
2020-09-13 23:59:55 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "emulated_switch_controller.hpp"
|
|
|
|
|
|
|
|
namespace ams::controller {
|
|
|
|
|
2020-09-16 23:32:03 +00:00
|
|
|
enum EightBitDoDPadDirection : uint16_t {
|
|
|
|
EightBitDoDPad_Released = 0x0000,
|
|
|
|
EightBitDoDPad_N = 0x0052,
|
|
|
|
EightBitDoDPad_NE = 0x524f,
|
|
|
|
EightBitDoDPad_E = 0x004f,
|
|
|
|
EightBitDoDPad_SE = 0x4f51,
|
|
|
|
EightBitDoDPad_S = 0x0051,
|
|
|
|
EightBitDoDPad_SW = 0x5150,
|
|
|
|
EightBitDoDPad_W = 0x0050,
|
|
|
|
EightBitDoDPad_NW = 0x5250,
|
|
|
|
};
|
|
|
|
|
2020-09-13 23:59:55 +00:00
|
|
|
struct EightBitDoStickData {
|
|
|
|
uint8_t x;
|
|
|
|
uint8_t y;
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct EightBitDoButtonData {
|
|
|
|
uint8_t A : 1;
|
|
|
|
uint8_t B : 1;
|
|
|
|
uint8_t : 1;
|
|
|
|
uint8_t X : 1;
|
|
|
|
uint8_t Y : 1;
|
|
|
|
uint8_t : 1;
|
|
|
|
uint8_t L : 1;
|
|
|
|
uint8_t R : 1;
|
|
|
|
|
|
|
|
uint8_t : 2;
|
|
|
|
uint8_t select : 1;
|
|
|
|
uint8_t start : 1;
|
|
|
|
uint8_t : 0;
|
|
|
|
}__attribute__((packed));
|
|
|
|
|
|
|
|
struct EightBitDoInputReport0x01 {
|
|
|
|
uint8_t _unk0[2];
|
2020-09-16 23:32:03 +00:00
|
|
|
uint16_t dpad;
|
|
|
|
uint8_t _unk1[4];
|
2020-09-13 23:59:55 +00:00
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct EightBitDoInputReport0x03 {
|
|
|
|
uint8_t dpad;
|
|
|
|
EightBitDoStickData left_stick;
|
|
|
|
EightBitDoStickData right_stick;
|
2020-12-05 01:10:04 +00:00
|
|
|
uint8_t _unk[2];
|
2020-09-13 23:59:55 +00:00
|
|
|
EightBitDoButtonData buttons;
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct EightBitDoReportData{
|
|
|
|
uint8_t id;
|
|
|
|
union {
|
|
|
|
EightBitDoInputReport0x01 input0x01;
|
|
|
|
EightBitDoInputReport0x03 input0x03;
|
|
|
|
};
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
class EightBitDoController : public EmulatedSwitchController {
|
|
|
|
|
|
|
|
public:
|
|
|
|
static constexpr const HardwareID hardware_ids[] = {
|
|
|
|
{0x05a0, 0x3232} // 8BitDo Zero
|
|
|
|
};
|
|
|
|
|
|
|
|
EightBitDoController(const bluetooth::Address *address)
|
|
|
|
: EmulatedSwitchController(address) { };
|
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
void UpdateControllerState(const bluetooth::HidReport *report);
|
2020-09-13 23:59:55 +00:00
|
|
|
|
|
|
|
private:
|
2020-10-03 15:22:21 +00:00
|
|
|
void HandleInputReport0x01(const EightBitDoReportData *src);
|
|
|
|
void HandleInputReport0x03(const EightBitDoReportData *src);
|
2020-09-13 23:59:55 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|