2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-03-10 14:08:53 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-03-15 20:40:19 +08:00
|
|
|
|
using osu.Game.Modes.Judgements;
|
2017-03-12 21:13:43 +08:00
|
|
|
|
using osu.Game.Modes.Mods;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 18:49:29 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2017-03-06 14:24:00 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-03-10 14:08:53 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2017-03-14 16:14:11 +08:00
|
|
|
|
using System.Diagnostics;
|
2017-03-12 00:19:51 +08:00
|
|
|
|
using System.Linq;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
namespace osu.Game.Modes.UI
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
2017-03-15 20:58:00 +08:00
|
|
|
|
/// Base HitRenderer. Doesn't hold objects.
|
|
|
|
|
/// <para>
|
|
|
|
|
/// Should not be derived - derive <see cref="HitRenderer{TObject, TJudgement}"/> instead.
|
|
|
|
|
/// </para>
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// </summary>
|
2016-10-19 18:44:03 +08:00
|
|
|
|
public abstract class HitRenderer : Container
|
|
|
|
|
{
|
2016-11-29 22:59:56 +08:00
|
|
|
|
public event Action OnAllJudged;
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The input manager for this HitRenderer.
|
|
|
|
|
/// </summary>
|
2017-03-07 18:30:39 +08:00
|
|
|
|
internal readonly PlayerInputManager InputManager = new PlayerInputManager();
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The key conversion input manager for this HitRenderer.
|
|
|
|
|
/// </summary>
|
2017-03-14 15:15:26 +08:00
|
|
|
|
protected readonly KeyConversionInputManager KeyConversionInputManager;
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether all the HitObjects have been judged.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected abstract bool AllObjectsJudged { get; }
|
|
|
|
|
|
2017-03-14 15:15:26 +08:00
|
|
|
|
protected HitRenderer()
|
|
|
|
|
{
|
|
|
|
|
KeyConversionInputManager = CreateKeyConversionInputManager();
|
|
|
|
|
KeyConversionInputManager.RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
2017-03-07 18:30:39 +08:00
|
|
|
|
|
2017-03-10 14:08:53 +08:00
|
|
|
|
/// <summary>
|
2017-03-16 11:40:35 +08:00
|
|
|
|
/// Checks whether all HitObjects have been judged, and invokes OnAllJudged.
|
2017-03-10 14:08:53 +08:00
|
|
|
|
/// </summary>
|
2017-03-16 11:40:35 +08:00
|
|
|
|
protected void CheckAllJudged()
|
2016-11-29 22:59:56 +08:00
|
|
|
|
{
|
2017-03-12 00:19:51 +08:00
|
|
|
|
if (AllObjectsJudged)
|
2016-11-29 22:59:56 +08:00
|
|
|
|
OnAllJudged?.Invoke();
|
|
|
|
|
}
|
2017-03-14 15:15:26 +08:00
|
|
|
|
|
2017-03-16 11:40:35 +08:00
|
|
|
|
public abstract ScoreProcessor CreateScoreProcessor();
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a key conversion input manager.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The input manager.</returns>
|
2017-03-14 15:15:26 +08:00
|
|
|
|
protected virtual KeyConversionInputManager CreateKeyConversionInputManager() => new KeyConversionInputManager();
|
2017-03-06 12:59:11 +08:00
|
|
|
|
}
|
2016-11-02 13:07:20 +08:00
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// HitRenderer that applies conversion to Beatmaps. Does not contain a Playfield
|
|
|
|
|
/// and does not load drawable hit objects.
|
2017-03-15 20:58:00 +08:00
|
|
|
|
/// <para>
|
|
|
|
|
/// Should not be derived - derive <see cref="HitRenderer{TObject, TJudgement}"/> instead.
|
|
|
|
|
/// </para>
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="TObject">The type of HitObject contained by this HitRenderer.</typeparam>
|
2017-03-06 12:59:11 +08:00
|
|
|
|
public abstract class HitRenderer<TObject> : HitRenderer
|
|
|
|
|
where TObject : HitObject
|
|
|
|
|
{
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The Beatmap
|
|
|
|
|
/// </summary>
|
2017-03-12 21:13:43 +08:00
|
|
|
|
public Beatmap<TObject> Beatmap;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-03-12 17:03:13 +08:00
|
|
|
|
protected HitRenderer(WorkingBeatmap beatmap)
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2017-03-14 16:14:11 +08:00
|
|
|
|
Debug.Assert(beatmap != null, "HitRenderer initialized with a null beatmap.");
|
|
|
|
|
|
2017-03-16 15:55:08 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2017-03-11 23:34:21 +08:00
|
|
|
|
|
2017-03-16 15:55:08 +08:00
|
|
|
|
IBeatmapConverter<TObject> converter = CreateBeatmapConverter();
|
|
|
|
|
IBeatmapProcessor<TObject> processor = CreateBeatmapProcessor();
|
2017-03-11 23:34:21 +08:00
|
|
|
|
|
2017-03-16 15:55:08 +08:00
|
|
|
|
// Convert the beatmap
|
|
|
|
|
Beatmap = converter.Convert(beatmap.Beatmap);
|
|
|
|
|
|
|
|
|
|
// Apply defaults
|
|
|
|
|
foreach (var h in Beatmap.HitObjects)
|
2017-03-16 23:38:40 +08:00
|
|
|
|
h.ApplyDefaults(Beatmap.TimingInfo, Beatmap.BeatmapInfo.Difficulty);
|
2017-03-16 15:55:08 +08:00
|
|
|
|
|
|
|
|
|
// Post-process the beatmap
|
|
|
|
|
processor.PostProcess(Beatmap);
|
|
|
|
|
|
|
|
|
|
// Add mods, should always be the last thing applied to give full control to mods
|
|
|
|
|
applyMods(beatmap.Mods.Value);
|
2017-03-15 17:55:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 15:55:08 +08:00
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Applies the active mods to this HitRenderer.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="mods"></param>
|
2017-03-15 17:55:38 +08:00
|
|
|
|
private void applyMods(IEnumerable<Mod> mods)
|
|
|
|
|
{
|
|
|
|
|
if (mods == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
foreach (var mod in mods.OfType<IApplicableMod<TObject>>())
|
|
|
|
|
mod.Apply(this);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a converter to convert Beatmap to a specific mode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The Beatmap converter.</returns>
|
2017-03-15 17:55:38 +08:00
|
|
|
|
protected abstract IBeatmapConverter<TObject> CreateBeatmapConverter();
|
2017-03-15 20:40:19 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a processor to perform post-processing operations
|
|
|
|
|
/// on HitObjects in converted Beatmaps.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The Beatmap processor.</returns>
|
|
|
|
|
protected abstract IBeatmapProcessor<TObject> CreateBeatmapProcessor();
|
2017-03-15 17:55:38 +08:00
|
|
|
|
}
|
2017-03-07 18:30:39 +08:00
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A derivable HitRenderer that manages the Playfield and HitObjects.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="TObject">The type of HitObject contained by this HitRenderer.</typeparam>
|
|
|
|
|
/// <typeparam name="TJudgement">The type of Judgement of DrawableHitObjects contained by this HitRenderer.</typeparam>
|
2017-03-15 17:55:38 +08:00
|
|
|
|
public abstract class HitRenderer<TObject, TJudgement> : HitRenderer<TObject>
|
|
|
|
|
where TObject : HitObject
|
|
|
|
|
where TJudgement : JudgementInfo
|
|
|
|
|
{
|
2017-03-16 11:40:35 +08:00
|
|
|
|
public event Action<TJudgement> OnJudgement;
|
|
|
|
|
|
2017-03-15 17:55:38 +08:00
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
protected override bool AllObjectsJudged => Playfield.HitObjects.Children.All(h => h.Judgement.Result.HasValue);
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The playfield.
|
|
|
|
|
/// </summary>
|
2017-03-15 17:55:38 +08:00
|
|
|
|
protected Playfield<TObject, TJudgement> Playfield;
|
|
|
|
|
|
|
|
|
|
private Container content;
|
|
|
|
|
|
|
|
|
|
protected HitRenderer(WorkingBeatmap beatmap)
|
|
|
|
|
: base(beatmap)
|
|
|
|
|
{
|
2017-03-14 15:00:35 +08:00
|
|
|
|
KeyConversionInputManager.Add(Playfield = CreatePlayfield());
|
|
|
|
|
|
2017-03-07 18:30:39 +08:00
|
|
|
|
InputManager.Add(content = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-03-14 15:15:26 +08:00
|
|
|
|
Children = new[] { KeyConversionInputManager }
|
2017-03-07 18:30:39 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddInternal(InputManager);
|
2016-11-13 01:34:36 +08:00
|
|
|
|
}
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
loadObjects();
|
2017-03-12 21:13:43 +08:00
|
|
|
|
|
|
|
|
|
if (InputManager?.ReplayInputHandler != null)
|
|
|
|
|
InputManager.ReplayInputHandler.ToScreenSpace = Playfield.ScaledContent.ToScreenSpace;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void loadObjects()
|
|
|
|
|
{
|
2017-03-11 23:34:21 +08:00
|
|
|
|
foreach (TObject h in Beatmap.HitObjects)
|
2016-10-19 18:44:03 +08:00
|
|
|
|
{
|
2017-03-15 17:55:38 +08:00
|
|
|
|
var drawableObject = GetVisualRepresentation(h);
|
2016-10-19 18:44:03 +08:00
|
|
|
|
|
2017-03-10 14:08:53 +08:00
|
|
|
|
if (drawableObject == null)
|
|
|
|
|
continue;
|
2016-10-19 18:44:03 +08:00
|
|
|
|
|
2016-11-29 20:28:43 +08:00
|
|
|
|
drawableObject.OnJudgement += onJudgement;
|
2016-10-19 18:44:03 +08:00
|
|
|
|
|
2016-11-02 13:07:20 +08:00
|
|
|
|
Playfield.Add(drawableObject);
|
2016-10-19 18:44:03 +08:00
|
|
|
|
}
|
2017-03-10 14:08:53 +08:00
|
|
|
|
|
2017-02-10 13:16:23 +08:00
|
|
|
|
Playfield.PostProcess();
|
2016-10-19 18:44:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Triggered when an object's Judgement is updated.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="judgedObject">The object that Judgement has been updated for.</param>
|
|
|
|
|
private void onJudgement(DrawableHitObject<TObject, TJudgement> judgedObject)
|
2017-03-12 21:13:43 +08:00
|
|
|
|
{
|
2017-03-16 11:40:35 +08:00
|
|
|
|
OnJudgement?.Invoke(judgedObject.Judgement);
|
2017-03-15 17:58:41 +08:00
|
|
|
|
Playfield.OnJudgement(judgedObject);
|
2017-03-16 11:40:35 +08:00
|
|
|
|
|
|
|
|
|
CheckAllJudged();
|
2017-03-12 21:13:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-15 17:58:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a DrawableHitObject from a HitObject.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="h">The HitObject to make drawable.</param>
|
|
|
|
|
/// <returns>The DrawableHitObject.</returns>
|
2017-03-15 17:55:38 +08:00
|
|
|
|
protected abstract DrawableHitObject<TObject, TJudgement> GetVisualRepresentation(TObject h);
|
2017-03-15 17:58:41 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a Playfield.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The Playfield.</returns>
|
2017-03-15 17:55:38 +08:00
|
|
|
|
protected abstract Playfield<TObject, TJudgement> CreatePlayfield();
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|