diff options
| author | bunnei <bunneidev@gmail.com> | 2022-01-03 15:04:37 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-03 15:04:37 -0800 |
| commit | abbbdc2bc027ed7af236625ae8427a46df63f7e7 (patch) | |
| tree | 38f9f01b22cb2bc4cd1c012725094133b7587d22 /src/core/hid/emulated_controller.cpp | |
| parent | 05b7b177f66ae8cf5fb789363f00d96f720d86d5 (diff) | |
| parent | 7a13a515d9b10a789d20f9ec8e4e52b1112ed171 (diff) | |
Merge pull request #7664 from german77/fallback
core/hid: Add fallback to fullkey controllers
Diffstat (limited to 'src/core/hid/emulated_controller.cpp')
| -rw-r--r-- | src/core/hid/emulated_controller.cpp | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp index 2d3fce276..71fc05807 100644 --- a/src/core/hid/emulated_controller.cpp +++ b/src/core/hid/emulated_controller.cpp @@ -879,10 +879,36 @@ void EmulatedController::SetSupportedNpadStyleTag(NpadStyleTag supported_styles) if (!is_connected) { return; } - if (!IsControllerSupported()) { - LOG_ERROR(Service_HID, "Controller type {} is not supported. Disconnecting controller", - npad_type); - Disconnect(); + if (IsControllerSupported()) { + return; + } + + Disconnect(); + + // Fallback fullkey controllers to Pro controllers + if (IsControllerFullkey() && supported_style_tag.fullkey) { + LOG_WARNING(Service_HID, "Reconnecting controller type {} as Pro controller", npad_type); + SetNpadStyleIndex(NpadStyleIndex::ProController); + Connect(); + return; + } + + LOG_ERROR(Service_HID, "Controller type {} is not supported. Disconnecting controller", + npad_type); +} + +bool EmulatedController::IsControllerFullkey(bool use_temporary_value) const { + const auto type = is_configuring && use_temporary_value ? tmp_npad_type : npad_type; + switch (type) { + case NpadStyleIndex::ProController: + case NpadStyleIndex::GameCube: + case NpadStyleIndex::NES: + case NpadStyleIndex::SNES: + case NpadStyleIndex::N64: + case NpadStyleIndex::SegaGenesis: + return true; + default: + return false; } } |
