osu/osu.Game/Rulesets/UI/RulesetContainer.cs

383 lines
14 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 09:19:50 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
2019-02-21 10:04:31 +00:00
using osu.Framework.Bindables;
2018-04-13 09:19:50 +00:00
using osu.Framework.Graphics.Cursor;
using osu.Framework.Input;
using osu.Framework.Input.Events;
2018-04-13 09:19:50 +00:00
using osu.Game.Configuration;
using osu.Game.Graphics.Cursor;
2018-04-13 09:19:50 +00:00
using osu.Game.Input.Handlers;
using osu.Game.Overlays;
2018-11-28 08:20:37 +00:00
using osu.Game.Replays;
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Configuration;
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
using osu.Game.Screens.Play;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.UI
{
/// <summary>
/// RulesetContainer that applies conversion to Beatmaps. Does not contain a Playfield
/// and does not load drawable hit objects.
2018-04-13 09:19:50 +00:00
/// <para>
/// Should not be derived - derive <see cref="RulesetContainer{TPlayfield, TObject}"/> instead.
2018-04-13 09:19:50 +00:00
/// </para>
/// </summary>
/// <typeparam name="TObject">The type of HitObject contained by this RulesetContainer.</typeparam>
public abstract class RulesetContainer<TObject> : RulesetContainer, IProvideCursor, ICanAttachKeyCounter
where TObject : HitObject
2018-04-13 09:19:50 +00:00
{
/// <summary>
/// The selected variant.
/// </summary>
public virtual int Variant => 0;
/// <summary>
/// The key conversion input manager for this RulesetContainer.
/// </summary>
public PassThroughInputManager KeyBindingInputManager;
public override double GameplayStartTime => Objects.First().StartTime - 2000;
2018-04-13 09:19:50 +00:00
private readonly Lazy<Playfield> playfield;
2018-06-06 05:20:51 +00:00
2018-04-13 09:19:50 +00:00
/// <summary>
/// The playfield.
/// </summary>
public Playfield Playfield => playfield.Value;
/// <summary>
/// Place to put drawables above hit objects but below UI.
/// </summary>
2018-12-20 10:35:32 +00:00
public Container Overlays { get; protected set; }
public override CursorContainer Cursor => Playfield.Cursor;
2019-03-06 03:34:58 +00:00
public bool ProvidingUserCursor => Playfield.Cursor != null && !HasReplayLoaded.Value;
protected override bool OnHover(HoverEvent e) => true; // required for IProvideCursor
2018-04-13 09:19:50 +00:00
2018-07-11 08:25:57 +00:00
protected IRulesetConfigManager Config { get; private set; }
2018-04-13 09:19:50 +00:00
private OnScreenDisplay onScreenDisplay;
/// <summary>
/// Creates a ruleset visualisation for the provided ruleset and beatmap.
2018-04-13 09:19:50 +00:00
/// </summary>
/// <param name="ruleset">The ruleset being repesented.</param>
/// <param name="workingBeatmap">The beatmap to create the hit renderer for.</param>
protected RulesetContainer(Ruleset ruleset, WorkingBeatmap workingBeatmap)
: base(ruleset)
2018-04-13 09:19:50 +00:00
{
Debug.Assert(workingBeatmap != null, "RulesetContainer initialized with a null beatmap.");
RelativeSizeAxes = Axes.Both;
Beatmap = (Beatmap<TObject>)workingBeatmap.GetPlayableBeatmap(ruleset.RulesetInfo);
mods = workingBeatmap.Mods.Value;
applyBeatmapMods(mods);
KeyBindingInputManager = CreateInputManager();
2018-04-13 09:19:50 +00:00
playfield = new Lazy<Playfield>(CreatePlayfield);
IsPaused.ValueChanged += paused =>
2018-07-11 08:01:27 +00:00
{
2019-02-21 09:56:34 +00:00
if (HasReplayLoaded.Value)
2018-07-11 08:01:27 +00:00
return;
KeyBindingInputManager.UseParentInput = !paused.NewValue;
2018-07-11 08:01:27 +00:00
};
2018-04-13 09:19:50 +00:00
}
2018-05-06 10:57:52 +00:00
public override void SetReplayScore(Score replayScore)
2018-04-13 09:19:50 +00:00
{
if (!(KeyBindingInputManager is IHasReplayHandler replayInputManager))
throw new InvalidOperationException($"A {nameof(KeyBindingInputManager)} which supports replay loading is not available");
var handler = (ReplayScore = replayScore) != null ? CreateReplayInputHandler(replayScore.Replay) : null;
2018-05-21 06:56:02 +00:00
replayInputManager.ReplayInputHandler = handler;
frameStabilityContainer.ReplayInputHandler = handler;
2018-04-13 09:19:50 +00:00
HasReplayLoaded.Value = replayInputManager.ReplayInputHandler != null;
2018-06-11 03:57:26 +00:00
if (replayInputManager.ReplayInputHandler != null)
replayInputManager.ReplayInputHandler.GamefieldToScreenSpace = Playfield.GamefieldToScreenSpace;
}
2018-04-13 09:19:50 +00:00
/// <summary>
/// Creates and adds drawable representations of hit objects to the play field.
2018-04-13 09:19:50 +00:00
/// </summary>
private void loadObjects()
{
foreach (TObject h in Beatmap.HitObjects)
addRepresentation(h);
2018-04-13 09:19:50 +00:00
Playfield.PostProcess();
foreach (var mod in mods.OfType<IApplicableToDrawableHitObjects>())
mod.ApplyToDrawableHitObjects(Playfield.HitObjectContainer.Objects);
}
2018-04-13 09:19:50 +00:00
2018-07-11 08:01:27 +00:00
/// <summary>
/// Creates and adds the visual representation of a <see cref="TObject"/> to this <see cref="RulesetContainer{TObject}"/>.
2018-07-11 08:01:27 +00:00
/// </summary>
/// <param name="hitObject">The <see cref="TObject"/> to add the visual representation for.</param>
private void addRepresentation(TObject hitObject)
{
var drawableObject = GetVisualRepresentation(hitObject);
if (drawableObject == null)
return;
drawableObject.OnNewResult += (_, r) => OnNewResult?.Invoke(r);
drawableObject.OnRevertResult += (_, r) => OnRevertResult?.Invoke(r);
Playfield.Add(drawableObject);
}
2018-07-11 08:01:27 +00:00
2018-04-13 09:19:50 +00:00
/// <summary>
/// Creates a DrawableHitObject from a HitObject.
2018-04-13 09:19:50 +00:00
/// </summary>
/// <param name="h">The HitObject to make drawable.</param>
/// <returns>The DrawableHitObject.</returns>
public abstract DrawableHitObject<TObject> GetVisualRepresentation(TObject h);
public void Attach(KeyCounterCollection keyCounter) =>
(KeyBindingInputManager as ICanAttachKeyCounter)?.Attach(keyCounter);
2018-04-13 09:19:50 +00:00
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
onScreenDisplay = dependencies.Get<OnScreenDisplay>();
Config = dependencies.Get<RulesetConfigCache>().GetConfigFor(Ruleset);
if (Config != null)
{
dependencies.Cache(Config);
onScreenDisplay?.BeginTracking(this, Config);
}
2018-04-13 09:19:50 +00:00
return dependencies;
2018-04-13 09:19:50 +00:00
}
/// <summary>
/// Creates a key conversion input manager. An exception will be thrown if a valid <see cref="RulesetInputManager{T}"/> is not returned.
2018-04-13 09:19:50 +00:00
/// </summary>
/// <returns>The input manager.</returns>
protected abstract PassThroughInputManager CreateInputManager();
protected virtual ReplayInputHandler CreateReplayInputHandler(Replay replay) => null;
private FrameStabilityContainer frameStabilityContainer;
2018-04-13 09:19:50 +00:00
/// <summary>
/// Creates a Playfield.
/// </summary>
/// <returns>The Playfield.</returns>
protected abstract Playfield CreatePlayfield();
/// <summary>
2018-08-06 03:29:22 +00:00
/// Invoked when a <see cref="JudgementResult"/> has been applied by a <see cref="DrawableHitObject"/>.
/// </summary>
public event Action<JudgementResult> OnNewResult;
/// <summary>
2018-08-06 03:29:22 +00:00
/// Invoked when a <see cref="JudgementResult"/> is being reverted by a <see cref="DrawableHitObject"/>.
/// </summary>
2018-08-06 03:29:22 +00:00
public event Action<JudgementResult> OnRevertResult;
2018-04-13 09:19:50 +00:00
/// <summary>
/// The beatmap.
2018-04-13 09:19:50 +00:00
/// </summary>
public Beatmap<TObject> Beatmap;
public override IEnumerable<HitObject> Objects => Beatmap.HitObjects;
/// <summary>
/// The mods which are to be applied.
/// </summary>
private readonly IEnumerable<Mod> mods;
2018-04-13 09:19:50 +00:00
public override ScoreProcessor CreateScoreProcessor() => new ScoreProcessor<TObject>(this);
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
KeyBindingInputManager.AddRange(new Drawable[]
{
2018-12-20 10:35:32 +00:00
Playfield
});
2018-12-20 10:35:32 +00:00
InternalChildren = new Drawable[]
{
frameStabilityContainer = new FrameStabilityContainer
{
Child = KeyBindingInputManager,
},
2018-12-20 10:35:32 +00:00
Overlays = new Container { RelativeSizeAxes = Axes.Both }
};
// Apply mods
applyRulesetMods(mods, config);
loadObjects();
2018-04-13 09:19:50 +00:00
}
2018-10-28 05:40:19 +00:00
/// <summary>
/// Applies the active mods to the Beatmap.
/// </summary>
/// <param name="mods"></param>
private void applyBeatmapMods(IEnumerable<Mod> mods)
{
if (mods == null)
return;
foreach (var mod in mods.OfType<IApplicableToBeatmap<TObject>>())
2018-10-28 05:40:19 +00:00
mod.ApplyToBeatmap(Beatmap);
}
2018-04-13 09:19:50 +00:00
/// <summary>
/// Applies the active mods to this RulesetContainer.
/// </summary>
/// <param name="mods"></param>
2018-10-28 05:40:19 +00:00
private void applyRulesetMods(IEnumerable<Mod> mods, OsuConfigManager config)
2018-04-13 09:19:50 +00:00
{
if (mods == null)
return;
foreach (var mod in mods.OfType<IApplicableToRulesetContainer<TObject>>())
mod.ApplyToRulesetContainer(this);
2018-06-06 05:20:51 +00:00
foreach (var mod in mods.OfType<IReadFromConfig>())
mod.ReadFromConfig(config);
2018-04-13 09:19:50 +00:00
}
protected override void Dispose(bool isDisposing)
2018-04-13 09:19:50 +00:00
{
base.Dispose(isDisposing);
2018-04-13 09:19:50 +00:00
if (Config != null)
{
onScreenDisplay?.StopTracking(this, Config);
Config = null;
}
2018-04-13 09:19:50 +00:00
}
}
2018-04-13 09:19:50 +00:00
/// <summary>
/// Base RulesetContainer. Doesn't hold objects.
/// <para>
/// Should not be derived - derive <see cref="RulesetContainer{TObject}"/> instead.
/// </para>
/// </summary>
public abstract class RulesetContainer : CompositeDrawable
{
2018-04-13 09:19:50 +00:00
/// <summary>
/// Whether a replay is currently loaded.
2018-04-13 09:19:50 +00:00
/// </summary>
public readonly BindableBool HasReplayLoaded = new BindableBool();
2018-04-13 09:19:50 +00:00
/// <summary>
/// Whether the game is paused. Used to block user input.
/// </summary>
public readonly BindableBool IsPaused = new BindableBool();
2018-04-13 09:19:50 +00:00
/// <summary>
/// The associated ruleset.
/// </summary>
public readonly Ruleset Ruleset;
2018-04-13 09:19:50 +00:00
/// <summary>
/// Creates a ruleset visualisation for the provided ruleset.
/// </summary>
/// <param name="ruleset">The ruleset.</param>
protected RulesetContainer(Ruleset ruleset)
{
Ruleset = ruleset;
}
/// <summary>
/// All the converted hit objects contained by this hit renderer.
/// </summary>
public abstract IEnumerable<HitObject> Objects { get; }
/// <summary>
/// The point in time at which gameplay starts, including any required lead-in for display purposes.
/// Defaults to two seconds before the first <see cref="HitObject"/>. Override as necessary.
/// </summary>
public abstract double GameplayStartTime { get; }
/// <summary>
/// The currently loaded replay. Usually null in the case of a local player.
/// </summary>
public Score ReplayScore { get; protected set; }
2018-04-13 09:19:50 +00:00
/// <summary>
/// The cursor being displayed by the <see cref="Playfield"/>. May be null if no cursor is provided.
2018-04-13 09:19:50 +00:00
/// </summary>
public abstract CursorContainer Cursor { get; }
/// <summary>
/// Sets a replay to be used, overriding local input.
/// </summary>
/// <param name="replayScore">The replay, null for local input.</param>
public abstract void SetReplayScore(Score replayScore);
/// <summary>
/// Create a <see cref="ScoreProcessor"/> for the associated ruleset and link with this
/// <see cref="RulesetContainer"/>.
/// </summary>
/// <returns>A score processor.</returns>
public abstract ScoreProcessor CreateScoreProcessor();
2018-04-13 09:19:50 +00:00
}
/// <summary>
/// A derivable RulesetContainer that manages the Playfield and HitObjects.
/// </summary>
/// <typeparam name="TPlayfield">The type of Playfield contained by this RulesetContainer.</typeparam>
/// <typeparam name="TObject">The type of HitObject contained by this RulesetContainer.</typeparam>
public abstract class RulesetContainer<TPlayfield, TObject> : RulesetContainer<TObject>
where TObject : HitObject
where TPlayfield : Playfield
{
/// <summary>
/// The playfield.
/// </summary>
protected new TPlayfield Playfield => (TPlayfield)base.Playfield;
/// <summary>
/// Creates a ruleset visualisation for the provided ruleset and beatmap.
2018-04-13 09:19:50 +00:00
/// </summary>
/// <param name="ruleset">The ruleset being repesented.</param>
/// <param name="beatmap">The beatmap to create the hit renderer for.</param>
protected RulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
: base(ruleset, beatmap)
2018-04-13 09:19:50 +00:00
{
}
}
public class BeatmapInvalidForRulesetException : ArgumentException
{
public BeatmapInvalidForRulesetException(string text)
: base(text)
{
}
}
}