mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 12:53:17 +00:00
171 lines
6.1 KiB
C++
171 lines
6.1 KiB
C++
#include <functional>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <queue>
|
|
#include <vector>
|
|
#include <cstring>
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "controllermanager.hpp"
|
|
#include "controllers/switchcontroller.hpp"
|
|
#include "controllers/wiimote.hpp"
|
|
#include "controllers/wiiupro.hpp"
|
|
#include "controllers/dualshock4.hpp"
|
|
#include "controllers/xboxone.hpp"
|
|
|
|
#include "btdrv_mitm_logging.hpp"
|
|
|
|
namespace ams::mitm::btdrv {
|
|
|
|
namespace {
|
|
|
|
std::priority_queue<int, std::vector<int>, std::greater<int>> g_uniqueIds;
|
|
|
|
os::Mutex g_controllerLock(false);
|
|
std::vector<std::unique_ptr<controller::BluetoothController>> g_controllers;
|
|
|
|
}
|
|
|
|
void initUniqueIds(void) {
|
|
for (int n: {1, 2, 3, 4, 5, 6, 7, 8}) {
|
|
g_uniqueIds.push(n);
|
|
}
|
|
}
|
|
|
|
bool uniqueIdAvailable(void) {
|
|
return !g_uniqueIds.empty();
|
|
}
|
|
|
|
int acquireUniqueId(void) {
|
|
if (uniqueIdAvailable()) {
|
|
auto id = g_uniqueIds.top();
|
|
g_uniqueIds.pop();
|
|
return id;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void releaseUniqueId(int id) {
|
|
if (id > 0 && id <= 4)
|
|
g_uniqueIds.push(id);
|
|
}
|
|
|
|
bool IsValidSwitchControllerName(const char *name) {
|
|
return std::strncmp(name, "Joy-Con (L)", sizeof(BluetoothName)) == 0 ||
|
|
std::strncmp(name, "Joy-Con (R)", sizeof(BluetoothName)) == 0 ||
|
|
std::strncmp(name, "Pro Controller", sizeof(BluetoothName)) == 0 ||
|
|
std::strncmp(name, "Lic Pro Controller", sizeof(BluetoothName)) == 0 ||
|
|
std::strncmp(name, "NES Controller", sizeof(BluetoothName)) == 0 ||
|
|
std::strncmp(name, "HVC Controller", sizeof(BluetoothName)) == 0 ||
|
|
std::strncmp(name, "SNES Controller", sizeof(BluetoothName)) == 0 ||
|
|
std::strncmp(name, "NintendoGamepad", sizeof(BluetoothName)) == 0 ;
|
|
}
|
|
|
|
controller::ControllerType identifyController(uint16_t vid, uint16_t pid) {
|
|
|
|
for (auto hwId : controller::JoyconController::hardwareIds) {
|
|
if ( (vid == hwId.vid) && (pid == hwId.pid) ) {
|
|
return controller::ControllerType_Joycon;
|
|
}
|
|
}
|
|
|
|
for (auto hwId : controller::SwitchProController::hardwareIds) {
|
|
if ( (vid == hwId.vid) && (pid == hwId.pid) ) {
|
|
return controller::ControllerType_SwitchPro;
|
|
}
|
|
}
|
|
|
|
for (auto hwId : controller::WiiUProController::hardwareIds) {
|
|
if ( (vid == hwId.vid) && (pid == hwId.pid) ) {
|
|
return controller::ControllerType_WiiUPro;
|
|
}
|
|
}
|
|
|
|
for (auto hwId : controller::WiimoteController::hardwareIds) {
|
|
if ( (vid == hwId.vid) && (pid == hwId.pid) ) {
|
|
return controller::ControllerType_Wiimote;
|
|
}
|
|
}
|
|
|
|
for (auto hwId : controller::Dualshock4Controller::hardwareIds) {
|
|
if ( (vid == hwId.vid) && (pid == hwId.pid) ) {
|
|
return controller::ControllerType_Dualshock4;
|
|
}
|
|
}
|
|
|
|
for (auto hwId : controller::XboxOneController::hardwareIds) {
|
|
if ( (vid == hwId.vid) && (pid == hwId.pid) ) {
|
|
return controller::ControllerType_XboxOne;
|
|
}
|
|
}
|
|
|
|
return controller::ControllerType_Unknown;
|
|
}
|
|
|
|
controller::BluetoothController *locateController(const BluetoothAddress *address) {
|
|
std::scoped_lock lk(g_controllerLock);
|
|
for (auto it = g_controllers.begin(); it < g_controllers.end(); ++it) {
|
|
if (controller::bdcmp(&(*it)->address(), address)) {
|
|
return (*it).get();
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
void attachDeviceHandler(const BluetoothAddress *address) {
|
|
std::scoped_lock lk(g_controllerLock);
|
|
|
|
// Retrieve information about paired device
|
|
BluetoothDevicesSettings device;
|
|
R_ABORT_UNLESS(btdrvGetPairedDeviceInfo(address, &device));
|
|
|
|
switch (identifyController(device.vid, device.pid)) {
|
|
case controller::ControllerType_Joycon:
|
|
g_controllers.push_back(std::make_unique<controller::JoyconController>(address));
|
|
BTDRV_LOG_FMT("[+] Joycon controller connected");
|
|
break;
|
|
case controller::ControllerType_SwitchPro:
|
|
g_controllers.push_back(std::make_unique<controller::SwitchProController>(address));
|
|
BTDRV_LOG_FMT("[+] Switch pro controller connected");
|
|
break;
|
|
case controller::ControllerType_Wiimote:
|
|
g_controllers.push_back(std::make_unique<controller::WiimoteController>(address));
|
|
BTDRV_LOG_FMT("[+] Wiimote controller connected");
|
|
break;
|
|
case controller::ControllerType_WiiUPro:
|
|
g_controllers.push_back(std::make_unique<controller::WiiUProController>(address));
|
|
BTDRV_LOG_FMT("[+] Wii U pro controller connected");
|
|
break;
|
|
case controller::ControllerType_Dualshock4:
|
|
g_controllers.push_back(std::make_unique<controller::Dualshock4Controller>(address));
|
|
BTDRV_LOG_FMT("[+] Dualshock4 controller connected");
|
|
break;
|
|
case controller::ControllerType_XboxOne:
|
|
g_controllers.push_back(std::make_unique<controller::XboxOneController>(address));
|
|
BTDRV_LOG_FMT("[+] Xbox one controller connected");
|
|
break;
|
|
default:
|
|
BTDRV_LOG_FMT("[?] Unknown controller [%04x:%04x | %s]", device.vid, device.pid, device.name);
|
|
// Disconnect unknown controller
|
|
//btdrvCloseHidConnection(address);
|
|
//btdrvRemoveBond(address);
|
|
return;
|
|
}
|
|
|
|
g_controllers.back()->initialize();
|
|
}
|
|
|
|
void removeDeviceHandler(const BluetoothAddress *address) {
|
|
std::scoped_lock lk(g_controllerLock);
|
|
|
|
for (auto it = g_controllers.begin(); it < g_controllers.end(); ++it) {
|
|
if (controller::bdcmp(&(*it)->address(), address)) {
|
|
g_controllers.erase(it);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|