osu/osu.Game/GameModes/Play/Taiko/TaikoHitRenderer.cs

84 lines
2.5 KiB
C#
Raw Normal View History

2016-09-02 10:50:22 +00: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;
using System.Collections.Generic;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Transformations;
using osu.Game.Beatmaps.Objects;
using osu.Game.Beatmaps.Objects.Osu;
using osu.Game.Beatmaps.Objects.Taiko;
using OpenTK;
namespace osu.Game.GameModes.Play.Taiko
{
public class TaikoHitRenderer : HitRenderer
{
List<TaikoBaseHit> objects;
private TaikoPlayfield playfield;
2016-09-26 06:07:29 +00:00
public override List<HitObject> Objects
2016-09-02 10:50:22 +00:00
{
set
{
//osu! mode requires all objects to be of TaikoBaseHit type.
objects = value.ConvertAll(convertForTaiko);
if (Parent != null)
Load();
}
}
2016-09-26 06:07:29 +00:00
private TaikoBaseHit convertForTaiko(HitObject input)
2016-09-02 10:50:22 +00:00
{
TaikoBaseHit h = input as TaikoBaseHit;
if (h == null)
{
OsuBaseHit o = input as OsuBaseHit;
if (o == null) throw new Exception(@"Can't convert!");
h = new TaikoBaseHit()
{
StartTime = o.StartTime
};
}
return h;
}
public override void Load()
{
base.Load();
if (playfield == null)
Add(playfield = new TaikoPlayfield());
else
playfield.Clear();
if (objects == null) return;
foreach (TaikoBaseHit h in objects)
{
//render stuff!
2016-09-21 04:12:05 +00:00
Sprite s = new Sprite
2016-09-02 10:50:22 +00:00
{
Texture = Game.Textures.Get(@"Menu/logo"),
2016-09-02 10:50:22 +00:00
Origin = Anchor.Centre,
2016-09-10 17:27:42 +00:00
Scale = new Vector2(0.2f),
RelativePositionAxes = Axes.Both,
2016-09-02 10:50:22 +00:00
Position = new Vector2(1.1f, 0.5f)
};
2016-09-03 07:17:15 +00:00
s.Transforms.Add(new TransformPositionX(Clock) { StartTime = h.StartTime - 200, EndTime = h.StartTime, StartValue = 1.1f, EndValue = 0.1f });
s.Transforms.Add(new TransformAlpha(Clock) { StartTime = h.StartTime + h.Duration + 200, EndTime = h.StartTime + h.Duration + 400, StartValue = 1, EndValue = 0 });
2016-09-21 04:12:15 +00:00
s.Expire(true);
2016-09-02 10:50:22 +00:00
playfield.Add(s);
}
}
}
}