2019-01-24 16:43:03 +08:00
|
|
|
|
// 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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-11-13 22:35:50 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
2019-09-12 14:41:53 +08:00
|
|
|
|
public class KeyCounterAction<T> : KeyCounter
|
2018-04-13 17:19:50 +08:00
|
|
|
|
where T : struct
|
|
|
|
|
{
|
|
|
|
|
public T Action { get; }
|
|
|
|
|
|
2019-02-28 12:31:40 +08:00
|
|
|
|
public KeyCounterAction(T action)
|
|
|
|
|
: base($"B{(int)(object)action + 1}")
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Action = action;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-12 14:41:53 +08:00
|
|
|
|
public bool OnPressed(T action, bool forwards)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-13 22:35:50 +08:00
|
|
|
|
if (!EqualityComparer<T>.Default.Equals(action, Action))
|
2019-09-12 14:41:53 +08:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
IsLit = true;
|
|
|
|
|
if (forwards)
|
|
|
|
|
Increment();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 12:22:34 +08:00
|
|
|
|
public void OnReleased(T action, bool forwards)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-13 22:35:50 +08:00
|
|
|
|
if (!EqualityComparer<T>.Default.Equals(action, Action))
|
2020-01-22 12:22:34 +08:00
|
|
|
|
return;
|
2019-09-12 14:41:53 +08:00
|
|
|
|
|
|
|
|
|
IsLit = false;
|
|
|
|
|
if (!forwards)
|
|
|
|
|
Decrement();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|