Skip to content

Commit

Permalink
feat(input): add deadzone to axis
Browse files Browse the repository at this point in the history
  • Loading branch information
kuukitenshi committed Sep 27, 2024
1 parent 0244800 commit 7b0f5c2
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Handle body rotation on physics integration (#1242, **&fallenatlas**).
- Binary Serializer and Deserializer (#1306, **@RiscadoA**).
- Type Client and Type Server (#1302, **@RiscadoA**).
- Deadzone for axis (#844, **@kuukitenshi**)

### Fixed

Expand Down
12 changes: 11 additions & 1 deletion engine/include/cubos/engine/input/axis.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ namespace cubos::engine
/// @param negative Negative input combinations.
/// @param gamepadAxes Gamepad axis bindings.
InputAxis(std::vector<InputCombination> positive, std::vector<InputCombination> negative,
std::vector<core::io::GamepadAxis> gamepadAxes)
std::vector<core::io::GamepadAxis> gamepadAxes, float deadzone = 0.0F)
: mPositive(std::move(positive))
, mNegative(std::move(negative))
, mGamepadAxes(std::move(gamepadAxes))
, mDeadzone(deadzone)
{
}

Expand Down Expand Up @@ -74,11 +75,20 @@ namespace cubos::engine
/// @param value New value.
void value(float value);

/// @brief Gets the deadzone.
/// @return Deadzone.
float deadzone() const;

/// @brief Sets the deadzone.
/// @param deadzone New deadzone.
void deadzone(float deadzone);

private:
std::vector<InputCombination> mPositive;
std::vector<InputCombination> mNegative;
std::vector<core::io::GamepadAxis> mGamepadAxes;

float mValue{0.0F}; ///< Not serialized.
float mDeadzone{0.0F};
};
} // namespace cubos::engine
23 changes: 21 additions & 2 deletions engine/src/input/axis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ CUBOS_REFLECT_IMPL(cubos::engine::InputAxis)
.with(FieldsTrait{}
.withField("positive", &InputAxis::mPositive)
.withField("negative", &InputAxis::mNegative)
.withField("gamepadAxes", &InputAxis::mGamepadAxes));
.withField("gamepadAxes", &InputAxis::mGamepadAxes)
.withField("mDeadzone", &InputAxis::mDeadzone));
}

const std::vector<InputCombination>& InputAxis::positive() const
Expand Down Expand Up @@ -60,11 +61,29 @@ float InputAxis::value() const

void InputAxis::value(float value)
{
mValue = value;
mValue = std::abs(value) < mDeadzone ? 0.0F : value;

if (std::abs(mValue) > 1.0F)
{
CUBOS_WARN("Axis value out of range: {}", mValue);
mValue = mValue > 1.0F ? 1.0F : -1.0F;
}
}

float InputAxis::deadzone() const
{
return mDeadzone;
}

void InputAxis::deadzone(float deadzone)
{
if (deadzone < 0.0F || deadzone > 1.0F)
{
CUBOS_WARN("Invalid deadzone value: {}. Value must be between 0.0 and 1.0.", deadzone);
mDeadzone = deadzone > 1.0F ? 1.0F : 0.0F;
}
else
{
mDeadzone = deadzone;
}
}

0 comments on commit 7b0f5c2

Please sign in to comment.