mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-24 05:13:08 +00:00
110 lines
4.7 KiB
C++
110 lines
4.7 KiB
C++
#include "xboxone.hpp"
|
|
|
|
#include <cstring>
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "../btdrv_mitm_logging.hpp"
|
|
|
|
namespace controller {
|
|
|
|
namespace {
|
|
|
|
const constexpr float scale_factor = float(UINT12_MAX) / UINT16_MAX;
|
|
|
|
}
|
|
|
|
XboxOneController::XboxOneController(const BluetoothAddress *address)
|
|
: BluetoothController(ControllerType_XboxOne, address) {
|
|
|
|
}
|
|
|
|
void XboxOneController::convertReportFormat(const HidReport *inReport, HidReport *outReport) {
|
|
auto xboxData = reinterpret_cast<const XboxOneReportData *>(&inReport->data);
|
|
auto switchData = reinterpret_cast<SwitchReportData *>(&outReport->data);
|
|
|
|
outReport->type = 0x31;
|
|
outReport->id = 0x30;
|
|
|
|
switchData->report0x30.conn_info = 0x0;
|
|
switchData->report0x30.battery = 0x8;
|
|
|
|
switch(inReport->id) {
|
|
case 0x01:
|
|
this->handleInputReport0x01(xboxData, switchData);
|
|
break;
|
|
|
|
case 0x02:
|
|
this->handleInputReport0x02(xboxData, switchData);
|
|
break;
|
|
|
|
case 0x04:
|
|
this->handleInputReport0x04(xboxData, switchData);
|
|
break;
|
|
|
|
default:
|
|
BTDRV_LOG_FMT("XBONE: RECEIVED REPORT [0x%02x]", inReport->id);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void XboxOneController::handleInputReport0x01(const XboxOneReportData *src, SwitchReportData *dst) {
|
|
packStickData(&dst->report0x30.left_stick,
|
|
static_cast<uint16_t>(scale_factor * src->report0x01.left_stick.x) & 0xfff,
|
|
static_cast<uint16_t>(scale_factor * (UINT16_MAX - src->report0x01.left_stick.y)) & 0xfff
|
|
);
|
|
packStickData(&dst->report0x30.right_stick,
|
|
static_cast<uint16_t>(scale_factor * src->report0x01.right_stick.x) & 0xfff,
|
|
static_cast<uint16_t>(scale_factor * (UINT16_MAX - src->report0x01.right_stick.y)) & 0xfff
|
|
);
|
|
|
|
dst->report0x30.buttons.dpad_down = (src->report0x01.buttons.dpad == XboxOneDPad_S) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_SE) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_SW);
|
|
dst->report0x30.buttons.dpad_up = (src->report0x01.buttons.dpad == XboxOneDPad_N) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_NE) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_NW);
|
|
dst->report0x30.buttons.dpad_right = (src->report0x01.buttons.dpad == XboxOneDPad_E) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_NE) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_SE);
|
|
dst->report0x30.buttons.dpad_left = (src->report0x01.buttons.dpad == XboxOneDPad_W) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_NW) ||
|
|
(src->report0x01.buttons.dpad == XboxOneDPad_SW);
|
|
|
|
dst->report0x30.buttons.A = src->report0x01.buttons.B;
|
|
dst->report0x30.buttons.B = src->report0x01.buttons.A;
|
|
dst->report0x30.buttons.X = src->report0x01.buttons.Y;
|
|
dst->report0x30.buttons.Y = src->report0x01.buttons.X;
|
|
|
|
dst->report0x30.buttons.R = src->report0x01.buttons.RB;
|
|
dst->report0x30.buttons.ZR = src->report0x01.right_trigger > 0;
|
|
dst->report0x30.buttons.L = src->report0x01.buttons.LB;
|
|
dst->report0x30.buttons.ZL = src->report0x01.left_trigger > 0;
|
|
|
|
dst->report0x30.buttons.minus = src->report0x01.buttons.view;
|
|
dst->report0x30.buttons.plus = src->report0x01.buttons.menu;
|
|
|
|
dst->report0x30.buttons.lstick_press = src->report0x01.buttons.lstick_press;
|
|
dst->report0x30.buttons.rstick_press = src->report0x01.buttons.rstick_press;
|
|
|
|
dst->report0x30.buttons.capture = 0;
|
|
}
|
|
|
|
void XboxOneController::handleInputReport0x02(const XboxOneReportData *src, SwitchReportData *dst) {
|
|
std::memset(&dst->report0x30.buttons, 0, sizeof(SwitchButtonData));
|
|
dst->report0x30.buttons.home = src->report0x02.guide;
|
|
}
|
|
|
|
void XboxOneController::handleInputReport0x04(const XboxOneReportData *src, SwitchReportData *dst) {
|
|
BTDRV_LOG_FMT("Xbox One battery flags: online: %d, mode: %d, capacity: %d",
|
|
src->report0x04.online,
|
|
src->report0x04.mode,
|
|
src->report0x04.capacity
|
|
);
|
|
|
|
packStickData(&dst->report0x30.left_stick, STICK_ZERO, STICK_ZERO);
|
|
packStickData(&dst->report0x30.right_stick, STICK_ZERO, STICK_ZERO);
|
|
std::memset(&dst->report0x30.buttons, 0, sizeof(SwitchButtonData));
|
|
|
|
}
|
|
|
|
}
|