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-23 06:49:45 +08: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 13:20:57 +08: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 13:20:57 +08:00
|
|
|
public class CatchModDifficultyAdjust : ModDifficultyAdjust, IApplicableToBeatmapProcessor
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
2020-03-21 04:05:12 +08:00
|
|
|
[SettingSource("Circle Size", "Override a beatmap's set CS.", FIRST_SETTING_ORDER - 1)]
|
2020-12-09 23:25:46 +08:00
|
|
|
public BindableNumber<float> CircleSize { get; } = new BindableFloatWithLimitExtension
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
|
|
|
MinValue = 1,
|
|
|
|
MaxValue = 10,
|
|
|
|
Default = 5,
|
|
|
|
Value = 5,
|
|
|
|
};
|
|
|
|
|
2020-03-21 04:05:12 +08:00
|
|
|
[SettingSource("Approach Rate", "Override a beatmap's set AR.", LAST_SETTING_ORDER + 1)]
|
2020-12-09 23:25:46 +08:00
|
|
|
public BindableNumber<float> ApproachRate { get; } = new BindableFloatWithLimitExtension
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
|
|
|
MinValue = 1,
|
|
|
|
MaxValue = 10,
|
|
|
|
Default = 5,
|
|
|
|
Value = 5,
|
|
|
|
};
|
|
|
|
|
2021-06-23 13:20:57 +08:00
|
|
|
[SettingSource("Spicy Patterns", "Adjust the patterns as if Hard Rock is enabled.")]
|
|
|
|
public BindableBool HardRockOffsets { get; } = new BindableBool();
|
|
|
|
|
2020-12-09 23:25:46 +08:00
|
|
|
protected override void ApplyLimits(bool extended)
|
|
|
|
{
|
|
|
|
base.ApplyLimits(extended);
|
|
|
|
|
|
|
|
CircleSize.MaxValue = extended ? 11 : 10;
|
|
|
|
ApproachRate.MaxValue = extended ? 11 : 10;
|
|
|
|
}
|
|
|
|
|
2020-03-21 04:34:36 +08:00
|
|
|
public override string SettingDescription
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2020-03-23 10:54:21 +08:00
|
|
|
string circleSize = CircleSize.IsDefault ? string.Empty : $"CS {CircleSize.Value:N1}";
|
|
|
|
string approachRate = ApproachRate.IsDefault ? string.Empty : $"AR {ApproachRate.Value:N1}";
|
2021-06-23 16:40:11 +08:00
|
|
|
string spicyPatterns = HardRockOffsets.IsDefault ? string.Empty : "Spicy patterns";
|
2020-03-21 04:34:36 +08:00
|
|
|
|
2020-03-23 06:49:45 +08:00
|
|
|
return string.Join(", ", new[]
|
|
|
|
{
|
|
|
|
circleSize,
|
|
|
|
base.SettingDescription,
|
2021-06-23 16:34:30 +08:00
|
|
|
approachRate,
|
|
|
|
spicyPatterns,
|
2020-03-23 06:49:45 +08:00
|
|
|
}.Where(s => !string.IsNullOrEmpty(s)));
|
2020-03-21 04:34:36 +08:00
|
|
|
}
|
|
|
|
}
|
2020-03-21 04:05:12 +08:00
|
|
|
|
2019-12-25 14:20:04 +08:00
|
|
|
protected override void TransferSettings(BeatmapDifficulty difficulty)
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
2019-12-25 14:20:04 +08:00
|
|
|
base.TransferSettings(difficulty);
|
2019-12-22 16:45:32 +08:00
|
|
|
|
2019-12-27 18:05:17 +08:00
|
|
|
TransferSetting(CircleSize, difficulty.CircleSize);
|
|
|
|
TransferSetting(ApproachRate, difficulty.ApproachRate);
|
2019-12-22 16:45:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void ApplySettings(BeatmapDifficulty difficulty)
|
|
|
|
{
|
|
|
|
base.ApplySettings(difficulty);
|
|
|
|
|
2021-01-07 04:57:54 +08:00
|
|
|
ApplySetting(CircleSize, cs => difficulty.CircleSize = cs);
|
|
|
|
ApplySetting(ApproachRate, ar => difficulty.ApproachRate = ar);
|
2019-12-22 16:45:32 +08:00
|
|
|
}
|
2021-06-23 13:20:57 +08:00
|
|
|
|
|
|
|
public void ApplyToBeatmapProcessor(IBeatmapProcessor beatmapProcessor)
|
|
|
|
{
|
|
|
|
var catchProcessor = (CatchBeatmapProcessor)beatmapProcessor;
|
|
|
|
catchProcessor.HardRockOffsets = HardRockOffsets.Value;
|
|
|
|
}
|
2019-12-20 18:30:23 +08:00
|
|
|
}
|
|
|
|
}
|