1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/GameModes/Play/HitRenderer.cs

56 lines
1.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
using System.Collections.Generic;
using osu.Framework.Graphics;
2016-09-02 18:25:13 +08:00
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps.Objects;
2016-10-10 16:17:26 +08:00
using osu.Framework;
2016-09-02 18:25:13 +08:00
namespace osu.Game.GameModes.Play
{
public abstract class HitRenderer<T> : Container
2016-09-02 18:25:13 +08:00
{
private List<T> objects;
public List<HitObject> Objects
{
set
{
objects = Convert(value);
if (IsLoaded)
loadObjects();
}
}
private Playfield playfield;
protected abstract Playfield CreatePlayfield();
protected abstract List<T> Convert(List<HitObject> objects);
2016-10-10 16:17:26 +08:00
public override void Load(BaseGame game)
{
2016-10-10 16:17:26 +08:00
base.Load(game);
RelativeSizeAxes = Axes.Both;
Children = new Drawable[]
2016-10-05 19:49:31 +08:00
{
playfield = CreatePlayfield()
};
loadObjects();
}
private void loadObjects()
{
if (objects == null) return;
foreach (T h in objects)
playfield.Add(GetVisualRepresentation(h));
}
protected abstract Drawable GetVisualRepresentation(T h);
2016-09-02 18:25:13 +08:00
}
}