2020-08-25 19:23:38 +00:00
|
|
|
/*
|
2020-08-26 22:50:34 +00:00
|
|
|
* Copyright (c) 2020 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"
|
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();
|
|
|
|
}
|
|
|
|
|
2020-08-26 18:52:47 +00:00
|
|
|
Result SwitchController::HandleIncomingReport(const bluetooth::HidReport *report) {
|
2020-08-24 20:47:27 +00:00
|
|
|
return bluetooth::hid::report::WriteHidReportBuffer(&m_address, 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
|
|
|
|
|
|
|
}
|