mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 00:27:25 +08:00
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Framework.Input.Events;
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
{
|
|
public partial class KeyCounterActionTrigger<T> : InputTrigger, IKeyBindingHandler<T>
|
|
where T : struct
|
|
{
|
|
public T Action { get; }
|
|
|
|
public KeyCounterActionTrigger(T action)
|
|
: base($"B{(int)(object)action + 1}")
|
|
{
|
|
Action = action;
|
|
}
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<T> e)
|
|
{
|
|
if (!EqualityComparer<T>.Default.Equals(e.Action, Action))
|
|
return false;
|
|
|
|
Activate(Clock.Rate >= 0);
|
|
return false;
|
|
}
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<T> e)
|
|
{
|
|
if (!EqualityComparer<T>.Default.Equals(e.Action, Action))
|
|
return;
|
|
|
|
Deactivate(Clock.Rate >= 0);
|
|
}
|
|
}
|
|
}
|