mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Screens.Edit.Timing.RowAttributes
|
|
{
|
|
public class DifficultyRowAttribute : RowAttribute
|
|
{
|
|
private readonly BindableNumber<double> speedMultiplier;
|
|
|
|
private OsuSpriteText text;
|
|
|
|
public DifficultyRowAttribute(DifficultyControlPoint difficulty)
|
|
: base(difficulty, "difficulty")
|
|
{
|
|
speedMultiplier = difficulty.SliderVelocityBindable.GetBoundCopy();
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Content.AddRange(new Drawable[]
|
|
{
|
|
new AttributeProgressBar(Point)
|
|
{
|
|
Current = speedMultiplier,
|
|
},
|
|
text = new AttributeText(Point)
|
|
{
|
|
Width = 45,
|
|
},
|
|
});
|
|
|
|
speedMultiplier.BindValueChanged(_ => updateText(), true);
|
|
}
|
|
|
|
private void updateText() => text.Text = $"{speedMultiplier.Value:n2}x";
|
|
}
|
|
}
|