/* * Copyright (c) 2020-2024 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 . */ #pragma once #include "emulated_switch_controller.hpp" namespace ams::controller { enum MocuteControllerVariant { MocuteControllerVariant_050, MocuteControllerVariant_053, }; enum MocuteDPadDirection { MocuteDPad_N, MocuteDPad_NE, MocuteDPad_E, MocuteDPad_SE, MocuteDPad_S, MocuteDPad_SW, MocuteDPad_W, MocuteDPad_NW, MocuteDPad_Released = 0x0f }; struct MocuteButtonData { u8 dpad : 4; u8 A : 1; u8 B : 1; u8 X : 1; u8 Y : 1; u8 L1 : 1; u8 R1 : 1; u8 select : 1; u8 start : 1; u8 L3 : 1; u8 R3 : 1; u8 L2 : 1; u8 R2 : 1; } PACKED; struct MocuteInputReport0x01 { AnalogStick left_stick; AnalogStick right_stick; MocuteButtonData buttons; u8 left_trigger; u8 right_trigger; } PACKED; // This only applies for mocute 053. 050 sends reports 0x04 and 0x06 in the same format as 0x01 struct MocuteInputReport0x04 { AnalogStick left_stick; AnalogStick right_stick; u8 left_trigger; u8 right_trigger; MocuteButtonData buttons; } PACKED; struct MocuteReportData { u8 id; union { MocuteInputReport0x01 input0x01; MocuteInputReport0x04 input0x04; }; } PACKED; class MocuteController final : public EmulatedSwitchController { public: static constexpr const HardwareID hardware_ids[] = { {0xffff, 0x0000}, // Mocute 050 Controller {0x04e8, 0x046e}, // Mocute 050 Controller {0x0000, 0x0000} // Mocute 053 Controller (bring on the clashing hardware IDs) }; MocuteController(const bluetooth::Address *address, HardwareID id); void ProcessInputData(const bluetooth::HidReport *report) override; private: void MapInputReport0x01(const MocuteReportData *src); void MapInputReport0x04(const MocuteReportData *src); void MapAnalogSticks(const AnalogStick *left_stick, const AnalogStick *right_stick); void MapButtons(const MocuteButtonData *buttons, u8 dpad_format); MocuteControllerVariant m_variant; }; }