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
|
|
|
|
|
|
|
|
|
using System;
|
2023-02-22 22:58:27 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.Linq;
|
2018-07-22 22:16:17 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2023-02-22 22:58:27 +08:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-09-18 16:48:37 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-03-07 15:28:54 +08:00
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2023-03-07 15:31:36 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A flowing display of all gameplay keys. Individual keys can be added using <see cref="InputTrigger"/> implementations.
|
|
|
|
|
/// </summary>
|
2023-03-08 08:47:16 +08:00
|
|
|
|
public abstract partial class KeyCounterDisplay : CompositeDrawable
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-02-04 01:00:43 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the key counter should be visible regardless of the configuration value.
|
|
|
|
|
/// This is true by default, but can be changed.
|
|
|
|
|
/// </summary>
|
2023-02-22 22:58:27 +08:00
|
|
|
|
public Bindable<bool> AlwaysVisible { get; } = new Bindable<bool>(true);
|
|
|
|
|
|
2023-03-08 08:47:16 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The <see cref="KeyCounter"/>s contained in this <see cref="KeyCounterDisplay"/>.
|
|
|
|
|
/// </summary>
|
2023-04-25 20:22:55 +08:00
|
|
|
|
public IEnumerable<KeyCounter> Counters => KeyFlow;
|
|
|
|
|
|
|
|
|
|
protected abstract FillFlowContainer<KeyCounter> KeyFlow { get; }
|
2023-03-08 08:47:16 +08:00
|
|
|
|
|
2023-03-08 08:58:54 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the actions reported by all <see cref="InputTrigger"/>s within this <see cref="KeyCounterDisplay"/> should be counted.
|
|
|
|
|
/// </summary>
|
2023-02-22 22:58:27 +08:00
|
|
|
|
public Bindable<bool> IsCounting { get; } = new BindableBool(true);
|
|
|
|
|
|
|
|
|
|
protected readonly Bindable<bool> ConfigVisibility = new Bindable<bool>();
|
|
|
|
|
|
|
|
|
|
protected abstract void UpdateVisibility();
|
|
|
|
|
|
|
|
|
|
private Receptor? receptor;
|
|
|
|
|
|
|
|
|
|
public void SetReceptor(Receptor receptor)
|
|
|
|
|
{
|
|
|
|
|
if (this.receptor != null)
|
|
|
|
|
throw new InvalidOperationException("Cannot set a new receptor when one is already active");
|
|
|
|
|
|
|
|
|
|
this.receptor = receptor;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-08 08:58:54 +08:00
|
|
|
|
/// <summary>
|
2023-03-15 17:02:41 +08:00
|
|
|
|
/// Add a <see cref="InputTrigger"/> to this display.
|
2023-03-08 08:58:54 +08:00
|
|
|
|
/// </summary>
|
2023-04-25 20:31:39 +08:00
|
|
|
|
public void Add(InputTrigger trigger)
|
|
|
|
|
{
|
|
|
|
|
var keyCounter = CreateCounter(trigger);
|
|
|
|
|
|
|
|
|
|
KeyFlow.Add(keyCounter);
|
|
|
|
|
|
|
|
|
|
IsCounting.BindTo(keyCounter.IsCounting);
|
|
|
|
|
}
|
2023-02-22 22:58:27 +08:00
|
|
|
|
|
2023-03-08 08:58:54 +08:00
|
|
|
|
/// <summary>
|
2023-03-15 17:02:41 +08:00
|
|
|
|
/// Add a range of <see cref="InputTrigger"/> to this display.
|
2023-03-08 08:58:54 +08:00
|
|
|
|
/// </summary>
|
2023-03-15 17:02:41 +08:00
|
|
|
|
public void AddRange(IEnumerable<InputTrigger> triggers) => triggers.ForEach(Add);
|
2023-02-22 22:58:27 +08:00
|
|
|
|
|
2023-04-25 20:22:55 +08:00
|
|
|
|
protected abstract KeyCounter CreateCounter(InputTrigger trigger);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2023-02-13 09:33:09 +08:00
|
|
|
|
config.BindWith(OsuSetting.KeyOverlay, ConfigVisibility);
|
2019-12-19 22:52:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2018-06-12 16:59:59 +08:00
|
|
|
|
|
2023-02-13 09:33:09 +08:00
|
|
|
|
AlwaysVisible.BindValueChanged(_ => UpdateVisibility());
|
|
|
|
|
ConfigVisibility.BindValueChanged(_ => UpdateVisibility(), true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-26 13:01:15 +08:00
|
|
|
|
public override bool HandleNonPositionalInput => receptor == null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-02-22 22:58:27 +08:00
|
|
|
|
public override bool HandlePositionalInput => receptor == null;
|
2023-02-13 09:33:09 +08:00
|
|
|
|
|
2022-11-24 13:32:20 +08:00
|
|
|
|
public partial class Receptor : Drawable
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-26 10:28:43 +08:00
|
|
|
|
protected readonly KeyCounterDisplay Target;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-26 10:28:43 +08:00
|
|
|
|
public Receptor(KeyCounterDisplay target)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Depth = float.MinValue;
|
|
|
|
|
Target = target;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-26 13:01:15 +08:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-18 16:48:37 +08:00
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
|
|
|
{
|
|
|
|
|
switch (e)
|
|
|
|
|
{
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case KeyDownEvent:
|
|
|
|
|
case KeyUpEvent:
|
|
|
|
|
case MouseDownEvent:
|
|
|
|
|
case MouseUpEvent:
|
2023-03-07 15:21:57 +08:00
|
|
|
|
return Target.InternalChildren.Any(c => c.TriggerEvent(e));
|
2018-09-18 16:48:37 +08:00
|
|
|
|
}
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-09-18 16:48:37 +08:00
|
|
|
|
return base.Handle(e);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|