2020-08-26 18:52:47 +00:00
|
|
|
/*
|
2021-01-26 03:03:26 +00:00
|
|
|
* Copyright (c) 2020-2021 ndeadly
|
2020-08-26 18:52:47 +00:00
|
|
|
*
|
2020-08-26 22:50:34 +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-08-26 18:52:47 +00:00
|
|
|
*
|
2020-08-26 22:50:34 +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-08-26 18:52:47 +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 "emulated_switch_controller.hpp"
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace ams::controller {
|
|
|
|
|
2020-10-03 15:22:21 +00:00
|
|
|
EmulatedSwitchController::EmulatedSwitchController(const bluetooth::Address *address)
|
2020-10-04 15:16:07 +00:00
|
|
|
: SwitchController(address)
|
2020-10-03 15:22:21 +00:00
|
|
|
, m_charging(false)
|
|
|
|
, m_battery(BATTERY_MAX) {
|
2020-10-03 15:50:07 +00:00
|
|
|
this->ClearControllerState();
|
2020-10-04 15:16:07 +00:00
|
|
|
|
|
|
|
m_colours.body = {0x32, 0x32, 0x32};
|
|
|
|
m_colours.buttons = {0xe6, 0xe6, 0xe6};
|
|
|
|
m_colours.left_grip = {0x46, 0x46, 0x46};
|
|
|
|
m_colours.right_grip = {0x46, 0x46, 0x46};
|
2020-10-03 15:50:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void EmulatedSwitchController::ClearControllerState(void) {
|
2020-10-03 15:22:21 +00:00
|
|
|
std::memset(&m_buttons, 0, sizeof(m_buttons));
|
2020-11-21 20:05:50 +00:00
|
|
|
m_left_stick = this->PackStickData(STICK_ZERO, STICK_ZERO);
|
|
|
|
m_right_stick = this->PackStickData(STICK_ZERO, STICK_ZERO);
|
2020-10-03 15:22:21 +00:00
|
|
|
std::memset(&m_motion_data, 0, sizeof(m_motion_data));
|
2020-10-03 15:50:07 +00:00
|
|
|
}
|
2020-10-03 15:22:21 +00:00
|
|
|
|
2020-08-26 18:52:47 +00:00
|
|
|
Result EmulatedSwitchController::HandleIncomingReport(const bluetooth::HidReport *report) {
|
2020-10-03 15:22:21 +00:00
|
|
|
this->UpdateControllerState(report);
|
|
|
|
|
|
|
|
// Prepare Switch report
|
2020-09-26 15:47:33 +00:00
|
|
|
s_input_report.size = sizeof(SwitchInputReport0x30) + 1;
|
2020-10-12 23:28:41 +00:00
|
|
|
auto switch_report = reinterpret_cast<SwitchReportData *>(s_input_report.data);
|
2020-09-26 15:47:33 +00:00
|
|
|
switch_report->id = 0x30;
|
2020-10-03 17:01:15 +00:00
|
|
|
switch_report->input0x30.conn_info = 0;
|
|
|
|
switch_report->input0x30.battery = m_battery | m_charging;
|
|
|
|
switch_report->input0x30.buttons = m_buttons;
|
|
|
|
switch_report->input0x30.left_stick = m_left_stick;
|
|
|
|
switch_report->input0x30.right_stick = m_right_stick;
|
2020-10-03 15:22:21 +00:00
|
|
|
std::memcpy(&switch_report->input0x30.motion, &m_motion_data, sizeof(m_motion_data));
|
2020-10-04 16:26:02 +00:00
|
|
|
|
|
|
|
this->ApplyButtonCombos(&switch_report->input0x30.buttons);
|
|
|
|
|
2020-09-26 15:47:33 +00:00
|
|
|
switch_report->input0x30.timer = os::ConvertToTimeSpan(os::GetSystemTick()).GetMilliSeconds() & 0xff;
|
|
|
|
return bluetooth::hid::report::WriteHidReportBuffer(&m_address, &s_input_report);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::HandleOutgoingReport(const bluetooth::HidReport *report) {
|
|
|
|
uint8_t cmdId = report->data[0];
|
|
|
|
switch (cmdId) {
|
|
|
|
case 0x01: // Subcmd
|
|
|
|
R_TRY(this->HandleSubCmdReport(report));
|
|
|
|
break;
|
|
|
|
case 0x10: // Rumble
|
2020-09-30 21:07:23 +00:00
|
|
|
R_TRY(this->HandleRumbleReport(report));
|
|
|
|
break;
|
2020-08-26 18:52:47 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::HandleSubCmdReport(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
auto switch_report = reinterpret_cast<const SwitchReportData *>(&report->data);
|
2020-08-26 18:52:47 +00:00
|
|
|
|
2021-02-26 19:46:49 +00:00
|
|
|
switch (switch_report->output0x01.subcmd.id) {
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_RequestDeviceInfo:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdRequestDeviceInfo(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SpiFlashRead:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSpiFlashRead(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SpiFlashWrite:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSpiFlashWrite(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SpiSectorErase:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSpiSectorErase(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SetInputReportMode:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSetInputReportMode(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_TriggersElapsedTime:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdTriggersElapsedTime(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SetShipPowerState:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSetShipPowerState(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SetMcuConfig:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSetMcuConfig(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SetMcuState:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSetMcuState(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SetPlayerLeds:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdSetPlayerLeds(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_SetHomeLed:
|
2020-08-29 16:37:02 +00:00
|
|
|
R_TRY(this->SubCmdSetHomeLed(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_EnableImu:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdEnableImu(report));
|
|
|
|
break;
|
2020-09-11 20:03:41 +00:00
|
|
|
case SubCmd_EnableVibration:
|
2020-08-26 18:52:47 +00:00
|
|
|
R_TRY(this->SubCmdEnableVibration(report));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-09-30 21:07:23 +00:00
|
|
|
Result EmulatedSwitchController::HandleRumbleReport(const bluetooth::HidReport *report) {
|
|
|
|
auto report_data = reinterpret_cast<const SwitchReportData *>(report->data);
|
|
|
|
return this->SetVibration(&report_data->output0x10.left_motor, &report_data->output0x10.right_motor);
|
|
|
|
}
|
|
|
|
|
2020-08-26 18:52:47 +00:00
|
|
|
Result EmulatedSwitchController::SubCmdRequestDeviceInfo(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x82,
|
|
|
|
.id = SubCmd_RequestDeviceInfo,
|
|
|
|
.device_info = {
|
|
|
|
.fw_ver = {
|
|
|
|
.major = 0x03,
|
|
|
|
.minor = 0x48
|
|
|
|
},
|
|
|
|
.type = 0x03,
|
|
|
|
._unk0 = 0x02,
|
|
|
|
.address = m_address,
|
|
|
|
._unk1 = 0x01,
|
|
|
|
._unk2 = 0x02
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSpiFlashRead(const bluetooth::HidReport *report) {
|
|
|
|
// These are read from official Pro Controller
|
|
|
|
// @ 0x00006000: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff <= Serial
|
|
|
|
// @ 0x00006050: 32 32 32 ff ff ff ff ff ff ff ff ff <= RGB colours (body, buttons, left grip, right grip)
|
|
|
|
// @ 0x00006080: 50 fd 00 00 c6 0f 0f 30 61 ae 90 d9 d4 14 54 41 15 54 c7 79 9c 33 36 63 <= Factory Sensor and Stick device parameters
|
|
|
|
// @ 0x00006098: 0f 30 61 ae 90 d9 d4 14 54 41 15 54 c7 79 9c 33 36 63 <= Stick device parameters 2. Normally the same with 1, even in Pro Contr.
|
|
|
|
// @ 0x00008010: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff <= User Analog sticks calibration
|
|
|
|
// @ 0x0000603d: e6 a5 67 1a 58 78 50 56 60 1a f8 7f 20 c6 63 d5 15 5e ff 32 32 32 ff ff ff <= Left analog stick calibration
|
|
|
|
// @ 0x00006020: 64 ff 33 00 b8 01 00 40 00 40 00 40 17 00 d7 ff bd ff 3b 34 3b 34 3b 34 <= 6-Axis motion sensor Factory calibration
|
2020-10-04 16:26:02 +00:00
|
|
|
|
2021-02-26 19:46:49 +00:00
|
|
|
auto switch_report = reinterpret_cast<const SwitchReportData *>(&report->data);
|
|
|
|
uint32_t read_addr = switch_report->output0x01.subcmd.spi_flash_read.address;
|
|
|
|
uint8_t read_size = switch_report->output0x01.subcmd.spi_flash_read.size;
|
2020-08-26 18:52:47 +00:00
|
|
|
|
2021-02-26 19:46:49 +00:00
|
|
|
SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x90,
|
|
|
|
.id = SubCmd_SpiFlashRead,
|
|
|
|
.spi_flash_read = {
|
|
|
|
.address = read_addr,
|
|
|
|
.size = read_size
|
|
|
|
}
|
|
|
|
};
|
2020-08-26 18:52:47 +00:00
|
|
|
|
|
|
|
if (read_addr == 0x6050) {
|
2021-02-26 19:46:49 +00:00
|
|
|
std::memcpy(response.spi_flash_read.data, &m_colours, sizeof(m_colours)); // Set controller colours
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
std::memset(response.spi_flash_read.data, 0xff, read_size); // Console doesn't seem to mind if response is uninitialised data (0xff)
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 19:46:49 +00:00
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSpiFlashWrite(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_SpiFlashWrite,
|
|
|
|
.spi_flash_write = {
|
|
|
|
.status = 0x01
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSpiSectorErase(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_SpiSectorErase,
|
|
|
|
.spi_flash_write = {
|
|
|
|
.status = 0x01
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSetInputReportMode(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_SetInputReportMode
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 19:46:49 +00:00
|
|
|
Result EmulatedSwitchController::SubCmdTriggersElapsedTime(const bluetooth::HidReport *report) {
|
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x83,
|
|
|
|
.id = SubCmd_TriggersElapsedTime
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSetShipPowerState(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_SetShipPowerState,
|
|
|
|
.set_ship_power_state = {
|
|
|
|
.enabled = false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSetMcuConfig(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0xa0,
|
|
|
|
.id = SubCmd_SetMcuConfig,
|
|
|
|
.data = {0x01, 0x00, 0xff, 0x00, 0x03, 0x00, 0x05, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x5c}
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSetMcuState(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_SetMcuState
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdSetPlayerLeds(const bluetooth::HidReport *report) {
|
|
|
|
const uint8_t *subCmd = &report->data[10];
|
|
|
|
uint8_t led_mask = subCmd[1];
|
|
|
|
R_TRY(this->SetPlayerLed(led_mask));
|
|
|
|
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_SetPlayerLeds
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
2020-08-29 16:37:02 +00:00
|
|
|
Result EmulatedSwitchController::SubCmdSetHomeLed(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_SetHomeLed
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdEnableImu(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_EnableImu
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result EmulatedSwitchController::SubCmdEnableVibration(const bluetooth::HidReport *report) {
|
2021-02-26 19:46:49 +00:00
|
|
|
const SwitchSubcommandResponse response = {
|
|
|
|
.ack = 0x80,
|
|
|
|
.id = SubCmd_EnableVibration
|
|
|
|
};
|
|
|
|
|
|
|
|
return this->FakeSubCmdResponse(&response);
|
2020-08-26 18:52:47 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 19:46:49 +00:00
|
|
|
Result EmulatedSwitchController::FakeSubCmdResponse(const SwitchSubcommandResponse *response) {
|
2020-10-12 22:09:39 +00:00
|
|
|
s_input_report.size = sizeof(SwitchInputReport0x21) + 1;
|
2020-10-12 23:28:41 +00:00
|
|
|
auto report_data = reinterpret_cast<SwitchReportData *>(s_input_report.data);
|
2020-08-26 18:52:47 +00:00
|
|
|
report_data->id = 0x21;
|
|
|
|
report_data->input0x21.conn_info = 0;
|
|
|
|
report_data->input0x21.battery = m_battery | m_charging;
|
2020-10-03 17:01:15 +00:00
|
|
|
report_data->input0x21.buttons = m_buttons;
|
|
|
|
report_data->input0x21.left_stick = m_left_stick;
|
|
|
|
report_data->input0x21.right_stick = m_right_stick;
|
2020-08-26 18:52:47 +00:00
|
|
|
report_data->input0x21.vibrator = 0;
|
2021-02-26 19:46:49 +00:00
|
|
|
std::memcpy(&report_data->input0x21.response, response, sizeof(SwitchSubcommandResponse));
|
2020-08-26 18:52:47 +00:00
|
|
|
report_data->input0x21.timer = os::ConvertToTimeSpan(os::GetSystemTick()).GetMilliSeconds() & 0xff;
|
|
|
|
|
|
|
|
//Write a fake response into the report buffer
|
|
|
|
return bluetooth::hid::report::WriteHidReportBuffer(&m_address, &s_input_report);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|