mirror of
https://github.com/osukey/osukey.git
synced 2025-06-03 03:47:24 +09:00
39 lines
973 B
C#
39 lines
973 B
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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public partial class KeyCounterActionTrigger<T> : KeyCounter.InputTrigger
|
|
where T : struct
|
|
{
|
|
public T Action { get; }
|
|
|
|
public KeyCounterActionTrigger(T action)
|
|
: base($"B{(int)(object)action + 1}")
|
|
{
|
|
Action = action;
|
|
}
|
|
|
|
public bool OnPressed(T action, bool forwards)
|
|
{
|
|
if (!EqualityComparer<T>.Default.Equals(action, Action))
|
|
return false;
|
|
|
|
Light(forwards);
|
|
return false;
|
|
}
|
|
|
|
public void OnReleased(T action, bool forwards)
|
|
{
|
|
if (!EqualityComparer<T>.Default.Equals(action, Action))
|
|
return;
|
|
|
|
Unlight(forwards);
|
|
}
|
|
}
|
|
}
|