mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:57:52 +08:00
53 lines
1.7 KiB
C#
53 lines
1.7 KiB
C#
// 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 System;
|
|
using System.Linq;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public class ModWindUp : ModTimeRamp
|
|
{
|
|
public override string Name => "Wind Up";
|
|
public override string Acronym => "WU";
|
|
public override LocalisableString Description => "Can you keep up?";
|
|
public override IconUsage? Icon => FontAwesome.Solid.ChevronCircleUp;
|
|
|
|
public override BindableNumber<double> InitialRate { get; } = new BindableDouble(1)
|
|
{
|
|
MinValue = 0.5,
|
|
MaxValue = 1.99,
|
|
Precision = 0.01,
|
|
};
|
|
|
|
public override BindableNumber<double> FinalRate { get; } = new BindableDouble(1.5)
|
|
{
|
|
MinValue = 0.51,
|
|
MaxValue = 2,
|
|
Precision = 0.01,
|
|
};
|
|
|
|
public override BindableBool AdjustPitch { get; } = new BindableBool(true);
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(ModWindDown)).ToArray();
|
|
|
|
public ModWindUp()
|
|
{
|
|
InitialRate.BindValueChanged(val =>
|
|
{
|
|
if (val.NewValue >= FinalRate.Value)
|
|
FinalRate.Value = val.NewValue + FinalRate.Precision;
|
|
});
|
|
|
|
FinalRate.BindValueChanged(val =>
|
|
{
|
|
if (val.NewValue <= InitialRate.Value)
|
|
InitialRate.Value = val.NewValue - InitialRate.Precision;
|
|
});
|
|
}
|
|
}
|
|
}
|