mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 15:17:30 +08:00
137 lines
4.2 KiB
C#
137 lines
4.2 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Modes.Mods;
|
|
using osu.Game.Modes.Objects;
|
|
using osu.Game.Modes.Objects.Drawables;
|
|
using osu.Game.Screens.Play;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Game.Modes.Judgements;
|
|
|
|
namespace osu.Game.Modes.UI
|
|
{
|
|
public abstract class HitRenderer : Container
|
|
{
|
|
public event Action<JudgementInfo> OnJudgement;
|
|
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; }
|
|
|
|
protected void TriggerOnJudgement(JudgementInfo j)
|
|
{
|
|
OnJudgement?.Invoke(j);
|
|
|
|
if (AllObjectsJudged)
|
|
OnAllJudged?.Invoke();
|
|
}
|
|
|
|
protected virtual KeyConversionInputManager CreateKeyConversionInputManager() => new KeyConversionInputManager();
|
|
}
|
|
|
|
public abstract class HitRenderer<TObject> : HitRenderer
|
|
where TObject : HitObject
|
|
{
|
|
public Beatmap<TObject> Beatmap;
|
|
|
|
protected HitRenderer(WorkingBeatmap beatmap)
|
|
{
|
|
Beatmap = CreateBeatmapConverter().Convert(beatmap.Beatmap);
|
|
|
|
applyMods(beatmap.Mods.Value);
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
}
|
|
|
|
private void applyMods(IEnumerable<Mod> mods)
|
|
{
|
|
if (mods == null)
|
|
return;
|
|
|
|
foreach (var mod in mods.OfType<IApplicableMod<TObject>>())
|
|
mod.Apply(this);
|
|
}
|
|
|
|
protected abstract IBeatmapConverter<TObject> CreateBeatmapConverter();
|
|
}
|
|
|
|
public abstract class HitRenderer<TObject, TJudgement> : HitRenderer<TObject>
|
|
where TObject : HitObject
|
|
where TJudgement : JudgementInfo
|
|
{
|
|
protected override Container<Drawable> Content => content;
|
|
protected override bool AllObjectsJudged => Playfield.HitObjects.Children.All(h => h.Judgement.Result.HasValue);
|
|
|
|
protected Playfield<TObject, TJudgement> Playfield;
|
|
|
|
private Container content;
|
|
|
|
protected HitRenderer(WorkingBeatmap beatmap)
|
|
: base(beatmap)
|
|
{
|
|
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()
|
|
{
|
|
foreach (TObject h in Beatmap.HitObjects)
|
|
{
|
|
var drawableObject = GetVisualRepresentation(h);
|
|
|
|
if (drawableObject == null)
|
|
continue;
|
|
|
|
drawableObject.OnJudgement += onJudgement;
|
|
|
|
Playfield.Add(drawableObject);
|
|
}
|
|
|
|
Playfield.PostProcess();
|
|
}
|
|
|
|
private void onJudgement(DrawableHitObject<TObject, TJudgement> j)
|
|
{
|
|
TriggerOnJudgement(j.Judgement);
|
|
Playfield.OnJudgement(j);
|
|
}
|
|
|
|
protected abstract DrawableHitObject<TObject, TJudgement> GetVisualRepresentation(TObject h);
|
|
protected abstract Playfield<TObject, TJudgement> CreatePlayfield();
|
|
}
|
|
}
|