1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game/Rulesets/UI/RulesetInputManager.cs

309 lines
10 KiB
C#
Raw Normal View History

// 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
2019-02-22 19:57:08 +08:00
using System;
2018-04-13 17:19:50 +08:00
using System.Linq;
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
using osu.Framework.Input.Events;
using osu.Framework.Input.StateChanges.Events;
2018-07-21 10:38:28 +08:00
using osu.Framework.Input.States;
2018-04-13 17:19:50 +08:00
using osu.Framework.Timing;
using osu.Game.Configuration;
using osu.Game.Input.Bindings;
using osu.Game.Input.Handlers;
using osu.Game.Screens.Play;
2018-11-20 15:51:59 +08:00
using osuTK.Input;
2018-06-11 22:00:26 +08:00
using static osu.Game.Input.Handlers.ReplayInputHandler;
using JoystickState = osu.Framework.Input.States.JoystickState;
using KeyboardState = osu.Framework.Input.States.KeyboardState;
using MouseState = osu.Framework.Input.States.MouseState;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.UI
{
public abstract class RulesetInputManager<T> : PassThroughInputManager, ICanAttachKeyCounter, IHasReplayHandler
where T : struct
{
2018-06-11 22:00:26 +08:00
protected override InputState CreateInitialState()
{
var state = base.CreateInitialState();
return new RulesetInputManagerInputState<T>(state.Mouse, state.Keyboard, state.Joystick);
2018-06-11 22:00:26 +08:00
}
2018-04-13 17:19:50 +08:00
protected readonly KeyBindingContainer<T> KeyBindingContainer;
protected override Container<Drawable> Content => KeyBindingContainer;
protected RulesetInputManager(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
{
2018-06-07 19:24:33 +08:00
InternalChild = KeyBindingContainer = CreateKeyBindingContainer(ruleset, variant, unique);
gameplayClock = new GameplayClock(framedClock = new FramedClock(manualClock = new ManualClock()));
2018-04-13 17:19:50 +08:00
}
#region Action mapping (for replays)
public override void HandleInputStateChange(InputStateChangeEvent inputStateChange)
2018-04-13 17:19:50 +08:00
{
if (inputStateChange is ReplayStateChangeEvent<T> replayStateChanged)
2018-06-11 22:00:26 +08:00
{
foreach (var action in replayStateChanged.ReleasedActions)
KeyBindingContainer.TriggerReleased(action);
2018-04-13 17:19:50 +08:00
foreach (var action in replayStateChanged.PressedActions)
KeyBindingContainer.TriggerPressed(action);
}
else
2018-06-11 22:00:26 +08:00
{
base.HandleInputStateChange(inputStateChange);
2018-06-11 22:00:26 +08:00
}
2018-04-13 17:19:50 +08:00
}
#endregion
#region IHasReplayHandler
private ReplayInputHandler replayInputHandler;
2018-04-13 17:19:50 +08:00
public ReplayInputHandler ReplayInputHandler
{
get => replayInputHandler;
2018-04-13 17:19:50 +08:00
set
{
if (replayInputHandler != null) RemoveHandler(replayInputHandler);
replayInputHandler = value;
2018-06-11 22:00:26 +08:00
UseParentInput = replayInputHandler == null;
2018-04-13 17:19:50 +08:00
if (replayInputHandler != null)
AddHandler(replayInputHandler);
}
}
#endregion
#region Clock control
private readonly ManualClock manualClock;
private readonly FramedClock framedClock;
[Cached]
private GameplayClock gameplayClock;
private IFrameBasedClock parentGameplayClock;
[BackgroundDependencyLoader(true)]
private void load(OsuConfigManager config, GameplayClock clock)
{
mouseDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableButtons);
if (clock != null)
parentGameplayClock = clock;
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
setClock();
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Whether we are running up-to-date with our parent clock.
/// If not, we will need to keep processing children until we catch up.
/// </summary>
private bool requireMoreUpdateLoops;
/// <summary>
/// Whether we are in a valid state (ie. should we keep processing children frames).
/// This should be set to false when the replay is, for instance, waiting for future frames to arrive.
/// </summary>
private bool validState;
protected override bool RequiresChildrenUpdate => base.RequiresChildrenUpdate && validState;
2018-06-11 22:00:26 +08:00
private bool isAttached => replayInputHandler != null && !UseParentInput;
2018-04-13 17:19:50 +08:00
private const int max_catch_up_updates_per_frame = 50;
private const double sixty_frame_time = 1000.0 / 60;
2018-04-13 17:19:50 +08:00
public override bool UpdateSubTree()
{
requireMoreUpdateLoops = true;
validState = true;
int loops = 0;
while (validState && requireMoreUpdateLoops && loops++ < max_catch_up_updates_per_frame)
{
updateClock();
2018-04-13 17:19:50 +08:00
2019-02-23 14:48:34 +08:00
if (validState)
2018-04-13 17:19:50 +08:00
{
base.UpdateSubTree();
UpdateSubTreeMasking(this, ScreenSpaceDrawQuad.AABBFloat);
2018-04-13 17:19:50 +08:00
}
}
return true;
}
private void updateClock()
2018-04-13 17:19:50 +08:00
{
if (parentGameplayClock == null)
setClock(); // LoadComplete may not be run yet, but we still want the clock.
validState = true;
2018-04-13 17:19:50 +08:00
manualClock.Rate = parentGameplayClock.Rate;
manualClock.IsRunning = parentGameplayClock.IsRunning;
2018-04-13 17:19:50 +08:00
var newProposedTime = parentGameplayClock.CurrentTime;
2019-02-22 19:57:08 +08:00
try
2018-04-13 17:19:50 +08:00
{
if (Math.Abs(manualClock.CurrentTime - newProposedTime) > sixty_frame_time * 1.2f)
2019-02-22 19:57:08 +08:00
{
newProposedTime = manualClock.Rate > 0
? Math.Min(newProposedTime, manualClock.CurrentTime + sixty_frame_time)
: Math.Max(newProposedTime, manualClock.CurrentTime - sixty_frame_time);
2019-02-22 19:57:08 +08:00
}
2018-04-13 17:19:50 +08:00
2019-02-22 19:57:08 +08:00
if (!isAttached)
2018-04-13 17:19:50 +08:00
{
manualClock.CurrentTime = newProposedTime;
2018-04-13 17:19:50 +08:00
}
2019-02-22 19:57:08 +08:00
else
{
double? newTime = replayInputHandler.SetFrameFromTime(newProposedTime);
2018-04-13 17:19:50 +08:00
2019-02-22 19:57:08 +08:00
if (newTime == null)
{
// we shouldn't execute for this time value. probably waiting on more replay data.
validState = false;
requireMoreUpdateLoops = true;
manualClock.CurrentTime = newProposedTime;
2019-02-22 19:57:08 +08:00
return;
}
2018-04-13 17:19:50 +08:00
manualClock.CurrentTime = newTime.Value;
2019-02-22 19:57:08 +08:00
}
2018-04-13 17:19:50 +08:00
requireMoreUpdateLoops = manualClock.CurrentTime != parentGameplayClock.CurrentTime;
2019-02-22 19:57:08 +08:00
}
finally
{
// The manual clock time has changed in the above code. The framed clock now needs to be updated
// to ensure that the its time is valid for our children before input is processed
framedClock.ProcessFrame();
2019-02-22 19:57:08 +08:00
}
}
2018-04-13 17:19:50 +08:00
private void setClock()
{
// in case a parent gameplay clock isn't available, just use the parent clock.
if (parentGameplayClock == null)
parentGameplayClock = Clock;
Clock = gameplayClock;
ProcessCustomClock = false;
}
2018-04-13 17:19:50 +08:00
#endregion
#region Setting application (disables etc.)
private Bindable<bool> mouseDisabled;
protected override bool Handle(UIEvent e)
{
2018-10-04 16:55:31 +08:00
switch (e)
{
case MouseDownEvent mouseDown when mouseDown.Button == MouseButton.Left || mouseDown.Button == MouseButton.Right:
if (mouseDisabled.Value)
return false;
2018-10-04 16:55:31 +08:00
break;
case MouseUpEvent mouseUp:
if (!CurrentState.Mouse.IsPressed(mouseUp.Button))
return false;
2018-10-04 16:55:31 +08:00
break;
}
return base.Handle(e);
}
2018-04-13 17:19:50 +08:00
#endregion
#region Key Counter Attachment
public void Attach(KeyCounterCollection keyCounter)
{
var receptor = new ActionReceptor(keyCounter);
Add(receptor);
keyCounter.SetReceptor(receptor);
keyCounter.AddRange(KeyBindingContainer.DefaultKeyBindings.Select(b => b.GetAction<T>()).Distinct().Select(b => new KeyCounterAction<T>(b)));
}
public class ActionReceptor : KeyCounterCollection.Receptor, IKeyBindingHandler<T>
{
public ActionReceptor(KeyCounterCollection target)
: base(target)
{
}
public bool OnPressed(T action) => Target.Children.OfType<KeyCounterAction<T>>().Any(c => c.OnPressed(action));
public bool OnReleased(T action) => Target.Children.OfType<KeyCounterAction<T>>().Any(c => c.OnReleased(action));
}
#endregion
2018-06-07 19:24:33 +08:00
protected virtual RulesetKeyBindingContainer CreateKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
=> new RulesetKeyBindingContainer(ruleset, variant, unique);
2019-01-23 13:51:13 +08:00
public class RulesetKeyBindingContainer : DatabasedKeyBindingContainer<T>
{
public RulesetKeyBindingContainer(RulesetInfo ruleset, int variant, SimultaneousBindingMode unique)
: base(ruleset, variant, unique)
{
}
}
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Expose the <see cref="ReplayInputHandler"/> in a capable <see cref="InputManager"/>.
/// </summary>
public interface IHasReplayHandler
{
ReplayInputHandler ReplayInputHandler { get; set; }
}
/// <summary>
/// Supports attaching a <see cref="KeyCounterCollection"/>.
/// Keys will be populated automatically and a receptor will be injected inside.
/// </summary>
public interface ICanAttachKeyCounter
{
void Attach(KeyCounterCollection keyCounter);
}
2018-06-11 22:00:26 +08:00
public class RulesetInputManagerInputState<T> : InputState
where T : struct
2018-06-11 22:00:26 +08:00
{
public ReplayState<T> LastReplayState;
public RulesetInputManagerInputState(MouseState mouse = null, KeyboardState keyboard = null, JoystickState joystick = null)
: base(mouse, keyboard, joystick)
{
}
2018-06-11 22:00:26 +08:00
}
2018-04-13 17:19:50 +08:00
}