2019-12-20 18:30:23 +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.
|
|
|
|
|
2021-01-29 13:48:51 +08:00
|
|
|
using System.Linq;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Configuration;
|
2019-12-20 18:30:23 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Mods
|
|
|
|
{
|
|
|
|
public class TaikoModDifficultyAdjust : ModDifficultyAdjust
|
|
|
|
{
|
2021-07-08 15:40:32 +08:00
|
|
|
[SettingSource("Scroll Speed", "Adjust a beatmap's set scroll speed", LAST_SETTING_ORDER + 1, SettingControlType = typeof(DifficultyAdjustSettingsControl))]
|
|
|
|
public DifficultyBindable ScrollSpeed { get; } = new DifficultyBindable
|
2021-01-29 13:48:51 +08:00
|
|
|
{
|
|
|
|
Precision = 0.05f,
|
|
|
|
MinValue = 0.25f,
|
|
|
|
MaxValue = 4,
|
2021-07-09 12:24:26 +08:00
|
|
|
ReadCurrentFromDifficulty = _ => 1,
|
2021-01-29 13:48:51 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
public override string SettingDescription
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2021-01-29 17:04:55 +08:00
|
|
|
string scrollSpeed = ScrollSpeed.IsDefault ? string.Empty : $"Scroll x{ScrollSpeed.Value:N1}";
|
2021-01-29 13:48:51 +08:00
|
|
|
|
|
|
|
return string.Join(", ", new[]
|
|
|
|
{
|
|
|
|
base.SettingDescription,
|
2021-01-29 17:04:55 +08:00
|
|
|
scrollSpeed
|
2021-01-29 13:48:51 +08:00
|
|
|
}.Where(s => !string.IsNullOrEmpty(s)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void ApplySettings(BeatmapDifficulty difficulty)
|
|
|
|
{
|
|
|
|
base.ApplySettings(difficulty);
|
|
|
|
|
2021-07-08 15:40:32 +08:00
|
|
|
if (ScrollSpeed.Value != null) difficulty.SliderMultiplier *= ScrollSpeed.Value.Value;
|
2021-01-29 13:48:51 +08:00
|
|
|
}
|
2019-12-20 18:30:23 +08:00
|
|
|
}
|
|
|
|
}
|