1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Screens/Play/SongProgressBar.cs

75 lines
2.3 KiB
C#
Raw Normal View History

2017-03-22 19:54:21 +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 OpenTK;
using OpenTK.Graphics;
2017-03-22 19:54:21 +08:00
using osu.Game.Overlays;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2017-03-22 19:54:21 +08:00
namespace osu.Game.Screens.Play
{
public class SongProgressBar : DragBar
{
public Color4 FillColour
{
get { return Fill.Colour; }
set { Fill.Colour = value; }
}
public SongProgressBar(float barHeight, float handleBarHeight, Vector2 handleSize)
2017-03-22 19:54:21 +08:00
{
2017-03-23 18:38:08 +08:00
Height = barHeight + handleBarHeight + handleSize.Y;
Fill.RelativeSizeAxes = Axes.X;
Fill.Height = barHeight;
2017-03-22 19:54:21 +08:00
Add(new Box
{
Name = "Background",
2017-03-23 18:38:08 +08:00
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
RelativeSizeAxes = Axes.X,
Height = barHeight,
2017-03-22 19:54:21 +08:00
Colour = Color4.Black,
Alpha = 0.5f,
Depth = 1
});
Fill.Add(new Container
{
Origin = Anchor.BottomRight,
Anchor = Anchor.BottomRight,
Width = 2,
2017-03-23 18:38:08 +08:00
Height = barHeight + handleBarHeight,
2017-03-22 19:54:21 +08:00
Colour = Color4.White,
Position = new Vector2(2, 0),
2017-03-22 19:54:21 +08:00
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
},
new Container
{
Origin = Anchor.BottomCentre,
Anchor = Anchor.TopCentre,
2017-03-23 17:37:12 +08:00
Size = handleSize,
2017-03-22 19:54:21 +08:00
CornerRadius = 5,
Masking = true,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.White
}
}
}
}
});
}
}
}