2021-04-19 14:06:07 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-04-19 14:06:07 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Beatmaps.Timing;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2022-05-28 07:20:04 +08:00
|
|
|
using osu.Game.Overlays;
|
2021-04-19 14:06:07 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Timing.RowAttributes
|
|
|
|
{
|
2021-04-19 14:27:38 +08:00
|
|
|
public class TimingRowAttribute : RowAttribute
|
2021-04-19 14:06:07 +08:00
|
|
|
{
|
|
|
|
private readonly BindableNumber<double> beatLength;
|
2022-01-23 00:27:27 +08:00
|
|
|
private readonly Bindable<TimeSignature> timeSignature;
|
2021-04-19 14:06:07 +08:00
|
|
|
private OsuSpriteText text;
|
|
|
|
|
|
|
|
public TimingRowAttribute(TimingControlPoint timing)
|
2021-04-19 14:27:38 +08:00
|
|
|
: base(timing, "timing")
|
2021-04-19 14:06:07 +08:00
|
|
|
{
|
|
|
|
timeSignature = timing.TimeSignatureBindable.GetBoundCopy();
|
|
|
|
beatLength = timing.BeatLengthBindable.GetBoundCopy();
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-05-28 07:20:04 +08:00
|
|
|
private void load(OverlayColourProvider colourProvider)
|
2021-04-19 14:06:07 +08:00
|
|
|
{
|
2021-04-19 16:57:07 +08:00
|
|
|
Content.Add(text = new AttributeText(Point));
|
2021-04-19 14:06:07 +08:00
|
|
|
|
2022-05-28 07:20:04 +08:00
|
|
|
Background.Colour = colourProvider.Background4;
|
|
|
|
|
2021-04-19 14:06:07 +08:00
|
|
|
timeSignature.BindValueChanged(_ => updateText());
|
|
|
|
beatLength.BindValueChanged(_ => updateText(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateText() =>
|
|
|
|
text.Text = $"{60000 / beatLength.Value:n1}bpm {timeSignature.Value.GetDescription()}";
|
|
|
|
}
|
|
|
|
}
|