2019-12-20 10:30:23 +00: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-03-22 22:49:45 +00:00
|
|
|
using System.Linq;
|
2019-12-22 08:45:32 +00:00
|
|
|
using osu.Game.Beatmaps;
|
2019-12-20 10:30:23 +00:00
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
|
|
|
public class OsuModDifficultyAdjust : ModDifficultyAdjust
|
|
|
|
{
|
2021-07-08 06:53:49 +00:00
|
|
|
[SettingSource("Circle Size", "Override a beatmap's set CS.", FIRST_SETTING_ORDER - 1, SettingControlType = typeof(DifficultyAdjustSettingsControl))]
|
2021-07-08 07:40:32 +00:00
|
|
|
public DifficultyBindable CircleSize { get; } = new DifficultyBindable
|
2019-12-20 10:30:23 +00:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
2020-07-13 23:15:14 +00:00
|
|
|
MinValue = 0,
|
2019-12-20 10:30:23 +00:00
|
|
|
MaxValue = 10,
|
2021-07-08 07:40:32 +00:00
|
|
|
ExtendedMaxValue = 11,
|
2021-07-08 07:56:16 +00:00
|
|
|
ReadFromDifficulty = diff => diff.CircleSize,
|
2019-12-20 10:30:23 +00:00
|
|
|
};
|
|
|
|
|
2021-07-08 07:56:16 +00:00
|
|
|
[SettingSource("Approach Rate", "Override a beatmap's set AR.", LAST_SETTING_ORDER + 1, SettingControlType = typeof(DifficultyAdjustSettingsControl))]
|
2021-07-08 07:40:32 +00:00
|
|
|
public DifficultyBindable ApproachRate { get; } = new DifficultyBindable
|
2019-12-20 10:30:23 +00:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
2020-07-13 23:15:14 +00:00
|
|
|
MinValue = 0,
|
2019-12-20 10:30:23 +00:00
|
|
|
MaxValue = 10,
|
2021-07-08 07:40:32 +00:00
|
|
|
ExtendedMaxValue = 11,
|
2021-07-08 07:56:16 +00:00
|
|
|
ReadFromDifficulty = diff => diff.ApproachRate,
|
2019-12-20 10:30:23 +00:00
|
|
|
};
|
|
|
|
|
2020-03-20 20:34:36 +00:00
|
|
|
public override string SettingDescription
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2020-03-23 02:54:21 +00:00
|
|
|
string circleSize = CircleSize.IsDefault ? string.Empty : $"CS {CircleSize.Value:N1}";
|
|
|
|
string approachRate = ApproachRate.IsDefault ? string.Empty : $"AR {ApproachRate.Value:N1}";
|
2020-03-20 20:34:36 +00:00
|
|
|
|
2020-03-22 22:49:45 +00:00
|
|
|
return string.Join(", ", new[]
|
|
|
|
{
|
|
|
|
circleSize,
|
|
|
|
base.SettingDescription,
|
|
|
|
approachRate
|
|
|
|
}.Where(s => !string.IsNullOrEmpty(s)));
|
2020-03-20 20:34:36 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-20 20:05:12 +00:00
|
|
|
|
2019-12-22 08:45:32 +00:00
|
|
|
protected override void ApplySettings(BeatmapDifficulty difficulty)
|
|
|
|
{
|
|
|
|
base.ApplySettings(difficulty);
|
|
|
|
|
2021-07-08 05:28:13 +00:00
|
|
|
if (CircleSize.Value != null) difficulty.CircleSize = CircleSize.Value.Value;
|
|
|
|
if (ApproachRate.Value != null) difficulty.ApproachRate = ApproachRate.Value.Value;
|
2019-12-22 08:45:32 +00:00
|
|
|
}
|
2019-12-20 10:30:23 +00:00
|
|
|
}
|
2019-12-20 10:42:29 +00:00
|
|
|
}
|