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;
|
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;
|
|
|
|
|
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
|
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
public abstract class HitRenderer<T> : Container
|
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
|
|
|
|
|
2016-10-13 09:10:15 +08:00
|
|
|
|
public List<HitObject> Objects
|
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
|
|
|
|
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-09-02 19:30:27 +08:00
|
|
|
|
{
|
2016-10-10 16:17:26 +08:00
|
|
|
|
base.Load(game);
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2016-10-13 09:10:15 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
2016-10-05 19:49:31 +08:00
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
playfield = CreatePlayfield()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
loadObjects();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void loadObjects()
|
|
|
|
|
{
|
|
|
|
|
if (objects == null) return;
|
|
|
|
|
foreach (T h in objects)
|
|
|
|
|
playfield.Add(GetVisualRepresentation(h));
|
2016-09-02 19:30:27 +08:00
|
|
|
|
}
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
|
|
|
|
protected abstract Drawable GetVisualRepresentation(T h);
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|