mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 12:53:17 +00:00
90 lines
2.5 KiB
C++
90 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2020-2021 ndeadly
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* 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 {
|
|
|
|
enum PowerADPadDirection {
|
|
PowerADPad_N,
|
|
PowerADPad_NE,
|
|
PowerADPad_E,
|
|
PowerADPad_SE,
|
|
PowerADPad_S,
|
|
PowerADPad_SW,
|
|
PowerADPad_W,
|
|
PowerADPad_NW,
|
|
PowerADPad_Released = 0x0f
|
|
};
|
|
|
|
struct PowerAStickData {
|
|
uint8_t x;
|
|
uint8_t y;
|
|
} __attribute__((packed));
|
|
|
|
struct PowerAButtonData {
|
|
uint8_t dpad : 4;
|
|
uint8_t A : 1;
|
|
uint8_t B : 1;
|
|
uint8_t X : 1;
|
|
uint8_t Y : 1;
|
|
|
|
uint8_t L1 : 1;
|
|
uint8_t R1 : 1;
|
|
uint8_t select : 1;
|
|
uint8_t start : 1;
|
|
uint8_t L3 : 1;
|
|
uint8_t R3 : 1;
|
|
uint8_t : 0;
|
|
} __attribute__((packed));
|
|
|
|
struct PowerAInputReport0x03 {
|
|
PowerAStickData left_stick;
|
|
PowerAStickData right_stick;
|
|
PowerAButtonData buttons;
|
|
uint8_t L2;
|
|
uint8_t R2;
|
|
uint8_t battery;
|
|
uint8_t _unk;
|
|
} __attribute__((packed));
|
|
|
|
struct PowerAReportData{
|
|
uint8_t id;
|
|
union {
|
|
PowerAInputReport0x03 input0x03;
|
|
};
|
|
} __attribute__((packed));
|
|
|
|
class PowerAController : public EmulatedSwitchController {
|
|
|
|
public:
|
|
static constexpr const HardwareID hardware_ids[] = {
|
|
{0x20d6, 0x89e5}, // Moga Hero Controller
|
|
{0x20d6, 0x0dad}, // Moga Pro Controller
|
|
{0x20d6, 0x6271} // Moga Pro 2 Controller
|
|
};
|
|
|
|
PowerAController(const bluetooth::Address *address, HardwareID id)
|
|
: EmulatedSwitchController(address, id) { }
|
|
|
|
void UpdateControllerState(const bluetooth::HidReport *report);
|
|
|
|
private:
|
|
void HandleInputReport0x03(const PowerAReportData *src);
|
|
|
|
};
|
|
|
|
}
|