osu/osu.Game/Modes/UI/HitRenderer.cs

130 lines
4.2 KiB
C#
Raw Normal View History

// 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 10:25:13 +00:00
2016-11-14 08:23:33 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2016-09-02 10:25:13 +00:00
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Modes.Mods;
2016-11-14 09:03:20 +00:00
using osu.Game.Modes.Objects;
2016-11-14 10:49:29 +00:00
using osu.Game.Modes.Objects.Drawables;
using osu.Game.Screens.Play;
using System;
using System.Collections.Generic;
2017-03-14 08:14:11 +00:00
using System.Diagnostics;
using System.Linq;
2016-09-02 10:25:13 +00:00
2016-11-14 09:54:24 +00:00
namespace osu.Game.Modes.UI
2016-09-02 10:25:13 +00:00
{
public abstract class HitRenderer : Container
{
public event Action<JudgementInfo> OnJudgement;
2016-11-29 14:59:56 +00:00
public event Action OnAllJudged;
internal readonly PlayerInputManager InputManager = new PlayerInputManager();
protected readonly KeyConversionInputManager KeyConversionInputManager;
protected HitRenderer()
{
KeyConversionInputManager = CreateKeyConversionInputManager();
KeyConversionInputManager.RelativeSizeAxes = Axes.Both;
}
/// <summary>
/// Whether all the HitObjects have been judged.
/// </summary>
protected abstract bool AllObjectsJudged { get; }
2017-02-28 11:14:48 +00:00
2016-11-29 14:59:56 +00:00
protected void TriggerOnJudgement(JudgementInfo j)
{
OnJudgement?.Invoke(j);
if (AllObjectsJudged)
2016-11-29 14:59:56 +00:00
OnAllJudged?.Invoke();
}
protected virtual KeyConversionInputManager CreateKeyConversionInputManager() => new KeyConversionInputManager();
2017-03-06 04:59:11 +00:00
}
2016-11-02 05:07:20 +00:00
2017-03-06 04:59:11 +00:00
public abstract class HitRenderer<TObject> : HitRenderer
where TObject : HitObject
{
public Beatmap<TObject> Beatmap;
protected override Container<Drawable> Content => content;
protected override bool AllObjectsJudged => Playfield.HitObjects.Children.All(h => h.Judgement.Result.HasValue);
protected Playfield<TObject> Playfield;
2017-03-11 15:34:21 +00:00
private Container content;
protected HitRenderer(WorkingBeatmap beatmap)
{
2017-03-14 08:14:11 +00:00
Debug.Assert(beatmap != null, "HitRenderer initialized with a null beatmap.");
// Convert + process the beatmap
Beatmap = CreateBeatmapConverter().Convert(beatmap.Beatmap);
Beatmap.HitObjects.ForEach(h => CreateBeatmapProcessor().SetDefaults(h, Beatmap));
CreateBeatmapProcessor().PostProcess(Beatmap);
2017-03-11 15:34:21 +00:00
applyMods(beatmap.Mods.Value);
RelativeSizeAxes = Axes.Both;
KeyConversionInputManager.Add(Playfield = CreatePlayfield());
InputManager.Add(content = new Container
{
RelativeSizeAxes = Axes.Both,
Children = new[] { KeyConversionInputManager }
});
AddInternal(InputManager);
}
[BackgroundDependencyLoader]
private void load()
{
loadObjects();
if (InputManager?.ReplayInputHandler != null)
InputManager.ReplayInputHandler.ToScreenSpace = Playfield.ScaledContent.ToScreenSpace;
}
private void loadObjects()
{
2017-03-11 15:34:21 +00:00
foreach (TObject h in Beatmap.HitObjects)
{
2017-03-06 04:59:11 +00:00
DrawableHitObject<TObject> drawableObject = GetVisualRepresentation(h);
if (drawableObject == null)
continue;
drawableObject.OnJudgement += onJudgement;
2016-11-02 05:07:20 +00:00
Playfield.Add(drawableObject);
}
2017-02-10 05:16:23 +00:00
Playfield.PostProcess();
}
private void applyMods(IEnumerable<Mod> mods)
{
if (mods == null)
return;
2017-03-14 03:38:30 +00:00
foreach (var mod in mods.OfType<IApplicableMod<TObject>>())
2017-03-14 03:52:12 +00:00
mod.Apply(this);
}
2017-03-06 04:59:11 +00:00
private void onJudgement(DrawableHitObject<TObject> o, JudgementInfo j) => TriggerOnJudgement(j);
2017-03-06 04:59:11 +00:00
protected abstract DrawableHitObject<TObject> GetVisualRepresentation(TObject h);
protected abstract Playfield<TObject> CreatePlayfield();
protected abstract IBeatmapConverter<TObject> CreateBeatmapConverter();
protected abstract IBeatmapProcessor<TObject> CreateBeatmapProcessor();
2016-09-02 10:25:13 +00:00
}
}