|
|
@ -318,6 +318,14 @@ void SDLDriver::InitJoystick(int joystick_index) {
|
|
|
|
|
|
|
|
|
|
|
|
const auto guid = GetGUID(sdl_joystick);
|
|
|
|
const auto guid = GetGUID(sdl_joystick);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Settings::values.enable_joycon_driver) {
|
|
|
|
|
|
|
|
if (guid.uuid[5] == 0x05 && guid.uuid[4] == 0x7e) {
|
|
|
|
|
|
|
|
LOG_ERROR(Input, "Device black listed {}", joystick_index);
|
|
|
|
|
|
|
|
SDL_JoystickClose(sdl_joystick);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::scoped_lock lock{joystick_map_mutex};
|
|
|
|
std::scoped_lock lock{joystick_map_mutex};
|
|
|
|
if (joystick_map.find(guid) == joystick_map.end()) {
|
|
|
|
if (joystick_map.find(guid) == joystick_map.end()) {
|
|
|
|
auto joystick = std::make_shared<SDLJoystick>(guid, 0, sdl_joystick, sdl_gamecontroller);
|
|
|
|
auto joystick = std::make_shared<SDLJoystick>(guid, 0, sdl_joystick, sdl_gamecontroller);
|
|
|
@ -440,9 +448,14 @@ SDLDriver::SDLDriver(std::string input_engine_) : InputEngine(std::move(input_en
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE, "1");
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE, "1");
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS, "1");
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS, "1");
|
|
|
|
|
|
|
|
|
|
|
|
// Use hidapi driver for joycons. This will allow joycons to be detected as a GameController and
|
|
|
|
// Disable hidapi drivers for switch controllers when the custom joycon driver is enabled
|
|
|
|
// not a generic one
|
|
|
|
if (Settings::values.enable_joycon_driver) {
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS, "1");
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS, "0");
|
|
|
|
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_SWITCH, "0");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS, "1");
|
|
|
|
|
|
|
|
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_SWITCH, "1");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Disable hidapi driver for xbox. Already default on Windows, this causes conflict with native
|
|
|
|
// Disable hidapi driver for xbox. Already default on Windows, this causes conflict with native
|
|
|
|
// driver on Linux.
|
|
|
|
// driver on Linux.
|
|
|
|