2020-07-09 19:20:08 +00:00
|
|
|
#include "xboxone.hpp"
|
2020-06-09 20:39:30 +00:00
|
|
|
#include <cstring>
|
2020-06-17 23:36:56 +00:00
|
|
|
#include <stratosphere.hpp>
|
2020-06-09 20:39:30 +00:00
|
|
|
|
2020-07-09 19:20:08 +00:00
|
|
|
#include "../btdrv_mitm_logging.hpp"
|
2020-06-02 21:24:40 +00:00
|
|
|
|
2020-07-11 11:43:21 +00:00
|
|
|
namespace ams::controller {
|
2020-06-02 21:24:40 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2020-07-11 11:52:56 +00:00
|
|
|
const constexpr float stickScaleFactor = float(UINT12_MAX) / UINT16_MAX;
|
2020-06-02 21:24:40 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-27 17:39:49 +00:00
|
|
|
Result XboxOneController::initialize(void) {
|
2020-08-17 21:17:02 +00:00
|
|
|
R_TRY(EmulatedSwitchController::initialize());
|
2020-07-27 17:39:49 +00:00
|
|
|
|
|
|
|
const u8 init_packet[] = {0x05, 0x20, 0x00, 0x01, 0x00};
|
|
|
|
|
2020-08-25 19:16:43 +00:00
|
|
|
s_outputReport.size = sizeof(init_packet);
|
|
|
|
std::memcpy(s_outputReport.data, init_packet, sizeof(init_packet));
|
|
|
|
R_TRY(bluetooth::hid::report::SendHidReport(&m_address, &s_outputReport));
|
2020-07-27 17:39:49 +00:00
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-07-11 11:43:21 +00:00
|
|
|
void XboxOneController::convertReportFormat(const bluetooth::HidReport *inReport, bluetooth::HidReport *outReport) {
|
|
|
|
auto xboxReport = reinterpret_cast<const XboxOneReportData *>(&inReport->data);
|
|
|
|
auto switchReport = reinterpret_cast<SwitchReportData *>(&outReport->data);
|
2020-06-09 20:39:30 +00:00
|
|
|
|
2020-07-11 11:43:21 +00:00
|
|
|
switch(xboxReport->id) {
|
2020-06-02 21:24:40 +00:00
|
|
|
case 0x01:
|
2020-07-11 11:43:21 +00:00
|
|
|
this->handleInputReport0x01(xboxReport, switchReport);
|
2020-06-02 21:24:40 +00:00
|
|
|
break;
|
2020-08-05 21:18:54 +00:00
|
|
|
/*
|
2020-06-02 21:24:40 +00:00
|
|
|
case 0x02:
|
2020-07-11 11:43:21 +00:00
|
|
|
this->handleInputReport0x02(xboxReport, switchReport);
|
2020-07-10 20:03:20 +00:00
|
|
|
break;
|
2020-08-05 21:18:54 +00:00
|
|
|
*/
|
2020-07-10 20:02:24 +00:00
|
|
|
case 0x04:
|
2020-07-11 11:43:21 +00:00
|
|
|
this->handleInputReport0x04(xboxReport, switchReport);
|
2020-06-02 21:24:40 +00:00
|
|
|
break;
|
|
|
|
default:
|
2020-07-11 11:43:21 +00:00
|
|
|
BTDRV_LOG_FMT("XBONE: RECEIVED REPORT [0x%02x]", xboxReport->id);
|
2020-06-02 21:24:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-07-11 21:19:56 +00:00
|
|
|
|
2020-08-24 20:40:44 +00:00
|
|
|
outReport->size = sizeof(SwitchInputReport0x30) + 1;
|
2020-07-11 21:19:56 +00:00
|
|
|
switchReport->id = 0x30;
|
|
|
|
switchReport->input0x30.conn_info = 0x0;
|
|
|
|
switchReport->input0x30.battery = m_battery | m_charging;
|
|
|
|
switchReport->input0x30.timer = os::ConvertToTimeSpan(os::GetSystemTick()).GetMilliSeconds() & 0xff;
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 20:39:30 +00:00
|
|
|
void XboxOneController::handleInputReport0x01(const XboxOneReportData *src, SwitchReportData *dst) {
|
2020-07-11 13:24:00 +00:00
|
|
|
packStickData(&dst->input0x30.left_stick,
|
|
|
|
static_cast<uint16_t>(stickScaleFactor * src->input0x01.left_stick.x) & 0xfff,
|
|
|
|
static_cast<uint16_t>(stickScaleFactor * (UINT16_MAX - src->input0x01.left_stick.y)) & 0xfff
|
2020-07-01 23:34:13 +00:00
|
|
|
);
|
2020-07-11 13:24:00 +00:00
|
|
|
packStickData(&dst->input0x30.right_stick,
|
|
|
|
static_cast<uint16_t>(stickScaleFactor * src->input0x01.right_stick.x) & 0xfff,
|
|
|
|
static_cast<uint16_t>(stickScaleFactor * (UINT16_MAX - src->input0x01.right_stick.y)) & 0xfff
|
2020-07-01 23:34:13 +00:00
|
|
|
);
|
2020-07-01 13:21:05 +00:00
|
|
|
|
2020-07-11 13:24:00 +00:00
|
|
|
dst->input0x30.buttons.dpad_down = (src->input0x01.buttons.dpad == XboxOneDPad_S) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_SE) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_SW);
|
|
|
|
dst->input0x30.buttons.dpad_up = (src->input0x01.buttons.dpad == XboxOneDPad_N) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_NE) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_NW);
|
|
|
|
dst->input0x30.buttons.dpad_right = (src->input0x01.buttons.dpad == XboxOneDPad_E) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_NE) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_SE);
|
|
|
|
dst->input0x30.buttons.dpad_left = (src->input0x01.buttons.dpad == XboxOneDPad_W) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_NW) ||
|
|
|
|
(src->input0x01.buttons.dpad == XboxOneDPad_SW);
|
|
|
|
|
|
|
|
dst->input0x30.buttons.A = src->input0x01.buttons.B;
|
|
|
|
dst->input0x30.buttons.B = src->input0x01.buttons.A;
|
|
|
|
dst->input0x30.buttons.X = src->input0x01.buttons.Y;
|
|
|
|
dst->input0x30.buttons.Y = src->input0x01.buttons.X;
|
|
|
|
|
|
|
|
dst->input0x30.buttons.R = src->input0x01.buttons.RB;
|
|
|
|
dst->input0x30.buttons.ZR = src->input0x01.right_trigger > 0;
|
|
|
|
dst->input0x30.buttons.L = src->input0x01.buttons.LB;
|
|
|
|
dst->input0x30.buttons.ZL = src->input0x01.left_trigger > 0;
|
|
|
|
|
|
|
|
dst->input0x30.buttons.minus = src->input0x01.buttons.view;
|
|
|
|
dst->input0x30.buttons.plus = src->input0x01.buttons.menu;
|
|
|
|
|
|
|
|
dst->input0x30.buttons.lstick_press = src->input0x01.buttons.lstick_press;
|
|
|
|
dst->input0x30.buttons.rstick_press = src->input0x01.buttons.rstick_press;
|
|
|
|
|
2020-08-05 21:18:54 +00:00
|
|
|
dst->input0x30.buttons.capture = 0;
|
|
|
|
dst->input0x30.buttons.home = src->input0x01.buttons.guide;
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 21:18:54 +00:00
|
|
|
/*
|
2020-06-09 20:39:30 +00:00
|
|
|
void XboxOneController::handleInputReport0x02(const XboxOneReportData *src, SwitchReportData *dst) {
|
2020-07-11 13:24:00 +00:00
|
|
|
packStickData(&dst->input0x30.left_stick, STICK_ZERO, STICK_ZERO);
|
|
|
|
packStickData(&dst->input0x30.right_stick, STICK_ZERO, STICK_ZERO);
|
2020-08-05 21:18:54 +00:00
|
|
|
//std::memset(&dst->input0x30.buttons, 0, sizeof(SwitchButtonData));
|
2020-07-11 11:43:21 +00:00
|
|
|
|
2020-07-11 13:24:00 +00:00
|
|
|
dst->input0x30.buttons.home = src->input0x02.guide;
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|
2020-08-05 21:18:54 +00:00
|
|
|
*/
|
2020-06-02 21:24:40 +00:00
|
|
|
|
2020-07-10 20:02:24 +00:00
|
|
|
void XboxOneController::handleInputReport0x04(const XboxOneReportData *src, SwitchReportData *dst) {
|
2020-08-06 19:17:55 +00:00
|
|
|
m_battery = src->input0x04.capacity << 1;
|
2020-08-06 19:33:41 +00:00
|
|
|
m_charging = src->input0x04.charging;
|
2020-07-10 20:02:24 +00:00
|
|
|
|
2020-07-11 13:24:00 +00:00
|
|
|
packStickData(&dst->input0x30.left_stick, STICK_ZERO, STICK_ZERO);
|
|
|
|
packStickData(&dst->input0x30.right_stick, STICK_ZERO, STICK_ZERO);
|
2020-07-10 20:02:24 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|