2020-08-25 19:23:38 +00:00
|
|
|
/*
|
2021-01-26 03:03:26 +00:00
|
|
|
* Copyright (c) 2020-2021 ndeadly
|
2020-08-25 19:23:38 +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-25 19:23:38 +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-25 19:23:38 +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/>.
|
|
|
|
*/
|
2020-08-26 18:52:47 +00:00
|
|
|
#include "switch_controller.hpp"
|
2021-10-27 22:22:55 +00:00
|
|
|
#include "../utils.hpp"
|
2022-03-24 08:04:58 +00:00
|
|
|
#include "../mcmitm_config.hpp"
|
2021-10-27 22:22:55 +00:00
|
|
|
#include <string>
|
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
|
|
|
|
2020-10-18 21:38:00 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const uint8_t led_player_mappings[] = {
|
|
|
|
SwitchPlayerNumber_Unknown, //0000
|
|
|
|
SwitchPlayerNumber_One, //0001
|
|
|
|
SwitchPlayerNumber_Unknown, //0010
|
|
|
|
SwitchPlayerNumber_Two, //0011
|
|
|
|
SwitchPlayerNumber_Unknown, //0100
|
|
|
|
SwitchPlayerNumber_Six, //0101
|
|
|
|
SwitchPlayerNumber_Eight, //0110
|
|
|
|
SwitchPlayerNumber_Three, //0111
|
|
|
|
SwitchPlayerNumber_One, //1000
|
|
|
|
SwitchPlayerNumber_Five, //1001
|
|
|
|
SwitchPlayerNumber_Six, //1010
|
|
|
|
SwitchPlayerNumber_Seven, //1011
|
|
|
|
SwitchPlayerNumber_Two, //1100
|
|
|
|
SwitchPlayerNumber_Seven, //1101
|
|
|
|
SwitchPlayerNumber_Three, //1110
|
|
|
|
SwitchPlayerNumber_Four, //1111
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Result LedsMaskToPlayerNumber(uint8_t led_mask, uint8_t *player_number) {
|
|
|
|
*player_number = led_player_mappings[led_mask & 0xf];
|
|
|
|
if (*player_number == SwitchPlayerNumber_Unknown)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2021-10-27 22:22:55 +00:00
|
|
|
std::string GetControllerDirectory(const bluetooth::Address *address) {
|
|
|
|
char path[0x100];
|
|
|
|
util::SNPrintf(path, sizeof(path), "sdmc:/config/MissionControl/controllers/%02x%02x%02x%02x%02x%02x",
|
|
|
|
address->address[0],
|
|
|
|
address->address[1],
|
|
|
|
address->address[2],
|
|
|
|
address->address[3],
|
|
|
|
address->address[4],
|
|
|
|
address->address[5]
|
|
|
|
);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
Result SwitchController::Initialize(void) {
|
|
|
|
if (this->HasSetTsiDisableFlag())
|
|
|
|
m_settsi_supported = false;
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SwitchController::HasSetTsiDisableFlag(void) {
|
|
|
|
std::string flag_file = GetControllerDirectory(&m_address) + "/settsi_disable.flag";
|
|
|
|
|
|
|
|
bool file_exists;
|
|
|
|
if (R_SUCCEEDED(fs::HasFile(&file_exists, flag_file.c_str()))) {
|
|
|
|
return file_exists;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-26 18:52:47 +00:00
|
|
|
Result SwitchController::HandleIncomingReport(const bluetooth::HidReport *report) {
|
2021-11-01 19:26:46 +00:00
|
|
|
m_input_report.size = report->size;
|
|
|
|
std::memcpy(m_input_report.data, report->data, report->size);
|
2021-02-25 23:57:05 +00:00
|
|
|
|
2021-11-01 19:26:46 +00:00
|
|
|
auto switch_report = reinterpret_cast<SwitchReportData *>(m_input_report.data);
|
2021-02-26 00:08:15 +00:00
|
|
|
if (switch_report->id == 0x30) {
|
|
|
|
this->ApplyButtonCombos(&switch_report->input0x30.buttons);
|
2022-03-24 08:04:58 +00:00
|
|
|
} else if (switch_report->id == 0x21) {
|
|
|
|
auto response = reinterpret_cast<SwitchSubcommandResponse *>(&switch_report->input0x21.response);
|
|
|
|
if (response->id == SubCmd_SpiFlashRead) {
|
|
|
|
if (response->data.spi_flash_read.address == 0x6050) {
|
|
|
|
if (ams::mitm::GetSystemLanguage() == 10) {
|
|
|
|
uint8_t data[] = {0xff, 0xd7, 0x00, 0x00, 0x57, 0xb7, 0x00, 0x57, 0xb7, 0x00, 0x57, 0xb7};
|
|
|
|
std::memcpy(response->data.spi_flash_read.data, data, sizeof(data));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-26 00:08:15 +00:00
|
|
|
}
|
|
|
|
|
2021-09-07 22:05:20 +00:00
|
|
|
return bluetooth::hid::report::WriteHidDataReport(&m_address, &m_input_report);
|
2020-07-27 17:42:40 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 18:52:47 +00:00
|
|
|
Result SwitchController::HandleOutgoingReport(const bluetooth::HidReport *report) {
|
2020-08-25 00:05:19 +00:00
|
|
|
return bluetooth::hid::report::SendHidReport(&m_address, report);
|
2020-07-11 18:26:55 +00:00
|
|
|
}
|
2020-06-02 21:24:40 +00:00
|
|
|
|
2021-09-07 22:05:20 +00:00
|
|
|
Result SwitchController::HandleSetReport(uint32_t status) {
|
|
|
|
return bluetooth::hid::report::WriteHidSetReport(&m_address, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
Result SwitchController::HandleGetReport(const bluetooth::HidReport *report) {
|
|
|
|
return bluetooth::hid::report::WriteHidGetReport(&m_address, report);
|
|
|
|
}
|
|
|
|
|
2021-02-26 00:08:15 +00:00
|
|
|
void SwitchController::ApplyButtonCombos(SwitchButtonData *buttons) {
|
|
|
|
// Home combo = MINUS + DPAD_DOWN
|
|
|
|
if (buttons->minus && buttons->dpad_down) {
|
|
|
|
buttons->home = 1;
|
|
|
|
buttons->minus = 0;
|
|
|
|
buttons->dpad_down = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Capture combo = MINUS + DPAD_UP
|
|
|
|
if (buttons->minus && buttons->dpad_up) {
|
|
|
|
buttons->capture = 1;
|
|
|
|
buttons->minus = 0;
|
|
|
|
buttons->dpad_up = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|