mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 08:37:40 +08:00
38 lines
1.5 KiB
C#
38 lines
1.5 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 osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
{
|
|
/// <summary>
|
|
/// An event trigger which can be used with <see cref="KeyCounter"/> to create visual tracking of button/key presses.
|
|
/// </summary>
|
|
public abstract partial class InputTrigger : Component
|
|
{
|
|
/// <summary>
|
|
/// Callback to invoke when the associated input has been activated.
|
|
/// </summary>
|
|
/// <param name="forwardPlayback">Whether gameplay is progressing in the forward direction time-wise.</param>
|
|
public delegate void OnActivateCallback(bool forwardPlayback);
|
|
|
|
/// <summary>
|
|
/// Callback to invoke when the associated input has been deactivated.
|
|
/// </summary>
|
|
/// <param name="forwardPlayback">Whether gameplay is progressing in the forward direction time-wise.</param>
|
|
public delegate void OnDeactivateCallback(bool forwardPlayback);
|
|
|
|
public event OnActivateCallback? OnActivate;
|
|
public event OnDeactivateCallback? OnDeactivate;
|
|
|
|
protected InputTrigger(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
protected void Activate(bool forwardPlayback = true) => OnActivate?.Invoke(forwardPlayback);
|
|
|
|
protected void Deactivate(bool forwardPlayback = true) => OnDeactivate?.Invoke(forwardPlayback);
|
|
}
|
|
}
|