2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2019-05-09 17:05:28 +08:00
|
|
|
|
using osu.Framework.MathUtils;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
public class SongProgressBar : SliderBar<double>
|
|
|
|
|
{
|
|
|
|
|
public Action<double> OnSeek;
|
|
|
|
|
|
|
|
|
|
private readonly Box fill;
|
|
|
|
|
private readonly Container handleBase;
|
|
|
|
|
|
|
|
|
|
public Color4 FillColour
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
set => fill.Colour = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double StartTime
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
set => CurrentNumber.MinValue = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double EndTime
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
set => CurrentNumber.MaxValue = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double CurrentTime
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
set => CurrentNumber.Value = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SongProgressBar(float barHeight, float handleBarHeight, Vector2 handleSize)
|
|
|
|
|
{
|
|
|
|
|
CurrentNumber.MinValue = 0;
|
|
|
|
|
CurrentNumber.MaxValue = 1;
|
|
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
Height = barHeight + handleBarHeight + handleSize.Y;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Name = "Background",
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = barHeight,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
Depth = 1,
|
|
|
|
|
},
|
|
|
|
|
fill = new Box
|
|
|
|
|
{
|
|
|
|
|
Name = "Fill",
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Height = barHeight,
|
|
|
|
|
},
|
|
|
|
|
handleBase = new Container
|
|
|
|
|
{
|
|
|
|
|
Name = "HandleBar container",
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Width = 2,
|
|
|
|
|
Height = barHeight + handleBarHeight,
|
|
|
|
|
Colour = Color4.White,
|
|
|
|
|
Position = new Vector2(2, 0),
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Name = "HandleBar box",
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Name = "Handle container",
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Size = handleSize,
|
|
|
|
|
CornerRadius = 5,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Name = "Handle box",
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.White
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateValue(float value)
|
|
|
|
|
{
|
2019-05-09 17:05:28 +08:00
|
|
|
|
// handled in update
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
2019-05-10 17:04:58 +08:00
|
|
|
|
float newX = (float)Interpolation.Lerp(handleBase.X, NormalizedValue * UsableWidth, MathHelper.Clamp(Time.Elapsed / 40, 0, 1));
|
2019-05-09 17:05:28 +08:00
|
|
|
|
|
|
|
|
|
fill.Width = newX;
|
|
|
|
|
handleBase.X = newX;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-08 15:31:44 +08:00
|
|
|
|
protected override void OnUserChange(double value) => OnSeek?.Invoke(value);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|