2019-03-12 09:14:41 +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.
|
|
|
|
|
2021-02-23 18:10:03 +00:00
|
|
|
using System;
|
2019-12-09 10:41:31 +00:00
|
|
|
using osu.Framework.Audio;
|
|
|
|
using osu.Framework.Bindables;
|
2019-03-12 09:14:41 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2021-01-31 16:43:16 +00:00
|
|
|
public abstract class ModRateAdjust : Mod, IApplicableToRate
|
2019-03-12 09:14:41 +00:00
|
|
|
{
|
2022-05-05 11:37:38 +00:00
|
|
|
public override bool ValidForMultiplayerAsFreeMod => false;
|
2022-03-17 00:40:40 +00:00
|
|
|
|
2019-12-09 10:41:31 +00:00
|
|
|
public abstract BindableNumber<double> SpeedChange { get; }
|
2019-03-12 09:14:41 +00:00
|
|
|
|
2022-05-10 15:01:15 +00:00
|
|
|
public virtual void ApplyToTrack(IAdjustableAudioComponent track)
|
2019-03-12 09:14:41 +00:00
|
|
|
{
|
2020-08-11 16:41:21 +00:00
|
|
|
track.AddAdjustment(AdjustableProperty.Tempo, SpeedChange);
|
2019-03-12 09:14:41 +00:00
|
|
|
}
|
2020-03-23 02:57:46 +00:00
|
|
|
|
2022-05-10 15:01:36 +00:00
|
|
|
public virtual void ApplyToSample(IAdjustableAudioComponent sample)
|
2020-06-16 13:58:23 +00:00
|
|
|
{
|
|
|
|
sample.AddAdjustment(AdjustableProperty.Frequency, SpeedChange);
|
|
|
|
}
|
|
|
|
|
2021-01-31 16:43:16 +00:00
|
|
|
public double ApplyToRate(double time, double rate) => rate * SpeedChange.Value;
|
|
|
|
|
2022-04-03 17:08:54 +00:00
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModTimeRamp), typeof(ModAdaptiveSpeed), typeof(ModRateAdjust) };
|
2021-02-23 18:10:03 +00:00
|
|
|
|
2020-03-23 03:08:00 +00:00
|
|
|
public override string SettingDescription => SpeedChange.IsDefault ? string.Empty : $"{SpeedChange.Value:N2}x";
|
2019-03-12 09:14:41 +00:00
|
|
|
}
|
|
|
|
}
|