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-17 05:59:39 +08:00
|
|
|
|
using System;
|
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;
|
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-14 05:59:17 +08:00
|
|
|
|
public readonly InputTrigger Trigger;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-02-13 18:59:10 +08:00
|
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
|
2023-02-17 06:20:34 +08:00
|
|
|
|
private readonly Bindable<int> countPresses = 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-17 06:20:34 +08:00
|
|
|
|
public bool IsCounting { get; set; } = true;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2023-02-17 06:20:34 +08:00
|
|
|
|
public IBindable<int> CountPresses => countPresses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-02-14 05:59:17 +08:00
|
|
|
|
protected KeyCounter(InputTrigger trigger)
|
2023-02-13 18:59:10 +08:00
|
|
|
|
{
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
content = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
|
},
|
2023-02-14 05:59:17 +08:00
|
|
|
|
Trigger = trigger,
|
2023-02-13 18:59:10 +08:00
|
|
|
|
};
|
|
|
|
|
|
2023-02-17 07:15:03 +08:00
|
|
|
|
Trigger.OnActivate += Activate;
|
|
|
|
|
Trigger.OnDeactivate += Deactivate;
|
2023-02-17 05:59:39 +08:00
|
|
|
|
|
2023-02-13 18:59:10 +08:00
|
|
|
|
Name = trigger.Name;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-17 08:40:01 +08:00
|
|
|
|
protected Bindable<bool> IsActive = new BindableBool();
|
2023-02-13 09:24:27 +08:00
|
|
|
|
|
2019-09-12 14:41:53 +08:00
|
|
|
|
public void Increment()
|
|
|
|
|
{
|
|
|
|
|
if (!IsCounting)
|
|
|
|
|
return;
|
|
|
|
|
|
2023-02-17 06:20:34 +08:00
|
|
|
|
countPresses.Value++;
|
2019-09-12 14:41:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Decrement()
|
|
|
|
|
{
|
|
|
|
|
if (!IsCounting)
|
|
|
|
|
return;
|
|
|
|
|
|
2023-02-17 06:20:34 +08:00
|
|
|
|
countPresses.Value--;
|
2019-09-12 14:41:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-17 07:15:03 +08:00
|
|
|
|
protected virtual void Activate(bool increment = true)
|
2016-09-24 09:53:58 +08:00
|
|
|
|
{
|
2023-02-17 08:40:01 +08:00
|
|
|
|
IsActive.Value = true;
|
2023-02-17 05:59:39 +08:00
|
|
|
|
if (increment)
|
|
|
|
|
Increment();
|
|
|
|
|
}
|
2023-02-13 09:24:27 +08:00
|
|
|
|
|
2023-02-17 07:15:03 +08:00
|
|
|
|
protected virtual void Deactivate(bool preserve = true)
|
2023-02-17 05:59:39 +08:00
|
|
|
|
{
|
2023-02-17 08:40:01 +08:00
|
|
|
|
IsActive.Value = false;
|
2023-02-17 05:59:39 +08:00
|
|
|
|
if (!preserve)
|
|
|
|
|
Decrement();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
2023-02-17 07:15:03 +08:00
|
|
|
|
Trigger.OnActivate -= Activate;
|
|
|
|
|
Trigger.OnDeactivate -= Deactivate;
|
2023-02-17 05:59:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public abstract partial class InputTrigger : Component
|
|
|
|
|
{
|
2023-02-17 07:15:03 +08:00
|
|
|
|
public event Action<bool>? OnActivate;
|
|
|
|
|
public event Action<bool>? OnDeactivate;
|
2023-02-13 09:24:27 +08:00
|
|
|
|
|
2023-02-14 05:59:17 +08:00
|
|
|
|
protected InputTrigger(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
|
|
|
|
|
2023-02-17 07:15:03 +08:00
|
|
|
|
protected void Activate(bool forwardPlayback = true) => OnActivate?.Invoke(forwardPlayback);
|
2023-02-13 09:24:27 +08:00
|
|
|
|
|
2023-02-17 07:15:03 +08:00
|
|
|
|
protected void Deactivate(bool forwardPlayback = true) => OnDeactivate?.Invoke(forwardPlayback);
|
2016-09-24 09:53:58 +08:00
|
|
|
|
}
|
2016-09-23 18:29:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|