1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:47:25 +08:00
osu-lazer/osu.Game/Modes/UI/HitRenderer.cs

91 lines
2.4 KiB
C#
Raw Normal View History

2016-09-02 18:25:13 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
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;
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;
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
{
public abstract class HitRenderer : Container
{
public Action<HitObject> OnHit;
public Action<HitObject> OnMiss;
2016-11-02 13:07:20 +08:00
protected Playfield Playfield;
public IEnumerable<DrawableHitObject> DrawableObjects => Playfield.HitObjects.Children;
}
public abstract class HitRenderer<T> : HitRenderer
where T : HitObject
2016-09-02 18:25:13 +08:00
{
private List<T> objects;
public List<HitObject> Objects
{
set
{
objects = Convert(value);
if (IsLoaded)
loadObjects();
}
}
protected abstract Playfield CreatePlayfield();
protected abstract HitObjectConverter<T> Converter { get; }
protected virtual List<T> Convert(List<HitObject> objects) => Converter.Convert(objects);
public HitRenderer()
{
RelativeSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
private void load()
{
Children = new Drawable[]
2016-10-05 19:49:31 +08:00
{
2016-11-02 13:07:20 +08:00
Playfield = CreatePlayfield()
};
loadObjects();
}
private void loadObjects()
{
if (objects == null) return;
foreach (T h in objects)
{
var drawableObject = GetVisualRepresentation(h);
if (drawableObject == null) continue;
drawableObject.OnHit = onHit;
drawableObject.OnMiss = onMiss;
2016-11-02 13:07:20 +08:00
Playfield.Add(drawableObject);
}
}
private void onMiss(DrawableHitObject obj)
{
OnMiss?.Invoke(obj.HitObject);
}
private void onHit(DrawableHitObject obj)
{
OnHit?.Invoke(obj.HitObject);
}
protected abstract DrawableHitObject GetVisualRepresentation(T h);
2016-09-02 18:25:13 +08:00
}
}