1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 03:27:26 +08:00
osu-lazer/osu.Game/Screens/Edit/Setup/DifficultySection.cs

96 lines
4.0 KiB
C#
Raw Normal View History

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;
2020-10-06 16:01:50 +08:00
using osu.Game.Beatmaps;
2020-10-06 14:51:40 +08:00
using osu.Game.Graphics.Sprites;
2020-10-06 16:01:50 +08:00
using osu.Game.Graphics.UserInterfaceV2;
2020-10-06 14:51:40 +08:00
namespace osu.Game.Screens.Edit.Setup
{
internal class DifficultySection : SetupSection
{
[Resolved]
private EditorBeatmap editorBeatmap { get; set; }
2020-10-06 16:01:50 +08:00
private LabelledSliderBar<float> circleSizeSlider;
private LabelledSliderBar<float> healthDrainSlider;
private LabelledSliderBar<float> approachRateSlider;
private LabelledSliderBar<float> overallDifficultySlider;
2020-10-06 14:51:40 +08:00
[BackgroundDependencyLoader]
private void load()
{
Flow.Children = new Drawable[]
{
new OsuSpriteText
{
Text = "Difficulty settings"
},
2020-10-06 16:01:50 +08:00
circleSizeSlider = new LabelledSliderBar<float>
{
2020-10-06 16:17:03 +08:00
Label = "Object Size",
Description = "The size of all hit objects",
2020-10-06 16:01:50 +08:00
Current = new BindableFloat(Beatmap.Value.BeatmapInfo.BaseDifficulty.CircleSize)
{
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
MinValue = 2,
MaxValue = 7
}
},
healthDrainSlider = new LabelledSliderBar<float>
{
Label = "Health Drain",
2020-10-06 16:17:03 +08:00
Description = "The rate of passive health drain throughout playable time",
2020-10-06 16:01:50 +08:00
Current = new BindableFloat(Beatmap.Value.BeatmapInfo.BaseDifficulty.DrainRate)
{
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
MinValue = 0,
MaxValue = 10
}
},
approachRateSlider = new LabelledSliderBar<float>
{
Label = "Approach Rate",
2020-10-06 16:17:03 +08:00
Description = "The speed at which objects are presented to the player",
2020-10-06 16:01:50 +08:00
Current = new BindableFloat(Beatmap.Value.BeatmapInfo.BaseDifficulty.ApproachRate)
{
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
MinValue = 0,
MaxValue = 10
}
},
overallDifficultySlider = new LabelledSliderBar<float>
{
Label = "Overall Difficulty",
2020-10-06 16:17:03 +08:00
Description = "The harshness of hit windows and difficulty of special objects (ie. spinners)",
2020-10-06 16:01:50 +08:00
Current = new BindableFloat(Beatmap.Value.BeatmapInfo.BaseDifficulty.OverallDifficulty)
{
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
MinValue = 0,
MaxValue = 10
}
},
2020-10-06 14:51:40 +08:00
};
2020-10-06 16:01:50 +08:00
foreach (var item in Flow.OfType<LabelledSliderBar<float>>())
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.
Beatmap.Value.BeatmapInfo.BaseDifficulty.CircleSize = circleSizeSlider.Current.Value;
Beatmap.Value.BeatmapInfo.BaseDifficulty.DrainRate = healthDrainSlider.Current.Value;
Beatmap.Value.BeatmapInfo.BaseDifficulty.ApproachRate = approachRateSlider.Current.Value;
Beatmap.Value.BeatmapInfo.BaseDifficulty.OverallDifficulty = overallDifficultySlider.Current.Value;
editorBeatmap.UpdateBeatmap();
2020-10-06 14:51:40 +08:00
}
}
}