mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
68 lines
2.2 KiB
C#
68 lines
2.2 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using OpenTK;
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
{
|
|
public class DrawableBarLineMajor : DrawableBarLine
|
|
{
|
|
/// <summary>
|
|
/// The vertical offset of the triangles from the line tracker.
|
|
/// </summary>
|
|
private const float triangle_offfset = 10f;
|
|
|
|
/// <summary>
|
|
/// The size of the triangles.
|
|
/// </summary>
|
|
private const float triangle_size = 20f;
|
|
|
|
private readonly Container triangleContainer;
|
|
|
|
public DrawableBarLineMajor(BarLine barLine)
|
|
: base(barLine)
|
|
{
|
|
AddInternal(triangleContainer = new Container
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Children = new[]
|
|
{
|
|
new EquilateralTriangle
|
|
{
|
|
Name = "Top",
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Position = new Vector2(0, -triangle_offfset),
|
|
Size = new Vector2(-triangle_size),
|
|
EdgeSmoothness = new Vector2(1),
|
|
},
|
|
new EquilateralTriangle
|
|
{
|
|
Name = "Bottom",
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Position = new Vector2(0, triangle_offfset),
|
|
Size = new Vector2(triangle_size),
|
|
EdgeSmoothness = new Vector2(1),
|
|
}
|
|
}
|
|
});
|
|
|
|
Tracker.Alpha = 1f;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
using (triangleContainer.BeginAbsoluteSequence(HitObject.StartTime))
|
|
triangleContainer.FadeOut(150);
|
|
}
|
|
}
|
|
}
|