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.
|
|
|
|
|
|
|
|
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;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Mods
|
|
|
|
{
|
|
|
|
public class CatchModDifficultyAdjust : ModDifficultyAdjust
|
|
|
|
{
|
2020-02-13 13:07:37 +08:00
|
|
|
[SettingSource("Circle Size", "Override a beatmap's set CS.", FIRST_SETTING_ORDER - 1)]
|
2019-12-25 14:20:10 +08:00
|
|
|
public BindableNumber<float> CircleSize { get; } = new BindableFloat
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
|
|
|
MinValue = 1,
|
|
|
|
MaxValue = 10,
|
|
|
|
Default = 5,
|
|
|
|
Value = 5,
|
|
|
|
};
|
|
|
|
|
2020-02-13 13:07:37 +08:00
|
|
|
[SettingSource("Approach Rate", "Override a beatmap's set AR.", LAST_SETTING_ORDER + 1)]
|
2019-12-25 14:20:10 +08:00
|
|
|
public BindableNumber<float> ApproachRate { get; } = new BindableFloat
|
2019-12-20 18:30:23 +08:00
|
|
|
{
|
|
|
|
Precision = 0.1f,
|
|
|
|
MinValue = 1,
|
|
|
|
MaxValue = 10,
|
|
|
|
Default = 5,
|
|
|
|
Value = 5,
|
|
|
|
};
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
difficulty.CircleSize = CircleSize.Value;
|
|
|
|
difficulty.ApproachRate = ApproachRate.Value;
|
|
|
|
}
|
2019-12-20 18:30:23 +08:00
|
|
|
}
|
|
|
|
}
|