summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2022-06-28 02:43:30 +0200
committerGitHub <noreply@github.com>2022-06-28 02:43:30 +0200
commite8965c63e41871538a97630bfdd628119fec6aca (patch)
treea1866071a5a83301e451112ae4525119e2e56f02 /Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp
parente18053d3075dd010a3a9db80d1b29b99cf7b69da (diff)
parent4c409411edb2957a0f6505aaf6c93e5c6c71f896 (diff)
Merge pull request #10682 from jordan-woyak/gate-size-setting
ControllerEmu: Allow changing the target gate radius of octagon sticks.
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp
index aaabfa5b17..539e02b449 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp
@@ -65,9 +65,19 @@ OctagonAnalogStick::OctagonAnalogStick(const char* name_, ControlState gate_radi
OctagonAnalogStick::OctagonAnalogStick(const char* name_, const char* ui_name_,
ControlState gate_radius)
- : AnalogStick(name_, ui_name_, std::make_unique<ControllerEmu::OctagonStickGate>(gate_radius))
+ : AnalogStick(name_, ui_name_, std::make_unique<ControllerEmu::OctagonStickGate>(1.0))
{
AddVirtualNotchSetting(&m_virtual_notch_setting, 45);
+
+ AddSetting(
+ &m_gate_size_setting,
+ {_trans("Gate Size"),
+ // i18n: The percent symbol.
+ _trans("%"),
+ // i18n: Refers to plastic shell of game controller (stick gate) that limits stick movements.
+ _trans("Adjusts target radius of simulated stick gate."), nullptr,
+ SettingVisibility::Advanced},
+ gate_radius * 100, 0.01, 100);
}
ControlState OctagonAnalogStick::GetVirtualNotchSize() const
@@ -75,4 +85,9 @@ ControlState OctagonAnalogStick::GetVirtualNotchSize() const
return m_virtual_notch_setting.GetValue() * MathUtil::TAU / 360;
}
+ControlState OctagonAnalogStick::GetGateRadiusAtAngle(double ang) const
+{
+ return AnalogStick::GetGateRadiusAtAngle(ang) * m_gate_size_setting.GetValue() / 100;
+}
+
} // namespace ControllerEmu