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
|
|
|
|
|
2017-08-21 11:31:21 +08:00
|
|
|
|
using System;
|
2023-02-22 22:58:27 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-03-07 18:30:39 +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;
|
2016-10-22 18:37:27 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-01-27 20:57:22 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-09-18 16:48:37 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2017-05-23 16:53:42 +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
|
2016-09-24 09:53:58 +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-02-13 09:33:09 +08:00
|
|
|
|
public abstract partial class KeyCounterDisplay : Container<KeyCounter>
|
2016-09-24 09:53:58 +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);
|
|
|
|
|
|
|
|
|
|
public Bindable<bool> IsCounting { get; } = new BindableBool(true);
|
|
|
|
|
|
|
|
|
|
protected readonly Bindable<bool> ConfigVisibility = new Bindable<bool>();
|
|
|
|
|
|
|
|
|
|
protected abstract void UpdateVisibility();
|
|
|
|
|
|
|
|
|
|
private Receptor? receptor;
|
|
|
|
|
|
|
|
|
|
private readonly Type[] acceptedTypes;
|
|
|
|
|
|
|
|
|
|
protected KeyCounterDisplay(params Type[] acceptedTypes)
|
|
|
|
|
{
|
|
|
|
|
this.acceptedTypes = acceptedTypes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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-02-22 23:03:44 +08:00
|
|
|
|
public abstract void AddTrigger(InputTrigger trigger);
|
2023-02-22 22:58:27 +08:00
|
|
|
|
|
2023-02-22 23:03:44 +08:00
|
|
|
|
public void AddTriggerRange(IEnumerable<InputTrigger> triggers) => triggers.ForEach(AddTrigger);
|
2023-02-22 22:58:27 +08:00
|
|
|
|
|
2023-03-07 15:21:57 +08:00
|
|
|
|
public override void Add(KeyCounter counter)
|
2016-10-06 22:33:09 +08:00
|
|
|
|
{
|
2023-03-07 15:21:57 +08:00
|
|
|
|
if (!checkType(counter))
|
|
|
|
|
throw new InvalidOperationException($"{counter.GetType()} is not a supported counter type. (hint: you may want to use {nameof(AddTrigger)} instead.)");
|
2023-02-22 22:58:27 +08:00
|
|
|
|
|
2023-03-07 15:21:57 +08:00
|
|
|
|
base.Add(counter);
|
|
|
|
|
counter.IsCounting.BindTo(IsCounting);
|
2018-07-23 00:42:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-07 15:21:57 +08:00
|
|
|
|
private bool checkType(KeyCounter counter) => acceptedTypes.Length == 0 || acceptedTypes.Any(t => t.IsInstanceOfType(counter));
|
|
|
|
|
|
2017-05-23 16:53:42 +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);
|
2017-05-23 16:53:42 +08:00
|
|
|
|
}
|
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
|
|
|
|
|
2017-03-07 18:30:39 +08:00
|
|
|
|
public partial class Receptor : Drawable
|
|
|
|
|
{
|
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)
|
2017-03-07 18:30:39 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2017-08-21 11:31:21 +08:00
|
|
|
|
Depth = float.MinValue;
|
|
|
|
|
Target = target;
|
2017-03-07 18:30:39 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
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);
|
|
|
|
|
}
|
2017-03-07 18:30:39 +08:00
|
|
|
|
}
|
2016-09-24 09:53:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|