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