osu/osu.Game/Rulesets/Mods/ModRateAdjust.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1.1 KiB
C#
Raw Normal View History

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.
using System;
using osu.Framework.Audio;
using osu.Framework.Bindables;
2019-03-12 09:14:41 +00:00
namespace osu.Game.Rulesets.Mods
{
public abstract class ModRateAdjust : Mod, IApplicableToRate
2019-03-12 09:14:41 +00:00
{
public override bool ValidForMultiplayerAsFreeMod => false;
public abstract BindableNumber<double> SpeedChange { get; }
2019-03-12 09:14:41 +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
}
public virtual void ApplyToSample(IAdjustableAudioComponent sample)
{
sample.AddAdjustment(AdjustableProperty.Frequency, SpeedChange);
}
public double ApplyToRate(double time, double rate) => rate * SpeedChange.Value;
public override Type[] IncompatibleMods => new[] { typeof(ModTimeRamp), typeof(ModAdaptiveSpeed), typeof(ModRateAdjust) };
public override string SettingDescription => SpeedChange.IsDefault ? string.Empty : $"{SpeedChange.Value:N2}x";
2019-03-12 09:14:41 +00:00
}
}