2019-10-28 11:42:17 +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.
|
|
|
|
|
2019-10-27 14:19:36 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-11-06 13:36:43 +08:00
|
|
|
using osu.Framework.Bindables;
|
2019-10-27 14:19:36 +08:00
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Timing
|
|
|
|
{
|
|
|
|
internal class DifficultySection : Section<DifficultyControlPoint>
|
|
|
|
{
|
2020-09-30 16:52:12 +08:00
|
|
|
private SliderWithTextBoxInput<double> multiplierSlider;
|
2019-10-27 14:19:36 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
Flow.AddRange(new[]
|
|
|
|
{
|
2020-09-30 16:52:12 +08:00
|
|
|
multiplierSlider = new SliderWithTextBoxInput<double>("Speed Multiplier")
|
2019-10-28 15:21:31 +08:00
|
|
|
{
|
2021-03-19 16:13:30 +08:00
|
|
|
Current = new DifficultyControlPoint().SpeedMultiplierBindable,
|
|
|
|
KeyboardStep = 0.1f
|
2019-10-28 15:21:31 +08:00
|
|
|
}
|
2019-10-27 14:19:36 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-06 13:36:43 +08:00
|
|
|
protected override void OnControlPointChanged(ValueChangedEvent<DifficultyControlPoint> point)
|
2019-10-27 14:19:36 +08:00
|
|
|
{
|
2019-11-06 15:22:55 +08:00
|
|
|
if (point.NewValue != null)
|
2019-10-28 15:21:31 +08:00
|
|
|
{
|
2021-03-30 14:24:11 +08:00
|
|
|
var selectedPointBindable = point.NewValue.SpeedMultiplierBindable;
|
|
|
|
|
|
|
|
// there may be legacy control points, which contain infinite precision for compatibility reasons (see LegacyDifficultyControlPoint).
|
|
|
|
// generally that level of precision could only be set by externally editing the .osu file, so at the point
|
|
|
|
// a user is looking to update this within the editor it should be safe to obliterate this additional precision.
|
|
|
|
double expectedPrecision = new DifficultyControlPoint().SpeedMultiplierBindable.Precision;
|
|
|
|
if (selectedPointBindable.Precision < expectedPrecision)
|
|
|
|
selectedPointBindable.Precision = expectedPrecision;
|
|
|
|
|
|
|
|
multiplierSlider.Current = selectedPointBindable;
|
2020-10-02 16:58:22 +08:00
|
|
|
multiplierSlider.Current.BindValueChanged(_ => ChangeHandler?.SaveState());
|
2019-11-06 15:22:55 +08:00
|
|
|
}
|
2019-10-27 14:19:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override DifficultyControlPoint CreatePoint()
|
|
|
|
{
|
2021-01-04 15:38:15 +08:00
|
|
|
var reference = Beatmap.ControlPointInfo.DifficultyPointAt(SelectedGroup.Value.Time);
|
2019-10-27 14:19:36 +08:00
|
|
|
|
|
|
|
return new DifficultyControlPoint
|
|
|
|
{
|
|
|
|
SpeedMultiplier = reference.SpeedMultiplier,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|