1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 13:07:24 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/KeyCounterController.cs
2023-06-26 16:32:19 +09:00

40 lines
1.2 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;
using System.Collections.Generic;
using osu.Framework.Bindables;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Screens.Play.HUD
{
public partial class KeyCounterController : CompositeComponent
{
public readonly Bindable<bool> IsCounting = new BindableBool(true);
public event Action<InputTrigger>? OnNewTrigger;
private readonly Container<InputTrigger> triggers;
public IReadOnlyList<InputTrigger> Triggers => triggers;
public KeyCounterController()
{
InternalChild = triggers = new Container<InputTrigger>();
}
public void Add(InputTrigger trigger)
{
triggers.Add(trigger);
trigger.IsCounting.BindTo(IsCounting);
OnNewTrigger?.Invoke(trigger);
}
public void AddRange(IEnumerable<InputTrigger> inputTriggers) => inputTriggers.ForEach(Add);
public override bool HandleNonPositionalInput => true;
public override bool HandlePositionalInput => true;
}
}