2019-01-26 12:15:19 +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;
|
2019-03-06 05:14:41 +00:00
|
|
|
using System.Linq;
|
2019-12-09 10:41:31 +00:00
|
|
|
using osu.Framework.Audio;
|
|
|
|
using osu.Framework.Bindables;
|
2019-01-26 12:15:19 +00:00
|
|
|
using osu.Game.Beatmaps;
|
2019-12-09 10:58:51 +00:00
|
|
|
using osu.Game.Configuration;
|
2019-01-26 12:15:19 +00:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2020-09-29 05:09:51 +00:00
|
|
|
using osu.Game.Rulesets.UI;
|
2019-01-26 12:15:19 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2021-01-31 16:43:16 +00:00
|
|
|
public abstract class ModTimeRamp : Mod, IUpdatableByPlayfield, IApplicableToBeatmap, IApplicableToRate
|
2019-01-26 12:15:19 +00:00
|
|
|
{
|
2019-08-01 03:35:17 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The point in the beatmap at which the final ramping rate should be reached.
|
|
|
|
/// </summary>
|
2021-01-31 19:18:12 +00:00
|
|
|
public const double FINAL_RATE_PROGRESS = 0.75f;
|
2019-08-01 03:35:17 +00:00
|
|
|
|
2020-01-26 23:56:18 +00:00
|
|
|
[SettingSource("Initial rate", "The starting speed of the track")]
|
|
|
|
public abstract BindableNumber<double> InitialRate { get; }
|
|
|
|
|
2019-12-09 10:58:51 +00:00
|
|
|
[SettingSource("Final rate", "The final speed to ramp to")]
|
|
|
|
public abstract BindableNumber<double> FinalRate { get; }
|
2019-01-26 12:15:19 +00:00
|
|
|
|
2020-06-13 15:32:43 +00:00
|
|
|
[SettingSource("Adjust pitch", "Should pitch be adjusted with speed")]
|
2020-06-13 14:16:27 +00:00
|
|
|
public abstract BindableBool AdjustPitch { get; }
|
|
|
|
|
2022-05-05 11:37:38 +00:00
|
|
|
public override bool ValidForMultiplayerAsFreeMod => false;
|
2022-03-17 00:40:40 +00:00
|
|
|
|
2022-03-01 13:12:06 +00:00
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModRateAdjust), typeof(ModAdaptiveSpeed) };
|
2021-02-23 18:10:03 +00:00
|
|
|
|
2020-03-23 16:54:08 +00:00
|
|
|
public override string SettingDescription => $"{InitialRate.Value:N2}x to {FinalRate.Value:N2}x";
|
2020-03-19 03:43:26 +00:00
|
|
|
|
2019-03-06 05:14:41 +00:00
|
|
|
private double finalRateTime;
|
|
|
|
private double beginRampTime;
|
|
|
|
|
2019-12-09 10:41:31 +00:00
|
|
|
public BindableNumber<double> SpeedChange { get; } = new BindableDouble
|
2019-01-26 12:15:19 +00:00
|
|
|
{
|
2019-12-09 10:41:31 +00:00
|
|
|
Default = 1,
|
|
|
|
Value = 1,
|
|
|
|
Precision = 0.01,
|
|
|
|
};
|
2019-03-06 05:14:41 +00:00
|
|
|
|
2022-05-10 15:01:15 +00:00
|
|
|
private IAdjustableAudioComponent track;
|
2019-03-12 09:15:18 +00:00
|
|
|
|
2019-12-12 14:33:18 +00:00
|
|
|
protected ModTimeRamp()
|
2019-12-12 08:28:31 +00:00
|
|
|
{
|
|
|
|
// for preview purpose at song select. eventually we'll want to be able to update every frame.
|
2021-01-31 16:43:16 +00:00
|
|
|
FinalRate.BindValueChanged(val => applyRateAdjustment(double.PositiveInfinity), true);
|
2020-06-14 16:48:49 +00:00
|
|
|
AdjustPitch.BindValueChanged(applyPitchAdjustment);
|
2019-12-12 08:28:31 +00:00
|
|
|
}
|
|
|
|
|
2022-05-10 15:01:15 +00:00
|
|
|
public void ApplyToTrack(IAdjustableAudioComponent track)
|
2019-12-09 10:41:31 +00:00
|
|
|
{
|
2020-08-05 12:10:38 +00:00
|
|
|
this.track = track;
|
2020-06-13 14:16:27 +00:00
|
|
|
|
2019-12-12 08:45:11 +00:00
|
|
|
FinalRate.TriggerChange();
|
2020-06-13 15:32:43 +00:00
|
|
|
AdjustPitch.TriggerChange();
|
2019-01-26 12:15:19 +00:00
|
|
|
}
|
|
|
|
|
2022-05-10 15:01:36 +00:00
|
|
|
public void ApplyToSample(IAdjustableAudioComponent sample)
|
2020-06-16 13:58:23 +00:00
|
|
|
{
|
|
|
|
sample.AddAdjustment(AdjustableProperty.Frequency, SpeedChange);
|
|
|
|
}
|
|
|
|
|
2019-08-01 03:35:17 +00:00
|
|
|
public virtual void ApplyToBeatmap(IBeatmap beatmap)
|
2019-01-26 12:15:19 +00:00
|
|
|
{
|
2019-12-09 10:58:51 +00:00
|
|
|
SpeedChange.SetDefault();
|
|
|
|
|
2021-01-31 19:34:56 +00:00
|
|
|
double firstObjectStart = beatmap.HitObjects.FirstOrDefault()?.StartTime ?? 0;
|
|
|
|
double lastObjectEnd = beatmap.HitObjects.LastOrDefault()?.GetEndTime() ?? 0;
|
|
|
|
|
|
|
|
beginRampTime = firstObjectStart;
|
|
|
|
finalRateTime = firstObjectStart + FINAL_RATE_PROGRESS * (lastObjectEnd - firstObjectStart);
|
2019-01-26 12:15:19 +00:00
|
|
|
}
|
|
|
|
|
2021-01-31 16:43:16 +00:00
|
|
|
public double ApplyToRate(double time, double rate = 1)
|
|
|
|
{
|
|
|
|
double amount = (time - beginRampTime) / Math.Max(1, finalRateTime - beginRampTime);
|
|
|
|
double ramp = InitialRate.Value + (FinalRate.Value - InitialRate.Value) * Math.Clamp(amount, 0, 1);
|
2021-02-07 18:02:09 +00:00
|
|
|
|
|
|
|
// round the end result to match the bindable SpeedChange's precision, in case this is called externally.
|
|
|
|
return rate * Math.Round(ramp, 2);
|
2021-01-31 16:43:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-26 12:15:19 +00:00
|
|
|
public virtual void Update(Playfield playfield)
|
|
|
|
{
|
2022-05-10 14:54:34 +00:00
|
|
|
applyRateAdjustment(playfield.Clock.CurrentTime);
|
2019-03-12 09:15:18 +00:00
|
|
|
}
|
|
|
|
|
2019-03-14 03:29:16 +00:00
|
|
|
/// <summary>
|
2021-01-31 16:43:16 +00:00
|
|
|
/// Adjust the rate along the specified ramp.
|
2019-03-14 03:29:16 +00:00
|
|
|
/// </summary>
|
2021-01-31 16:43:16 +00:00
|
|
|
private void applyRateAdjustment(double time) => SpeedChange.Value = ApplyToRate(time);
|
2020-06-13 14:16:27 +00:00
|
|
|
|
2020-06-14 16:50:07 +00:00
|
|
|
private void applyPitchAdjustment(ValueChangedEvent<bool> adjustPitchSetting)
|
2020-06-13 14:16:27 +00:00
|
|
|
{
|
|
|
|
// remove existing old adjustment
|
2020-08-11 16:41:21 +00:00
|
|
|
track?.RemoveAdjustment(adjustmentForPitchSetting(adjustPitchSetting.OldValue), SpeedChange);
|
2020-06-13 14:16:27 +00:00
|
|
|
|
2020-08-11 16:41:21 +00:00
|
|
|
track?.AddAdjustment(adjustmentForPitchSetting(adjustPitchSetting.NewValue), SpeedChange);
|
2020-06-13 14:16:27 +00:00
|
|
|
}
|
2020-06-13 15:32:43 +00:00
|
|
|
|
2020-06-14 16:50:07 +00:00
|
|
|
private AdjustableProperty adjustmentForPitchSetting(bool adjustPitchSettingValue)
|
|
|
|
=> adjustPitchSettingValue ? AdjustableProperty.Frequency : AdjustableProperty.Tempo;
|
2019-01-26 12:15:19 +00:00
|
|
|
}
|
2019-03-06 05:14:41 +00:00
|
|
|
}
|