mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
added repeat-ignoring versions of IsKeyPressed and IsGamepadButtonPressed to InputHandler
This commit is contained in:
parent
3384f48623
commit
014b8f90df
1 changed files with 25 additions and 0 deletions
|
@ -286,6 +286,7 @@ namespace MLEM.Input {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns whether the given key is considered pressed.
|
/// Returns whether the given key is considered pressed.
|
||||||
/// A key is considered pressed if it was not down the last update call, but is down the current update call.
|
/// A key is considered pressed if it was not down the last update call, but is down the current update call.
|
||||||
|
/// If <see cref="HandleKeyboardRepeats"/> is true, this method will also return true to signify a key repeat.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="key">The key to query</param>
|
/// <param name="key">The key to query</param>
|
||||||
/// <returns>If the key is pressed</returns>
|
/// <returns>If the key is pressed</returns>
|
||||||
|
@ -293,6 +294,17 @@ namespace MLEM.Input {
|
||||||
// if the queried key is the held key and a repeat should be triggered, return true
|
// if the queried key is the held key and a repeat should be triggered, return true
|
||||||
if (this.HandleKeyboardRepeats && key == this.heldKey && this.triggerKeyRepeat)
|
if (this.HandleKeyboardRepeats && key == this.heldKey && this.triggerKeyRepeat)
|
||||||
return true;
|
return true;
|
||||||
|
return this.IsKeyPressedIgnoreRepeats(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns whether the given key is considered pressed.
|
||||||
|
/// This has the same behavior as <see cref="IsKeyPressed"/>, but ignores keyboard repeat events.
|
||||||
|
/// If <see cref="HandleKeyboardRepeats"/> is false, this method does the same as <see cref="IsKeyPressed"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key">The key to query</param>
|
||||||
|
/// <returns>If the key is pressed</returns>
|
||||||
|
public bool IsKeyPressedIgnoreRepeats(Keys key) {
|
||||||
return this.WasKeyUp(key) && this.IsKeyDown(key);
|
return this.WasKeyUp(key) && this.IsKeyDown(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -398,6 +410,7 @@ namespace MLEM.Input {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns whether the given gamepad button on the given index is considered pressed.
|
/// Returns whether the given gamepad button on the given index is considered pressed.
|
||||||
/// A gamepad button is considered pressed if it was down the last update call, and is up the current update call.
|
/// A gamepad button is considered pressed if it was down the last update call, and is up the current update call.
|
||||||
|
/// If <see cref="HandleGamepadRepeats"/> is true, this method will also return true to signify a gamepad button repeat.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="button">The button to query</param>
|
/// <param name="button">The button to query</param>
|
||||||
/// <param name="index">The zero-based index of the gamepad, or -1 for any gamepad</param>
|
/// <param name="index">The zero-based index of the gamepad, or -1 for any gamepad</param>
|
||||||
|
@ -412,6 +425,18 @@ namespace MLEM.Input {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return this.IsGamepadButtonPressedIgnoreRepeats(button, index);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns whether the given key is considered pressed.
|
||||||
|
/// This has the same behavior as <see cref="IsGamepadButtonPressed"/>, but ignores gamepad repeat events.
|
||||||
|
/// If <see cref="HandleGamepadRepeats"/> is false, this method does the same as <see cref="IsGamepadButtonPressed"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="button">The button to query</param>
|
||||||
|
/// <param name="index">The zero-based index of the gamepad, or -1 for any gamepad</param>
|
||||||
|
/// <returns>Whether the given button is pressed</returns>
|
||||||
|
public bool IsGamepadButtonPressedIgnoreRepeats(Buttons button, int index = -1) {
|
||||||
return this.WasGamepadButtonUp(button, index) && this.IsGamepadButtonDown(button, index);
|
return this.WasGamepadButtonUp(button, index) && this.IsGamepadButtonDown(button, index);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue