// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics; using osu.Framework.Graphics.Shapes; using OpenTK; using osu.Game.Rulesets.Objects.Drawables; using osu.Game.Rulesets.Taiko.Judgements; namespace osu.Game.Rulesets.Taiko.Objects.Drawables { /// /// A line that scrolls alongside hit objects in the playfield and visualises control points. /// public class DrawableBarLine : DrawableScrollingHitObject { /// /// The width of the line tracker. /// private const float tracker_width = 2f; /// /// Fade out time calibrated to a pre-empt of 1000ms. /// private const float base_fadeout_time = 100f; /// /// The visual line tracker. /// protected Box Tracker; /// /// The bar line. /// protected readonly BarLine BarLine; public DrawableBarLine(BarLine barLine) : base(barLine) { BarLine = barLine; Anchor = Anchor.CentreLeft; Origin = Anchor.Centre; RelativeSizeAxes = Axes.Y; Width = tracker_width; Children = new[] { Tracker = new Box { Anchor = Anchor.Centre, Origin = Anchor.Centre, RelativeSizeAxes = Axes.Both, EdgeSmoothness = new Vector2(0.5f, 0), Alpha = 0.75f } }; } protected override TaikoJudgement CreateJudgement() => null; protected override void UpdateState(ArmedState state) { } } }