1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:47:25 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/UI/HitTarget.cs

93 lines
3.3 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-03-21 14:09:54 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Taiko.Objects;
2017-03-21 14:09:54 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Taiko.UI
2017-03-21 14:09:54 +08:00
{
2017-03-21 17:16:14 +08:00
/// <summary>
/// A component that is displayed at the hit position in the taiko playfield.
/// </summary>
2017-03-21 14:09:54 +08:00
internal class HitTarget : Container
{
/// <summary>
/// Thickness of all drawn line pieces.
/// </summary>
private const float border_thickness = 2.5f;
2017-03-21 14:09:54 +08:00
public HitTarget()
{
Children = new Drawable[]
{
new Box
{
2017-03-21 16:48:19 +08:00
Name = "Bar Upper",
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2017-08-03 12:06:36 +08:00
RelativeSizeAxes = Axes.Y,
Size = new Vector2(border_thickness, (1 - TaikoHitObject.DEFAULT_STRONG_SIZE) / 2f),
2017-03-21 16:48:19 +08:00
Alpha = 0.1f
2017-03-21 14:09:54 +08:00
},
2017-03-21 16:48:19 +08:00
new CircularContainer
2017-03-21 14:09:54 +08:00
{
Name = "Strong Hit Ring",
2017-03-21 14:09:54 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2017-08-03 12:06:36 +08:00
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit,
Scale = new Vector2(TaikoHitObject.DEFAULT_STRONG_SIZE),
Masking = true,
2017-03-21 16:48:19 +08:00
BorderColour = Color4.White,
BorderThickness = border_thickness,
2017-03-21 16:48:19 +08:00
Alpha = 0.1f,
Children = new[]
2017-03-21 14:09:54 +08:00
{
2017-03-21 16:48:19 +08:00
new Box
2017-03-21 14:09:54 +08:00
{
RelativeSizeAxes = Axes.Both,
2017-03-21 16:48:19 +08:00
Alpha = 0,
AlwaysPresent = true
}
}
},
new CircularContainer
{
Name = "Normal Hit Ring",
2017-03-21 16:48:19 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2017-08-03 12:06:36 +08:00
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit,
Scale = new Vector2(TaikoHitObject.DEFAULT_SIZE),
Masking = true,
2017-03-21 16:48:19 +08:00
BorderColour = Color4.White,
BorderThickness = border_thickness,
2017-03-21 16:48:19 +08:00
Alpha = 0.5f,
Children = new[]
{
new Box
{
2017-03-21 14:09:54 +08:00
RelativeSizeAxes = Axes.Both,
2017-03-21 16:48:19 +08:00
Alpha = 0,
AlwaysPresent = true
2017-03-21 14:09:54 +08:00
}
}
2017-03-21 16:48:19 +08:00
},
new Box
{
Name = "Bar Lower",
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
2017-08-03 12:06:36 +08:00
RelativeSizeAxes = Axes.Y,
Size = new Vector2(border_thickness, (1 - TaikoHitObject.DEFAULT_STRONG_SIZE) / 2f),
2017-03-21 16:48:19 +08:00
Alpha = 0.1f
},
2017-03-21 14:09:54 +08:00
};
}
}
}