2020-10-06 14:51:40 +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.
|
|
|
|
|
2020-10-06 16:01:50 +08:00
|
|
|
using System.Linq;
|
2020-10-06 14:51:40 +08:00
|
|
|
using osu.Framework.Allocation;
|
2020-10-06 16:01:50 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-10-06 14:51:40 +08:00
|
|
|
using osu.Framework.Graphics;
|
2021-04-04 01:02:33 +08:00
|
|
|
using osu.Framework.Localisation;
|
2020-10-06 16:01:50 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2020-10-06 14:51:40 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Setup
|
|
|
|
{
|
|
|
|
internal class DifficultySection : SetupSection
|
|
|
|
{
|
2020-10-06 16:01:50 +08:00
|
|
|
private LabelledSliderBar<float> circleSizeSlider;
|
|
|
|
private LabelledSliderBar<float> healthDrainSlider;
|
|
|
|
private LabelledSliderBar<float> approachRateSlider;
|
|
|
|
private LabelledSliderBar<float> overallDifficultySlider;
|
|
|
|
|
2021-04-04 01:02:33 +08:00
|
|
|
public override LocalisableString Title => "Difficulty";
|
|
|
|
|
2020-10-06 14:51:40 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-10-06 18:34:21 +08:00
|
|
|
Children = new Drawable[]
|
2020-10-06 14:51:40 +08:00
|
|
|
{
|
2020-10-06 16:01:50 +08:00
|
|
|
circleSizeSlider = new LabelledSliderBar<float>
|
|
|
|
{
|
2020-10-06 16:17:03 +08:00
|
|
|
Label = "Object Size",
|
2021-06-08 23:14:26 +08:00
|
|
|
FixedLabelWidth = LABEL_WIDTH,
|
2020-10-06 16:17:03 +08:00
|
|
|
Description = "The size of all hit objects",
|
2021-10-02 11:34:29 +08:00
|
|
|
Current = new BindableFloat(Beatmap.Difficulty.CircleSize)
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
|
|
|
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
|
2020-12-02 08:11:24 +08:00
|
|
|
MinValue = 0,
|
|
|
|
MaxValue = 10,
|
2020-10-07 13:26:01 +08:00
|
|
|
Precision = 0.1f,
|
2020-10-06 16:01:50 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
healthDrainSlider = new LabelledSliderBar<float>
|
|
|
|
{
|
|
|
|
Label = "Health Drain",
|
2021-06-08 23:14:26 +08:00
|
|
|
FixedLabelWidth = LABEL_WIDTH,
|
2020-10-06 16:17:03 +08:00
|
|
|
Description = "The rate of passive health drain throughout playable time",
|
2021-10-02 11:34:29 +08:00
|
|
|
Current = new BindableFloat(Beatmap.Difficulty.DrainRate)
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
|
|
|
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
|
|
|
|
MinValue = 0,
|
2020-10-07 13:26:01 +08:00
|
|
|
MaxValue = 10,
|
|
|
|
Precision = 0.1f,
|
2020-10-06 16:01:50 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
approachRateSlider = new LabelledSliderBar<float>
|
|
|
|
{
|
|
|
|
Label = "Approach Rate",
|
2021-06-08 23:14:26 +08:00
|
|
|
FixedLabelWidth = LABEL_WIDTH,
|
2020-10-06 16:17:03 +08:00
|
|
|
Description = "The speed at which objects are presented to the player",
|
2021-10-02 11:34:29 +08:00
|
|
|
Current = new BindableFloat(Beatmap.Difficulty.ApproachRate)
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
|
|
|
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
|
|
|
|
MinValue = 0,
|
2020-10-07 13:26:01 +08:00
|
|
|
MaxValue = 10,
|
|
|
|
Precision = 0.1f,
|
2020-10-06 16:01:50 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
overallDifficultySlider = new LabelledSliderBar<float>
|
|
|
|
{
|
|
|
|
Label = "Overall Difficulty",
|
2021-06-08 23:14:26 +08:00
|
|
|
FixedLabelWidth = LABEL_WIDTH,
|
2020-10-06 16:17:03 +08:00
|
|
|
Description = "The harshness of hit windows and difficulty of special objects (ie. spinners)",
|
2021-10-02 11:34:29 +08:00
|
|
|
Current = new BindableFloat(Beatmap.Difficulty.OverallDifficulty)
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
|
|
|
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
|
|
|
|
MinValue = 0,
|
2020-10-07 13:26:01 +08:00
|
|
|
MaxValue = 10,
|
|
|
|
Precision = 0.1f,
|
2020-10-06 16:01:50 +08:00
|
|
|
}
|
|
|
|
},
|
2020-10-06 14:51:40 +08:00
|
|
|
};
|
2020-10-06 16:01:50 +08:00
|
|
|
|
2020-10-06 18:34:21 +08:00
|
|
|
foreach (var item in Children.OfType<LabelledSliderBar<float>>())
|
2020-10-06 16:01:50 +08:00
|
|
|
item.Current.ValueChanged += onValueChanged;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onValueChanged(ValueChangedEvent<float> args)
|
|
|
|
{
|
|
|
|
// for now, update these on commit rather than making BeatmapMetadata bindables.
|
|
|
|
// after switching database engines we can reconsider if switching to bindables is a good direction.
|
2021-10-02 11:34:29 +08:00
|
|
|
Beatmap.Difficulty.CircleSize = circleSizeSlider.Current.Value;
|
|
|
|
Beatmap.Difficulty.DrainRate = healthDrainSlider.Current.Value;
|
|
|
|
Beatmap.Difficulty.ApproachRate = approachRateSlider.Current.Value;
|
|
|
|
Beatmap.Difficulty.OverallDifficulty = overallDifficultySlider.Current.Value;
|
2020-10-06 16:12:19 +08:00
|
|
|
|
2021-01-07 18:10:19 +08:00
|
|
|
Beatmap.UpdateAllHitObjects();
|
2020-10-06 14:51:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|