mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08:00
69 lines
2.1 KiB
C#
69 lines
2.1 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using OpenTK;
|
|
using OpenTK.Input;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|
{
|
|
/// <summary>
|
|
/// Visualises a <see cref="BarLine"/>. Although this derives DrawableManiaHitObject,
|
|
/// this does not handle input/sound like a normal hit object.
|
|
/// </summary>
|
|
public class DrawableBarLine : DrawableManiaHitObject<BarLine>
|
|
{
|
|
public DrawableBarLine(BarLine barLine)
|
|
: base(barLine, null)
|
|
{
|
|
AutoSizeAxes = Axes.Y;
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
Add(new Box
|
|
{
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 1
|
|
});
|
|
|
|
bool isMajor = barLine.BeatIndex % (int)barLine.ControlPoint.TimeSignature == 0;
|
|
|
|
if (isMajor)
|
|
{
|
|
Add(new EquilateralTriangle
|
|
{
|
|
Name = "Left triangle",
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.TopCentre,
|
|
Size = new Vector2(12),
|
|
X = -9,
|
|
Rotation = 90,
|
|
BypassAutoSizeAxes = Axes.Both
|
|
});
|
|
|
|
Add(new EquilateralTriangle
|
|
{
|
|
Name = "Right triangle",
|
|
Anchor = Anchor.BottomRight,
|
|
Origin = Anchor.TopCentre,
|
|
Size = new Vector2(12),
|
|
X = 9,
|
|
Rotation = -90,
|
|
BypassAutoSizeAxes = Axes.Both,
|
|
});
|
|
}
|
|
|
|
if (!isMajor && barLine.BeatIndex % 2 == 1)
|
|
Alpha = 0.2f;
|
|
}
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
{
|
|
}
|
|
}
|
|
} |