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.
|
|
|
|
|
2020-03-22 18:49:45 -04:00
|
|
|
using System.Linq;
|
2019-12-20 18:30:23 +08:00
|
|
|
using osu.Framework.Bindables;
|
2019-12-22 16:45:32 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2019-12-20 18:30:23 +08:00
|
|
|
using osu.Game.Configuration;
|
2021-06-23 14:20:57 +09:00
|
|
|
using osu.Game.Rulesets.Catch.Beatmaps;
|
2019-12-20 18:30:23 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Mods
|
|
|
|
{
|
2021-06-23 14:20:57 +09:00
|
|
|
public class CatchModDifficultyAdjust : ModDifficultyAdjust, IApplicableToBeatmapProcessor
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
2021-07-11 10:14:42 +09:00
|
|
|
[SettingSource("Circle Size", "Override a beatmap's set CS.", FIRST_SETTING_ORDER - 1, SettingControlType = typeof(DifficultyAdjustSettingsControl))]
|
2021-07-08 16:40:32 +09:00
|
|
|
public DifficultyBindable CircleSize { get; } = new DifficultyBindable
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
2023-03-27 20:39:13 +05:30
|
|
|
MinValue = 0,
|
2019-12-20 18:30:23 +08:00
|
|
|
MaxValue = 10,
|
2021-07-08 16:56:16 +09:00
|
|
|
ExtendedMaxValue = 11,
|
2021-07-09 13:24:26 +09:00
|
|
|
ReadCurrentFromDifficulty = diff => diff.CircleSize,
|
2019-12-20 18:30:23 +08:00
|
|
|
};
|
|
|
|
|
2021-07-11 10:14:42 +09:00
|
|
|
[SettingSource("Approach Rate", "Override a beatmap's set AR.", LAST_SETTING_ORDER + 1, SettingControlType = typeof(DifficultyAdjustSettingsControl))]
|
2021-07-08 16:40:32 +09:00
|
|
|
public DifficultyBindable ApproachRate { get; } = new DifficultyBindable
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
2023-03-27 20:39:13 +05:30
|
|
|
MinValue = 0,
|
2019-12-20 18:30:23 +08:00
|
|
|
MaxValue = 10,
|
2021-07-08 16:56:16 +09:00
|
|
|
ExtendedMaxValue = 11,
|
2021-07-09 13:24:26 +09:00
|
|
|
ReadCurrentFromDifficulty = diff => diff.ApproachRate,
|
2019-12-20 18:30:23 +08:00
|
|
|
};
|
|
|
|
|
2021-06-23 14:20:57 +09:00
|
|
|
[SettingSource("Spicy Patterns", "Adjust the patterns as if Hard Rock is enabled.")]
|
|
|
|
public BindableBool HardRockOffsets { get; } = new BindableBool();
|
|
|
|
|
2020-03-20 16:34:36 -04:00
|
|
|
public override string SettingDescription
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2020-03-22 22:54:21 -04:00
|
|
|
string circleSize = CircleSize.IsDefault ? string.Empty : $"CS {CircleSize.Value:N1}";
|
|
|
|
string approachRate = ApproachRate.IsDefault ? string.Empty : $"AR {ApproachRate.Value:N1}";
|
2021-06-23 17:40:11 +09:00
|
|
|
string spicyPatterns = HardRockOffsets.IsDefault ? string.Empty : "Spicy patterns";
|
2020-03-20 16:34:36 -04:00
|
|
|
|
2020-03-22 18:49:45 -04:00
|
|
|
return string.Join(", ", new[]
|
|
|
|
{
|
|
|
|
circleSize,
|
|
|
|
base.SettingDescription,
|
2021-06-23 17:34:30 +09:00
|
|
|
approachRate,
|
|
|
|
spicyPatterns,
|
2020-03-22 18:49:45 -04:00
|
|
|
}.Where(s => !string.IsNullOrEmpty(s)));
|
2020-03-20 16:34:36 -04:00
|
|
|
}
|
|
|
|
}
|
2020-03-20 16:05:12 -04:00
|
|
|
|
2019-12-22 16:45:32 +08:00
|
|
|
protected override void ApplySettings(BeatmapDifficulty difficulty)
|
|
|
|
{
|
|
|
|
base.ApplySettings(difficulty);
|
|
|
|
|
2021-07-08 14:28:13 +09:00
|
|
|
if (CircleSize.Value != null) difficulty.CircleSize = CircleSize.Value.Value;
|
|
|
|
if (ApproachRate.Value != null) difficulty.ApproachRate = ApproachRate.Value.Value;
|
2019-12-22 16:45:32 +08:00
|
|
|
}
|
2021-06-23 14:20:57 +09:00
|
|
|
|
|
|
|
public void ApplyToBeatmapProcessor(IBeatmapProcessor beatmapProcessor)
|
|
|
|
{
|
|
|
|
var catchProcessor = (CatchBeatmapProcessor)beatmapProcessor;
|
|
|
|
catchProcessor.HardRockOffsets = HardRockOffsets.Value;
|
|
|
|
}
|
2019-12-20 18:30:23 +08:00
|
|
|
}
|
|
|
|
}
|