2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
2020-03-23 10:03:42 +00:00
|
|
|
using System;
|
2017-08-21 03:31:21 +00:00
|
|
|
using System.Linq;
|
2017-08-24 06:23:17 +00:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 10:04:31 +00:00
|
|
|
using osu.Framework.Bindables;
|
2017-12-06 14:03:31 +00:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-08-24 06:23:17 +00:00
|
|
|
using osu.Framework.Input;
|
2017-08-21 03:31:21 +00:00
|
|
|
using osu.Framework.Input.Bindings;
|
2018-10-02 03:44:14 +00:00
|
|
|
using osu.Framework.Input.Events;
|
2018-09-18 08:05:26 +00:00
|
|
|
using osu.Framework.Input.StateChanges.Events;
|
2018-07-21 02:38:28 +00:00
|
|
|
using osu.Framework.Input.States;
|
2017-08-24 06:23:17 +00:00
|
|
|
using osu.Game.Configuration;
|
2021-05-24 08:23:09 +00:00
|
|
|
using osu.Game.Input;
|
2017-08-21 03:31:21 +00:00
|
|
|
using osu.Game.Input.Bindings;
|
2017-08-24 06:23:17 +00:00
|
|
|
using osu.Game.Input.Handlers;
|
2022-01-31 09:54:23 +00:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-08-21 03:31:21 +00:00
|
|
|
using osu.Game.Screens.Play;
|
2018-06-11 14:00:26 +00:00
|
|
|
using static osu.Game.Input.Handlers.ReplayInputHandler;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-21 03:31:21 +00:00
|
|
|
namespace osu.Game.Rulesets.UI
|
|
|
|
{
|
2020-03-23 10:31:43 +00:00
|
|
|
public abstract class RulesetInputManager<T> : PassThroughInputManager, ICanAttachKeyCounter, IHasReplayHandler, IHasRecordingHandler
|
2017-08-21 03:31:21 +00:00
|
|
|
where T : struct
|
|
|
|
{
|
2022-01-31 07:47:20 +00:00
|
|
|
public readonly KeyBindingContainer<T> KeyBindingContainer;
|
|
|
|
|
2022-01-31 09:54:23 +00:00
|
|
|
private readonly Ruleset ruleset;
|
|
|
|
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
private ScoreProcessor scoreProcessor { get; set; }
|
|
|
|
|
2020-03-23 10:03:42 +00:00
|
|
|
private ReplayRecorder recorder;
|
|
|
|
|
|
|
|
public ReplayRecorder Recorder
|
|
|
|
{
|
|
|
|
set
|
|
|
|
{
|
2021-06-03 16:59:56 +00:00
|
|
|
if (value != null && recorder != null)
|
2020-03-23 10:03:42 +00:00
|
|
|
throw new InvalidOperationException("Cannot attach more than one recorder");
|
|
|
|
|
2021-06-03 16:59:56 +00:00
|
|
|
recorder?.Expire();
|
2020-03-23 10:03:42 +00:00
|
|
|
recorder = value;
|
|
|
|
|
2021-06-03 16:59:56 +00:00
|
|
|
if (recorder != null)
|
|
|
|
KeyBindingContainer.Add(recorder);
|
2020-03-23 10:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 09:54:11 +00:00
|
|
|
protected override InputState CreateInitialState() => new RulesetInputManagerInputState<T>(base.CreateInitialState());
|
2018-06-11 14:00:26 +00:00
|
|
|
|
2019-03-26 02:28:43 +00:00
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
|
|
|
private readonly Container content;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-12-06 14:03:31 +00:00
|
|
|
protected RulesetInputManager(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
|
|
|
|
{
|
2022-01-31 09:54:23 +00:00
|
|
|
this.ruleset = ruleset.CreateInstance();
|
|
|
|
|
2019-03-26 02:28:43 +00:00
|
|
|
InternalChild = KeyBindingContainer =
|
2019-03-29 02:36:40 +00:00
|
|
|
CreateKeyBindingContainer(ruleset, variant, unique)
|
2019-03-26 02:28:43 +00:00
|
|
|
.WithChild(content = new Container { RelativeSizeAxes = Axes.Both });
|
2019-03-16 04:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
{
|
|
|
|
mouseDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableButtons);
|
2017-08-21 03:31:21 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#region Action mapping (for replays)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2018-09-18 08:05:26 +00:00
|
|
|
public override void HandleInputStateChange(InputStateChangeEvent inputStateChange)
|
2017-08-24 06:23:17 +00:00
|
|
|
{
|
2022-01-31 09:54:23 +00:00
|
|
|
switch (inputStateChange)
|
2018-06-11 14:00:26 +00:00
|
|
|
{
|
2022-01-31 09:54:23 +00:00
|
|
|
case ReplayStateChangeEvent<T> stateChangeEvent:
|
|
|
|
foreach (var action in stateChangeEvent.ReleasedActions)
|
|
|
|
KeyBindingContainer.TriggerReleased(action);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-01-31 09:54:23 +00:00
|
|
|
foreach (var action in stateChangeEvent.PressedActions)
|
|
|
|
KeyBindingContainer.TriggerPressed(action);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ReplayStatisticsFrameEvent statisticsStateChangeEvent:
|
|
|
|
scoreProcessor?.ResetFromReplayFrame(ruleset, statisticsStateChangeEvent.Frame);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
base.HandleInputStateChange(inputStateChange);
|
|
|
|
break;
|
2018-06-11 14:00:26 +00:00
|
|
|
}
|
2017-08-24 06:23:17 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#endregion
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#region IHasReplayHandler
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:23:17 +00:00
|
|
|
private ReplayInputHandler replayInputHandler;
|
2018-10-03 18:03:59 +00:00
|
|
|
|
2017-08-24 06:23:17 +00:00
|
|
|
public ReplayInputHandler ReplayInputHandler
|
|
|
|
{
|
2018-10-03 18:03:59 +00:00
|
|
|
get => replayInputHandler;
|
2017-08-24 06:23:17 +00:00
|
|
|
set
|
|
|
|
{
|
|
|
|
if (replayInputHandler != null) RemoveHandler(replayInputHandler);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:23:17 +00:00
|
|
|
replayInputHandler = value;
|
2018-06-11 14:00:26 +00:00
|
|
|
UseParentInput = replayInputHandler == null;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:23:17 +00:00
|
|
|
if (replayInputHandler != null)
|
|
|
|
AddHandler(replayInputHandler);
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#endregion
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#region Setting application (disables etc.)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
private Bindable<bool> mouseDisabled;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2018-10-03 18:03:59 +00:00
|
|
|
protected override bool Handle(UIEvent e)
|
|
|
|
{
|
2018-10-04 08:55:31 +00:00
|
|
|
switch (e)
|
|
|
|
{
|
2021-02-23 05:24:24 +00:00
|
|
|
case MouseDownEvent _:
|
2018-10-04 08:55:31 +00:00
|
|
|
if (mouseDisabled.Value)
|
2021-02-23 05:24:24 +00:00
|
|
|
return true; // importantly, block upwards propagation so global bindings also don't fire.
|
2019-02-27 12:07:17 +00:00
|
|
|
|
2018-10-04 08:55:31 +00:00
|
|
|
break;
|
2019-04-01 03:44:46 +00:00
|
|
|
|
2018-10-04 08:55:31 +00:00
|
|
|
case MouseUpEvent mouseUp:
|
|
|
|
if (!CurrentState.Mouse.IsPressed(mouseUp.Button))
|
|
|
|
return false;
|
2019-02-27 12:07:17 +00:00
|
|
|
|
2018-10-04 08:55:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-02-21 12:24:02 +00:00
|
|
|
|
2018-10-03 18:03:59 +00:00
|
|
|
return base.Handle(e);
|
2022-01-05 09:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool HandleMouseTouchStateChange(TouchStateChangeEvent e)
|
|
|
|
{
|
|
|
|
if (mouseDisabled.Value)
|
|
|
|
{
|
|
|
|
// Only propagate positional data when mouse buttons are disabled.
|
|
|
|
e = new TouchStateChangeEvent(e.State, e.Input, e.Touch, false, e.LastPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.HandleMouseTouchStateChange(e);
|
2018-10-03 18:03:59 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#endregion
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#region Key Counter Attachment
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2019-03-26 02:28:43 +00:00
|
|
|
public void Attach(KeyCounterDisplay keyCounter)
|
2017-08-21 03:31:21 +00:00
|
|
|
{
|
|
|
|
var receptor = new ActionReceptor(keyCounter);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2019-03-26 02:28:43 +00:00
|
|
|
KeyBindingContainer.Add(receptor);
|
|
|
|
|
|
|
|
keyCounter.SetReceptor(receptor);
|
2020-10-17 12:53:29 +00:00
|
|
|
keyCounter.AddRange(KeyBindingContainer.DefaultKeyBindings
|
|
|
|
.Select(b => b.GetAction<T>())
|
|
|
|
.Distinct()
|
|
|
|
.OrderBy(action => action)
|
|
|
|
.Select(action => new KeyCounterAction<T>(action)));
|
2017-08-21 03:31:21 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2019-03-26 02:28:43 +00:00
|
|
|
public class ActionReceptor : KeyCounterDisplay.Receptor, IKeyBindingHandler<T>
|
2017-08-21 03:31:21 +00:00
|
|
|
{
|
2019-03-26 02:28:43 +00:00
|
|
|
public ActionReceptor(KeyCounterDisplay target)
|
2017-08-21 03:31:21 +00:00
|
|
|
: base(target)
|
|
|
|
{
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2021-09-16 09:26:12 +00:00
|
|
|
public bool OnPressed(KeyBindingPressEvent<T> e) => Target.Children.OfType<KeyCounterAction<T>>().Any(c => c.OnPressed(e.Action, Clock.Rate >= 0));
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2021-09-16 09:26:12 +00:00
|
|
|
public void OnReleased(KeyBindingReleaseEvent<T> e)
|
2020-01-22 04:22:34 +00:00
|
|
|
{
|
|
|
|
foreach (var c in Target.Children.OfType<KeyCounterAction<T>>())
|
2021-09-16 09:26:12 +00:00
|
|
|
c.OnReleased(e.Action, Clock.Rate >= 0);
|
2020-01-22 04:22:34 +00:00
|
|
|
}
|
2017-08-21 03:31:21 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
#endregion
|
2018-06-07 11:24:33 +00:00
|
|
|
|
2020-03-23 08:33:02 +00:00
|
|
|
protected virtual KeyBindingContainer<T> CreateKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
|
2018-06-07 11:24:33 +00:00
|
|
|
=> new RulesetKeyBindingContainer(ruleset, variant, unique);
|
2019-01-23 05:51:13 +00:00
|
|
|
|
|
|
|
public class RulesetKeyBindingContainer : DatabasedKeyBindingContainer<T>
|
|
|
|
{
|
2021-11-18 03:57:51 +00:00
|
|
|
protected override bool HandleRepeats => false;
|
|
|
|
|
2019-01-23 05:51:13 +00:00
|
|
|
public RulesetKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
|
|
|
|
: base(ruleset, variant, unique)
|
|
|
|
{
|
|
|
|
}
|
2021-05-24 08:23:09 +00:00
|
|
|
|
|
|
|
protected override void ReloadMappings()
|
|
|
|
{
|
|
|
|
base.ReloadMappings();
|
|
|
|
|
2021-05-25 08:18:33 +00:00
|
|
|
KeyBindings = KeyBindings.Where(b => RealmKeyBindingStore.CheckValidForGameplay(b.KeyCombination)).ToList();
|
2021-05-24 08:23:09 +00:00
|
|
|
}
|
2019-01-23 05:51:13 +00:00
|
|
|
}
|
2017-08-21 03:31:21 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Expose the <see cref="ReplayInputHandler"/> in a capable <see cref="InputManager"/>.
|
|
|
|
/// </summary>
|
2017-08-24 06:23:17 +00:00
|
|
|
public interface IHasReplayHandler
|
|
|
|
{
|
|
|
|
ReplayInputHandler ReplayInputHandler { get; set; }
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2020-03-23 10:31:43 +00:00
|
|
|
public interface IHasRecordingHandler
|
|
|
|
{
|
|
|
|
public ReplayRecorder Recorder { set; }
|
|
|
|
}
|
|
|
|
|
2017-08-24 06:48:40 +00:00
|
|
|
/// <summary>
|
2019-03-26 02:28:43 +00:00
|
|
|
/// Supports attaching a <see cref="KeyCounterDisplay"/>.
|
2017-08-24 06:48:40 +00:00
|
|
|
/// Keys will be populated automatically and a receptor will be injected inside.
|
|
|
|
/// </summary>
|
2017-08-21 03:31:21 +00:00
|
|
|
public interface ICanAttachKeyCounter
|
|
|
|
{
|
2019-03-26 02:28:43 +00:00
|
|
|
void Attach(KeyCounterDisplay keyCounter);
|
2017-08-21 03:31:21 +00:00
|
|
|
}
|
2018-06-11 14:00:26 +00:00
|
|
|
|
|
|
|
public class RulesetInputManagerInputState<T> : InputState
|
2018-10-03 18:03:59 +00:00
|
|
|
where T : struct
|
2018-06-11 14:00:26 +00:00
|
|
|
{
|
|
|
|
public ReplayState<T> LastReplayState;
|
2018-09-19 11:52:57 +00:00
|
|
|
|
2020-07-01 09:54:11 +00:00
|
|
|
public RulesetInputManagerInputState(InputState state = null)
|
|
|
|
: base(state)
|
2018-09-19 11:52:57 +00:00
|
|
|
{
|
|
|
|
}
|
2018-06-11 14:00:26 +00:00
|
|
|
}
|
2017-08-24 11:32:55 +00:00
|
|
|
}
|