diff options
| author | Anthony Serna <Helios747@users.noreply.github.com> | 2016-06-22 09:34:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-22 09:34:17 -0500 |
| commit | 1746be3b2afa67fdc8c613b0ca64cf781cdb4658 (patch) | |
| tree | 695b830fca452d1b818fd70b821428bdfe2cf7f6 /Source/Core/InputCommon/InputConfig.cpp | |
| parent | 3b5c30b4f48229085cbc1a862d6ea1b205ea06f0 (diff) | |
| parent | 2ec3a24e4ee50edc612dd6a116f12428284eb24c (diff) | |
Merge pull request #3916 from phire/totallyAwesomeBranch
analytics: Collect less data about controllers.
Diffstat (limited to 'Source/Core/InputCommon/InputConfig.cpp')
| -rw-r--r-- | Source/Core/InputCommon/InputConfig.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/InputConfig.cpp b/Source/Core/InputCommon/InputConfig.cpp index f4a5900b96..58d46b92b6 100644 --- a/Source/Core/InputCommon/InputConfig.cpp +++ b/Source/Core/InputCommon/InputConfig.cpp @@ -117,3 +117,17 @@ bool InputConfig::ControllersNeedToBeCreated() const { return m_controllers.empty(); } + +bool InputConfig::IsControllerControlledByGamepadDevice(int index) const +{ + if (static_cast<size_t>(index) >= m_controllers.size()) + return false; + + const auto& controller = m_controllers.at(index).get()->default_device; + + // Filter out anything which obviously not a gamepad + return !((controller.source == "Keyboard") // OSX Keyboard/Mouse + || (controller.source == "XInput2") // Linux and BSD Keyboard/Mouse + || (controller.source == "Android" && controller.name == "Touchscreen") // Android Touchscreen + || (controller.source == "DInput" && controller.name == "Keyboard Mouse")); // Windows Keyboard/Mouse +} |
