2020-09-02 23:03:37 +00:00
|
|
|
/*
|
2022-03-28 02:04:49 +00:00
|
|
|
* Copyright (c) 2020-2022 ndeadly
|
2020-09-02 23:03:37 +00:00
|
|
|
*
|
2021-01-26 03:03:26 +00:00
|
|
|
* 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.
|
2020-09-02 23:03:37 +00:00
|
|
|
*
|
2021-01-26 03:03:26 +00:00
|
|
|
* 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.
|
2020-09-02 23:03:37 +00:00
|
|
|
*
|
|
|
|
* 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 "ipega_controller.hpp"
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams::controller {
|
|
|
|
|
2020-09-04 15:03:42 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const constexpr float stick_scale_factor = float(UINT12_MAX) / UINT8_MAX;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-03-30 08:27:24 +00:00
|
|
|
void IpegaController::ProcessInputData(const bluetooth::HidReport *report) {
|
2020-10-03 15:22:21 +00:00
|
|
|
auto ipega_report = reinterpret_cast<const IpegaReportData *>(&report->data);
|
2020-09-02 23:03:37 +00:00
|
|
|
|
|
|
|
switch(ipega_report->id) {
|
2020-09-04 15:03:42 +00:00
|
|
|
case 0x02:
|
2022-03-30 08:27:24 +00:00
|
|
|
this->MapInputReport0x02(ipega_report); break;
|
2020-09-04 15:03:42 +00:00
|
|
|
case 0x07:
|
2022-03-30 08:27:24 +00:00
|
|
|
this->MapInputReport0x07(ipega_report); break;
|
2020-09-02 23:03:37 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-30 08:27:24 +00:00
|
|
|
void IpegaController::MapInputReport0x02(const IpegaReportData *src) {
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.home = src->input0x02.home;
|
2020-09-04 15:03:42 +00:00
|
|
|
}
|
|
|
|
|
2022-03-30 08:27:24 +00:00
|
|
|
void IpegaController::MapInputReport0x07(const IpegaReportData *src) {
|
2021-06-20 20:39:28 +00:00
|
|
|
m_left_stick.SetData(
|
2020-09-04 15:03:42 +00:00
|
|
|
static_cast<uint16_t>(stick_scale_factor * src->input0x07.left_stick.x) & 0xfff,
|
|
|
|
static_cast<uint16_t>(stick_scale_factor * (UINT8_MAX - src->input0x07.left_stick.y)) & 0xfff
|
|
|
|
);
|
2021-06-20 20:39:28 +00:00
|
|
|
m_right_stick.SetData(
|
2020-09-04 15:03:42 +00:00
|
|
|
static_cast<uint16_t>(stick_scale_factor * src->input0x07.right_stick.x) & 0xfff,
|
|
|
|
static_cast<uint16_t>(stick_scale_factor * (UINT8_MAX - src->input0x07.right_stick.y)) & 0xfff
|
|
|
|
);
|
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.dpad_down = (src->input0x07.buttons.dpad == IpegaDPad_S) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_SE) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_SW);
|
|
|
|
m_buttons.dpad_up = (src->input0x07.buttons.dpad == IpegaDPad_N) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_NE) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_NW);
|
|
|
|
m_buttons.dpad_right = (src->input0x07.buttons.dpad == IpegaDPad_E) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_NE) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_SE);
|
|
|
|
m_buttons.dpad_left = (src->input0x07.buttons.dpad == IpegaDPad_W) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_NW) ||
|
|
|
|
(src->input0x07.buttons.dpad == IpegaDPad_SW);
|
2020-09-04 15:03:42 +00:00
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.A = src->input0x07.buttons.B;
|
|
|
|
m_buttons.B = src->input0x07.buttons.A;
|
|
|
|
m_buttons.X = src->input0x07.buttons.Y;
|
|
|
|
m_buttons.Y = src->input0x07.buttons.X;
|
2020-09-04 15:03:42 +00:00
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.R = src->input0x07.buttons.RB;
|
|
|
|
m_buttons.ZR = src->input0x07.buttons.RT;
|
|
|
|
m_buttons.L = src->input0x07.buttons.LB;
|
|
|
|
m_buttons.ZL = src->input0x07.buttons.LT;
|
2020-09-04 15:03:42 +00:00
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
m_buttons.minus = src->input0x07.buttons.view;
|
|
|
|
m_buttons.plus = src->input0x07.buttons.menu;
|
2020-09-04 15:03:42 +00:00
|
|
|
|
2022-02-07 11:10:46 +00:00
|
|
|
m_buttons.lstick_press = src->input0x07.buttons.lstick_press | src->input0x07.buttons.L3_g910;
|
|
|
|
m_buttons.rstick_press = src->input0x07.buttons.rstick_press | src->input0x07.buttons.R3_g910;
|
2020-09-04 15:03:42 +00:00
|
|
|
}
|
|
|
|
|
2020-09-02 23:03:37 +00:00
|
|
|
}
|