2020-09-12 13:09:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 ndeadly
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that 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/>.
|
|
|
|
*/
|
|
|
|
#include "steelseries_controller.hpp"
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams::controller {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2020-09-12 15:56:18 +00:00
|
|
|
const constexpr float stick_scale_factor = float(UINT12_MAX) / UINT8_MAX;
|
2020-09-12 13:09:33 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
void SteelseriesController::UpdateControllerState(const bluetooth::HidReport *report) {
|
|
|
|
auto steelseries_report = reinterpret_cast<const SteelseriesReportData *>(&report->data);
|
2020-09-12 13:09:33 +00:00
|
|
|
|
|
|
|
switch(steelseries_report->id) {
|
2020-09-12 15:56:18 +00:00
|
|
|
case 0x01:
|
2020-10-03 15:22:21 +00:00
|
|
|
this->HandleInputReport0x01(steelseries_report);
|
2020-09-12 15:56:18 +00:00
|
|
|
break;
|
2020-09-12 13:09:33 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
void SteelseriesController::HandleInputReport0x01(const SteelseriesReportData *src) {
|
2020-11-21 20:05:50 +00:00
|
|
|
m_left_stick = this->PackStickData(
|
2020-09-12 15:56:18 +00:00
|
|
|
static_cast<uint16_t>(stick_scale_factor * -static_cast<int8_t>(~src->input0x01.left_stick.x + 1) + 0x7ff) & 0xfff,
|
|
|
|
static_cast<uint16_t>(stick_scale_factor * (UINT8_MAX + static_cast<int8_t>(~src->input0x01.left_stick.y + 1)) + 0x7ff) & 0xfff
|
|
|
|
);
|
2020-11-21 20:05:50 +00:00
|
|
|
m_right_stick = this->PackStickData(
|
2020-09-12 15:56:18 +00:00
|
|
|
static_cast<uint16_t>(stick_scale_factor * -static_cast<int8_t>(~src->input0x01.right_stick.x + 1) + 0x7ff) & 0xfff,
|
|
|
|
static_cast<uint16_t>(stick_scale_factor * (UINT8_MAX + static_cast<int8_t>(~src->input0x01.right_stick.y + 1)) + 0x7ff) & 0xfff
|
|
|
|
);
|
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.dpad_down = (src->input0x01.dpad == SteelseriesDPad_S) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_SE) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_SW);
|
|
|
|
m_buttons.dpad_up = (src->input0x01.dpad == SteelseriesDPad_N) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_NE) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_NW);
|
|
|
|
m_buttons.dpad_right = (src->input0x01.dpad == SteelseriesDPad_E) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_NE) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_SE);
|
|
|
|
m_buttons.dpad_left = (src->input0x01.dpad == SteelseriesDPad_W) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_NW) ||
|
|
|
|
(src->input0x01.dpad == SteelseriesDPad_SW);
|
2020-09-12 15:56:18 +00:00
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.A = src->input0x01.buttons.B;
|
|
|
|
m_buttons.B = src->input0x01.buttons.A;
|
|
|
|
m_buttons.X = src->input0x01.buttons.Y;
|
|
|
|
m_buttons.Y = src->input0x01.buttons.X;
|
2020-09-12 15:56:18 +00:00
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.R = src->input0x01.buttons.R;
|
|
|
|
m_buttons.L = src->input0x01.buttons.L;
|
2020-09-12 15:56:18 +00:00
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.minus = src->input0x01.buttons.select;
|
2020-10-04 16:26:02 +00:00
|
|
|
m_buttons.plus = src->input0x01.buttons.start;
|
2020-09-12 15:56:18 +00:00
|
|
|
}
|
|
|
|
|
2020-09-12 13:09:33 +00:00
|
|
|
}
|