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
|
|
|
|
|
2023-02-13 09:24:27 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2016-09-24 09:53:58 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-09-23 18:29:25 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2023-02-13 09:24:27 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-01-27 20:57:22 +08:00
|
|
|
|
namespace osu.Game.Screens.Play
|
2016-09-23 18:29:25 +08:00
|
|
|
|
{
|
2016-09-24 10:19:50 +08:00
|
|
|
|
public abstract partial class KeyCounter : Container
|
2016-09-23 18:29:25 +08:00
|
|
|
|
{
|
2023-02-13 09:24:27 +08:00
|
|
|
|
public readonly Trigger CounterTrigger;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-02-13 09:24:27 +08:00
|
|
|
|
protected Bindable<bool> IsCountingBindable = new BindableBool(true);
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2023-02-13 18:59:10 +08:00
|
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
|
2023-02-13 09:24:27 +08:00
|
|
|
|
protected Bindable<int> PressesCount = new BindableInt
|
2016-09-26 14:07:43 +08:00
|
|
|
|
{
|
2023-02-13 09:24:27 +08:00
|
|
|
|
MinValue = 0
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-02-13 09:24:27 +08:00
|
|
|
|
public bool IsCounting
|
|
|
|
|
{
|
|
|
|
|
get => IsCountingBindable.Value;
|
|
|
|
|
set => IsCountingBindable.Value = value;
|
|
|
|
|
}
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2023-02-13 09:24:27 +08:00
|
|
|
|
public int CountPresses
|
2016-09-24 09:53:58 +08:00
|
|
|
|
{
|
2023-02-13 09:24:27 +08:00
|
|
|
|
get => PressesCount.Value;
|
|
|
|
|
private set => PressesCount.Value = value;
|
2016-09-24 09:53:58 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-02-13 18:59:10 +08:00
|
|
|
|
protected KeyCounter(Trigger trigger)
|
|
|
|
|
{
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
content = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
|
},
|
|
|
|
|
CounterTrigger = trigger,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CounterTrigger.Target = this;
|
|
|
|
|
Name = trigger.Name;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-13 09:24:27 +08:00
|
|
|
|
protected Bindable<bool> IsLit = new BindableBool();
|
|
|
|
|
|
2019-09-12 14:41:53 +08:00
|
|
|
|
public void Increment()
|
|
|
|
|
{
|
|
|
|
|
if (!IsCounting)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
CountPresses++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Decrement()
|
|
|
|
|
{
|
|
|
|
|
if (!IsCounting)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
CountPresses--;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-13 09:24:27 +08:00
|
|
|
|
protected override bool Handle(UIEvent e) => CounterTrigger.TriggerEvent(e);
|
|
|
|
|
|
|
|
|
|
public abstract partial class Trigger : Component
|
2016-09-24 09:53:58 +08:00
|
|
|
|
{
|
2023-02-13 09:24:27 +08:00
|
|
|
|
private KeyCounter? target;
|
|
|
|
|
|
|
|
|
|
public KeyCounter Target
|
|
|
|
|
{
|
|
|
|
|
set => target = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected Trigger(string name)
|
2016-09-24 09:53:58 +08:00
|
|
|
|
{
|
2023-02-13 09:24:27 +08:00
|
|
|
|
Name = name;
|
2016-09-24 09:53:58 +08:00
|
|
|
|
}
|
2023-02-13 09:24:27 +08:00
|
|
|
|
|
|
|
|
|
protected void Lit(bool increment = true)
|
|
|
|
|
{
|
|
|
|
|
if (target == null) return;
|
|
|
|
|
|
|
|
|
|
target.IsLit.Value = true;
|
|
|
|
|
if (increment)
|
|
|
|
|
target.Increment();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Unlit(bool preserve = true)
|
2016-09-24 09:53:58 +08:00
|
|
|
|
{
|
2023-02-13 09:24:27 +08:00
|
|
|
|
if (target == null) return;
|
|
|
|
|
|
|
|
|
|
target.IsLit.Value = false;
|
|
|
|
|
if (!preserve)
|
|
|
|
|
target.Decrement();
|
2016-09-24 09:53:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-23 18:29:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|