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;
|
2022-01-28 12:53:48 +08:00
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2022-08-11 01:53:20 +08:00
|
|
|
using osu.Game.Localisation;
|
2020-10-06 14:51:40 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Setup
|
|
|
|
{
|
2023-07-21 17:52:19 +08:00
|
|
|
public partial class DifficultySection : SetupSection
|
2020-10-06 14:51:40 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
private FormSliderBar<float> circleSizeSlider { get; set; } = null!;
|
|
|
|
private FormSliderBar<float> healthDrainSlider { get; set; } = null!;
|
|
|
|
private FormSliderBar<float> approachRateSlider { get; set; } = null!;
|
|
|
|
private FormSliderBar<float> overallDifficultySlider { get; set; } = null!;
|
|
|
|
private FormSliderBar<double> baseVelocitySlider { get; set; } = null!;
|
|
|
|
private FormSliderBar<double> tickRateSlider { get; set; } = null!;
|
2020-10-06 16:01:50 +08:00
|
|
|
|
2022-08-15 23:14:16 +08:00
|
|
|
public override LocalisableString Title => EditorSetupStrings.DifficultyHeader;
|
2021-04-04 01:02:33 +08:00
|
|
|
|
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
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
circleSizeSlider = new FormSliderBar<float>
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = BeatmapsetsStrings.ShowStatsCs,
|
|
|
|
HintText = EditorSetupStrings.CircleSizeDescription,
|
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,
|
2024-08-28 18:17:39 +08:00
|
|
|
},
|
2024-10-04 20:03:38 +08:00
|
|
|
TransferValueOnCommit = true,
|
2024-08-28 18:17:39 +08:00
|
|
|
TabbableContentContainer = this,
|
2020-10-06 16:01:50 +08:00
|
|
|
},
|
2024-08-28 18:17:39 +08:00
|
|
|
healthDrainSlider = new FormSliderBar<float>
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = BeatmapsetsStrings.ShowStatsDrain,
|
|
|
|
HintText = EditorSetupStrings.DrainRateDescription,
|
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,
|
2024-08-28 18:17:39 +08:00
|
|
|
},
|
2024-10-04 20:03:38 +08:00
|
|
|
TransferValueOnCommit = true,
|
2024-08-28 18:17:39 +08:00
|
|
|
TabbableContentContainer = this,
|
2020-10-06 16:01:50 +08:00
|
|
|
},
|
2024-08-28 18:17:39 +08:00
|
|
|
approachRateSlider = new FormSliderBar<float>
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = BeatmapsetsStrings.ShowStatsAr,
|
|
|
|
HintText = EditorSetupStrings.ApproachRateDescription,
|
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,
|
2024-08-28 18:17:39 +08:00
|
|
|
},
|
2024-10-04 20:03:38 +08:00
|
|
|
TransferValueOnCommit = true,
|
2024-08-28 18:17:39 +08:00
|
|
|
TabbableContentContainer = this,
|
2020-10-06 16:01:50 +08:00
|
|
|
},
|
2024-08-28 18:17:39 +08:00
|
|
|
overallDifficultySlider = new FormSliderBar<float>
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = BeatmapsetsStrings.ShowStatsAccuracy,
|
|
|
|
HintText = EditorSetupStrings.OverallDifficultyDescription,
|
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,
|
2024-08-28 18:17:39 +08:00
|
|
|
},
|
2024-10-04 20:03:38 +08:00
|
|
|
TransferValueOnCommit = true,
|
2024-08-28 18:17:39 +08:00
|
|
|
TabbableContentContainer = this,
|
2020-10-06 16:01:50 +08:00
|
|
|
},
|
2024-08-28 18:17:39 +08:00
|
|
|
baseVelocitySlider = new FormSliderBar<double>
|
2023-05-07 12:20:57 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = EditorSetupStrings.BaseVelocity,
|
|
|
|
HintText = EditorSetupStrings.BaseVelocityDescription,
|
2023-05-09 15:58:19 +08:00
|
|
|
Current = new BindableDouble(Beatmap.Difficulty.SliderMultiplier)
|
2023-05-07 12:20:57 +08:00
|
|
|
{
|
2023-12-06 12:38:46 +08:00
|
|
|
Default = 1.4,
|
2023-05-08 12:51:52 +08:00
|
|
|
MinValue = 0.4,
|
|
|
|
MaxValue = 3.6,
|
|
|
|
Precision = 0.01f,
|
2024-08-28 18:17:39 +08:00
|
|
|
},
|
2024-10-04 20:03:38 +08:00
|
|
|
TransferValueOnCommit = true,
|
2024-08-28 18:17:39 +08:00
|
|
|
TabbableContentContainer = this,
|
2023-05-07 12:20:57 +08:00
|
|
|
},
|
2024-08-28 18:17:39 +08:00
|
|
|
tickRateSlider = new FormSliderBar<double>
|
2023-05-08 13:14:54 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = EditorSetupStrings.TickRate,
|
|
|
|
HintText = EditorSetupStrings.TickRateDescription,
|
2023-05-08 13:14:54 +08:00
|
|
|
Current = new BindableDouble(Beatmap.Difficulty.SliderTickRate)
|
|
|
|
{
|
|
|
|
Default = 1,
|
|
|
|
MinValue = 1,
|
|
|
|
MaxValue = 4,
|
|
|
|
Precision = 1,
|
2024-08-28 18:17:39 +08:00
|
|
|
},
|
2024-10-04 20:03:38 +08:00
|
|
|
TransferValueOnCommit = true,
|
2024-08-28 18:17:39 +08:00
|
|
|
TabbableContentContainer = this,
|
2023-05-08 13:14:54 +08:00
|
|
|
},
|
2020-10-06 14:51:40 +08:00
|
|
|
};
|
2020-10-06 16:01:50 +08:00
|
|
|
|
2024-08-28 18:17:39 +08:00
|
|
|
foreach (var item in Children.OfType<FormSliderBar<float>>())
|
2023-05-08 12:23:13 +08:00
|
|
|
item.Current.ValueChanged += _ => updateValues();
|
|
|
|
|
2024-08-28 18:17:39 +08:00
|
|
|
foreach (var item in Children.OfType<FormSliderBar<double>>())
|
2023-05-08 12:23:13 +08:00
|
|
|
item.Current.ValueChanged += _ => updateValues();
|
2020-10-06 16:01:50 +08:00
|
|
|
}
|
|
|
|
|
2023-05-08 12:23:13 +08:00
|
|
|
private void updateValues()
|
2020-10-06 16:01:50 +08:00
|
|
|
{
|
|
|
|
// 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.
|
2024-07-10 20:42:11 +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;
|
|
|
|
Beatmap.Difficulty.SliderMultiplier = baseVelocitySlider.Current.Value;
|
|
|
|
Beatmap.Difficulty.SliderTickRate = tickRateSlider.Current.Value;
|
2020-10-06 16:12:19 +08:00
|
|
|
|
2021-01-07 18:10:19 +08:00
|
|
|
Beatmap.UpdateAllHitObjects();
|
2022-08-16 15:31:56 +08:00
|
|
|
Beatmap.SaveState();
|
2020-10-06 14:51:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|