2016-09-02 19:30:27 +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;
|
|
|
|
|
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.Mania;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.GameModes.Play.Mania
|
|
|
|
|
{
|
|
|
|
|
public class ManiaHitRenderer : HitRenderer
|
|
|
|
|
{
|
|
|
|
|
private readonly int columns;
|
|
|
|
|
List<ManiaBaseHit> objects;
|
|
|
|
|
private ManiaPlayfield playfield;
|
|
|
|
|
|
|
|
|
|
public ManiaHitRenderer(int columns = 5)
|
|
|
|
|
{
|
|
|
|
|
this.columns = columns;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-26 14:07:29 +08:00
|
|
|
|
public override List<HitObject> Objects
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
//osu! mode requires all objects to be of ManiaBaseHit type.
|
|
|
|
|
objects = value.ConvertAll(convertForMania);
|
|
|
|
|
|
|
|
|
|
if (Parent != null)
|
|
|
|
|
Load();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-26 14:07:29 +08:00
|
|
|
|
private ManiaBaseHit convertForMania(HitObject input)
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
|
|
|
|
ManiaBaseHit h = input as ManiaBaseHit;
|
|
|
|
|
|
|
|
|
|
if (h == null)
|
|
|
|
|
{
|
|
|
|
|
OsuBaseHit o = input as OsuBaseHit;
|
|
|
|
|
|
|
|
|
|
if (o == null) throw new Exception(@"Can't convert!");
|
|
|
|
|
|
|
|
|
|
h = new Note()
|
|
|
|
|
{
|
|
|
|
|
StartTime = o.StartTime,
|
|
|
|
|
Column = (int)Math.Round(o.Position.X / 512 * columns)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Load()
|
|
|
|
|
{
|
|
|
|
|
base.Load();
|
|
|
|
|
|
|
|
|
|
if (playfield == null)
|
|
|
|
|
Add(playfield = new ManiaPlayfield(columns));
|
|
|
|
|
else
|
|
|
|
|
playfield.Clear();
|
|
|
|
|
|
|
|
|
|
if (objects == null) return;
|
|
|
|
|
|
|
|
|
|
foreach (ManiaBaseHit h in objects)
|
|
|
|
|
{
|
|
|
|
|
//render stuff!
|
2016-09-21 12:12:05 +08:00
|
|
|
|
Sprite s = new Sprite
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2016-10-01 17:40:14 +08:00
|
|
|
|
Texture = Game.Textures.Get(@"Menu/logo"),
|
2016-09-02 19:30:27 +08:00
|
|
|
|
Origin = Anchor.Centre,
|
2016-09-11 01:27:42 +08:00
|
|
|
|
Scale = new Vector2(0.1f),
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativePositionAxes = Axes.Both,
|
2016-09-02 19:30:27 +08:00
|
|
|
|
Position = new Vector2((float)(h.Column + 0.5) / columns, -0.1f)
|
|
|
|
|
};
|
|
|
|
|
|
2016-09-03 15:17:15 +08:00
|
|
|
|
s.Transforms.Add(new TransformPositionY(Clock) { StartTime = h.StartTime - 200, EndTime = h.StartTime, StartValue = -0.1f, EndValue = 0.9f });
|
|
|
|
|
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 12:12:15 +08:00
|
|
|
|
s.Expire(true);
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
|
|
|
|
playfield.Add(s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|