summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControlGroup
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2019-01-16 21:33:05 +0100
committerGitHub <noreply@github.com>2019-01-16 21:33:05 +0100
commite19ee2ad4f8159a9e8f630c8ebc319c748527da8 (patch)
tree4d827715af1bac19b0aa3fdbbf34a5d95bc3e5de /Source/Core/InputCommon/ControllerEmu/ControlGroup
parent3892c3ac481cdde5c9631ba0c8845660c7a95586 (diff)
parentdf43fd94725ee1abda8eb0c69efcd116c48db399 (diff)
Merge pull request #7664 from jordan-woyak/kill-button-threshold
ControllerEmu: Killed the button group threshold setting.
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp2
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.h4
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/ModifySettingsButton.cpp6
3 files changed, 7 insertions, 5 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
index e51d4f3711..df6b06a7be 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
@@ -19,6 +19,6 @@ Buttons::Buttons(const std::string& name_) : Buttons(name_, name_)
Buttons::Buttons(const std::string& ini_name, const std::string& group_name)
: ControlGroup(ini_name, group_name, GroupType::Buttons)
{
- numeric_settings.emplace_back(std::make_unique<NumericSetting>(_trans("Threshold"), 0.5));
}
+
} // namespace ControllerEmu
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.h b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.h
index 14621f859a..c2311415e5 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.h
+++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.h
@@ -24,11 +24,13 @@ public:
{
for (auto& control : controls)
{
- if (control->control_ref->State() > numeric_settings[0]->GetValue()) // threshold
+ if (control->control_ref->State() > ACTIVATION_THRESHOLD)
*buttons |= *bitmasks;
bitmasks++;
}
}
+
+ static constexpr ControlState ACTIVATION_THRESHOLD = 0.5;
};
} // namespace ControllerEmu
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/ModifySettingsButton.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/ModifySettingsButton.cpp
index d4e8bfa024..83e2186d81 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/ModifySettingsButton.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/ModifySettingsButton.cpp
@@ -41,14 +41,14 @@ void ModifySettingsButton::GetState()
if (!associated_settings_toggle[i])
{
// not toggled
- associated_settings[i] = state > numeric_settings[0]->GetValue();
+ associated_settings[i] = state > ACTIVATION_THRESHOLD;
}
else
{
// toggle (loading savestates does not en-/disable toggle)
// after we passed the threshold, we en-/disable. but after that, we don't change it
// anymore
- if (!threshold_exceeded[i] && state > numeric_settings[0]->GetValue())
+ if (!threshold_exceeded[i] && state > ACTIVATION_THRESHOLD)
{
associated_settings[i] = !associated_settings[i];
@@ -60,7 +60,7 @@ void ModifySettingsButton::GetState()
threshold_exceeded[i] = true;
}
- if (state < numeric_settings[0]->GetValue())
+ if (state < ACTIVATION_THRESHOLD)
threshold_exceeded[i] = false;
}
}