Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9674 from Filoppi/fix_hotkey_suppresion_crash
Fix hotkey suppression crash
  • Loading branch information
jordan-woyak committed Apr 28, 2021
2 parents 2030159 + 799a368 commit 1daefeb
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions Source/Core/InputCommon/ControlReference/ExpressionParser.cpp
Expand Up @@ -64,7 +64,7 @@ class HotkeySuppressions
void RemoveSuppression(Device::Input* modifier, Device::Input* final_input)
{
auto it = m_suppressions.find({final_input, modifier});
if ((--it->second) == 0)
if (it != m_suppressions.end() && (--it->second) == 0)
m_suppressions.erase(it);
}

Expand Down Expand Up @@ -303,7 +303,7 @@ bool HotkeySuppressions::IsSuppressedIgnoringModifiers(Device::Input* input,

// We need to ignore L_Ctrl R_Ctrl when supplied Ctrl and vice-versa.
const auto is_same_modifier = [](Device::Input* i1, Device::Input* i2) {
return i1 == i2 || i1->IsChild(i2) || i2->IsChild(i1);
return i1 && i2 && (i1 == i2 || i1->IsChild(i2) || i2->IsChild(i1));
};

return std::any_of(it, it_end, [&](auto& s) {
Expand All @@ -317,7 +317,13 @@ HotkeySuppressions::MakeSuppressor(const Modifiers* modifiers,
const std::unique_ptr<ControlExpression>* final_input)
{
for (auto& modifier : *modifiers)
++m_suppressions[{(*final_input)->GetInput(), modifier->GetInput()}];
{
// Inputs might be null, don't add nullptr to the map
if ((*final_input)->GetInput() && modifier->GetInput())
{
++m_suppressions[{(*final_input)->GetInput(), modifier->GetInput()}];
}
}

return Suppressor(std::make_unique<std::function<void()>>([this, modifiers, final_input]() {
for (auto& modifier : *modifiers)
Expand Down Expand Up @@ -484,6 +490,7 @@ class HotkeyExpression : public Expression

ControlState GetValue() const override
{
// True if we have no modifiers
const bool modifiers_pressed = std::all_of(m_modifiers.begin(), m_modifiers.end(),
[](const std::unique_ptr<ControlExpression>& input) {
return input->GetValue() > CONDITION_THRESHOLD;
Expand All @@ -497,7 +504,7 @@ class HotkeyExpression : public Expression
const bool is_suppressed = s_hotkey_suppressions.IsSuppressedIgnoringModifiers(
m_final_input->GetInput(), m_modifiers);

if (final_input_state < CONDITION_THRESHOLD)
if (final_input_state <= CONDITION_THRESHOLD)
m_is_blocked = false;

// If some other hotkey suppressed us, require a release of final input to be ready again.
Expand Down Expand Up @@ -540,13 +547,13 @@ class HotkeyExpression : public Expression

// We must update our suppression with valid pointers.
if (m_suppressor)
EnableSuppression();
EnableSuppression(true);
}

private:
void EnableSuppression() const
void EnableSuppression(bool force = false) const
{
if (!m_suppressor)
if (!m_suppressor || force)
m_suppressor = s_hotkey_suppressions.MakeSuppressor(&m_modifiers, &m_final_input);
}

Expand Down

0 comments on commit 1daefeb

Please sign in to comment.