mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:07:44 +08:00
67 lines
2.1 KiB
C#
67 lines
2.1 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 System;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Utils;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
{
|
|
public partial class OsuSliderDrawingSettingsProvider : Drawable, ISliderDrawingSettingsProvider
|
|
{
|
|
public BindableFloat Tolerance { get; } = new BindableFloat(0.1f)
|
|
{
|
|
MinValue = 0.05f,
|
|
MaxValue = 1f,
|
|
Precision = 0.01f
|
|
};
|
|
|
|
private readonly BindableInt sliderTolerance = new BindableInt(10)
|
|
{
|
|
MinValue = 5,
|
|
MaxValue = 100
|
|
};
|
|
|
|
private ExpandableSlider<int> toleranceSlider = null!;
|
|
|
|
public OsuSliderDrawingSettingsProvider()
|
|
{
|
|
sliderTolerance.BindValueChanged(v =>
|
|
{
|
|
float newValue = v.NewValue / 100f;
|
|
if (!Precision.AlmostEquals(newValue, Tolerance.Value, 1e-7f))
|
|
Tolerance.Value = newValue;
|
|
});
|
|
Tolerance.BindValueChanged(v =>
|
|
{
|
|
int newValue = (int)Math.Round(v.NewValue * 100f);
|
|
if (sliderTolerance.Value != newValue)
|
|
sliderTolerance.Value = newValue;
|
|
});
|
|
}
|
|
|
|
public void AttachToToolbox(ExpandingToolboxContainer toolboxContainer)
|
|
{
|
|
toolboxContainer.Add(new EditorToolboxGroup("drawing")
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
toleranceSlider = new ExpandableSlider<int>
|
|
{
|
|
Current = sliderTolerance
|
|
}
|
|
}
|
|
});
|
|
|
|
sliderTolerance.BindValueChanged(e =>
|
|
{
|
|
toleranceSlider.ContractedLabelText = $"C. P. S.: {e.NewValue:N0}";
|
|
toleranceSlider.ExpandedLabelText = $"Control Point Spacing: {e.NewValue:N0}";
|
|
}, true);
|
|
}
|
|
}
|
|
}
|