2017-03-21 19:39:18 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2017-06-20 13:54:23 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-03-21 19:39:18 +08:00
|
|
|
|
using OpenTK;
|
2017-08-08 15:01:18 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-03-21 19:39:18 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
2017-03-21 19:39:18 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A line that scrolls alongside hit objects in the playfield and visualises control points.
|
|
|
|
|
/// </summary>
|
2017-09-06 17:05:51 +08:00
|
|
|
|
public class DrawableBarLine : DrawableScrollingHitObject<TaikoHitObject>
|
2017-03-21 19:39:18 +08:00
|
|
|
|
{
|
2017-04-03 09:04:13 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The width of the line tracker.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private const float tracker_width = 2f;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fade out time calibrated to a pre-empt of 1000ms.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private const float base_fadeout_time = 100f;
|
|
|
|
|
|
2017-03-21 19:39:18 +08:00
|
|
|
|
/// <summary>
|
2017-04-02 01:06:58 +08:00
|
|
|
|
/// The visual line tracker.
|
2017-03-21 19:39:18 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
protected Box Tracker;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-04-02 01:06:58 +08:00
|
|
|
|
/// The bar line.
|
2017-03-21 19:39:18 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
protected readonly BarLine BarLine;
|
|
|
|
|
|
|
|
|
|
public DrawableBarLine(BarLine barLine)
|
2017-08-08 15:01:18 +08:00
|
|
|
|
: base(barLine)
|
2017-03-21 19:39:18 +08:00
|
|
|
|
{
|
|
|
|
|
BarLine = barLine;
|
|
|
|
|
|
2017-08-09 09:54:00 +08:00
|
|
|
|
Anchor = Anchor.CentreLeft;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2017-03-21 19:39:18 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
2017-04-03 09:04:13 +08:00
|
|
|
|
Width = tracker_width;
|
2017-03-21 19:39:18 +08:00
|
|
|
|
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
Tracker = new Box
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
EdgeSmoothness = new Vector2(0.5f, 0),
|
|
|
|
|
Alpha = 0.75f
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-08 15:01:18 +08:00
|
|
|
|
protected override void UpdateState(ArmedState state)
|
2017-03-21 19:39:18 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-21 14:35:16 +08:00
|
|
|
|
}
|