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 System;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
using System.Collections.Generic;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
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;
|
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-02-09 13:56:39 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
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
|
|
|
|
{
|
2016-10-19 18:44:03 +08:00
|
|
|
|
public abstract class HitRenderer : Container
|
|
|
|
|
{
|
2016-11-29 20:28:43 +08:00
|
|
|
|
public event Action<JudgementInfo> OnJudgement;
|
|
|
|
|
|
2016-11-29 22:59:56 +08:00
|
|
|
|
public event Action OnAllJudged;
|
|
|
|
|
|
|
|
|
|
protected void TriggerOnJudgement(JudgementInfo j)
|
|
|
|
|
{
|
|
|
|
|
OnJudgement?.Invoke(j);
|
|
|
|
|
if (AllObjectsJudged)
|
|
|
|
|
OnAllJudged?.Invoke();
|
|
|
|
|
}
|
2016-11-02 13:07:20 +08:00
|
|
|
|
|
|
|
|
|
protected Playfield Playfield;
|
|
|
|
|
|
2016-11-29 22:59:56 +08:00
|
|
|
|
public bool AllObjectsJudged => Playfield.HitObjects.Children.First()?.Judgement.Result != null; //reverse depth sort means First() instead of Last().
|
|
|
|
|
|
2016-11-19 18:07:57 +08:00
|
|
|
|
public IEnumerable<DrawableHitObject> DrawableObjects => Playfield.HitObjects.Children;
|
2016-10-19 18:44:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public abstract class HitRenderer<T> : HitRenderer
|
2016-10-13 21:14:18 +08:00
|
|
|
|
where T : HitObject
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
private List<T> objects;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-02-09 13:56:39 +08:00
|
|
|
|
public Beatmap Beatmap
|
2016-10-01 17:40:14 +08:00
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
objects = Convert(value);
|
|
|
|
|
if (IsLoaded)
|
|
|
|
|
loadObjects();
|
|
|
|
|
}
|
2016-10-01 17:40:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-13 09:10:15 +08:00
|
|
|
|
protected abstract Playfield CreatePlayfield();
|
|
|
|
|
|
2016-10-13 21:14:18 +08:00
|
|
|
|
protected abstract HitObjectConverter<T> Converter { get; }
|
|
|
|
|
|
2017-02-09 13:56:39 +08:00
|
|
|
|
protected virtual List<T> Convert(Beatmap beatmap) => Converter.Convert(beatmap);
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
public HitRenderer()
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
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
|
|
|
|
Children = new Drawable[]
|
2016-10-05 19:49:31 +08:00
|
|
|
|
{
|
2016-11-02 13:07:20 +08:00
|
|
|
|
Playfield = CreatePlayfield()
|
2016-10-13 09:10:15 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
loadObjects();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void loadObjects()
|
|
|
|
|
{
|
|
|
|
|
if (objects == null) return;
|
|
|
|
|
foreach (T h in objects)
|
2016-10-19 18:44:03 +08:00
|
|
|
|
{
|
|
|
|
|
var drawableObject = GetVisualRepresentation(h);
|
|
|
|
|
|
|
|
|
|
if (drawableObject == null) continue;
|
|
|
|
|
|
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-02-10 13:16:23 +08:00
|
|
|
|
Playfield.PostProcess();
|
2016-10-19 18:44:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-29 20:28:43 +08:00
|
|
|
|
private void onJudgement(DrawableHitObject o, JudgementInfo j) => TriggerOnJudgement(j);
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2016-10-19 18:44:03 +08:00
|
|
|
|
protected abstract DrawableHitObject GetVisualRepresentation(T h);
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|