2019-03-06 19:30:14 +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.
|
|
|
|
|
|
|
|
using System;
|
2019-04-08 17:32:05 +08:00
|
|
|
using System.Collections.Generic;
|
2019-03-06 19:30:14 +08:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using osu.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-12 17:14:01 +08:00
|
|
|
using osu.Framework.Audio;
|
2019-03-06 19:30:14 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Timing;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-03-17 23:46:15 +08:00
|
|
|
/// Encapsulates gameplay timing logic and provides a <see cref="Play.GameplayClock"/> for children.
|
2019-03-06 19:30:14 +08:00
|
|
|
/// </summary>
|
|
|
|
public class GameplayClockContainer : Container
|
|
|
|
{
|
|
|
|
private readonly WorkingBeatmap beatmap;
|
2019-04-10 16:13:12 +08:00
|
|
|
private readonly IReadOnlyList<Mod> mods;
|
2019-03-06 19:30:14 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The original source (usually a <see cref="WorkingBeatmap"/>'s track).
|
|
|
|
/// </summary>
|
|
|
|
private readonly IAdjustableClock sourceClock;
|
|
|
|
|
|
|
|
public readonly BindableBool IsPaused = new BindableBool();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The decoupled clock used for gameplay. Should be used for seeks and clock control.
|
|
|
|
/// </summary>
|
|
|
|
private readonly DecoupleableInterpolatingFramedClock adjustableClock;
|
|
|
|
|
2019-04-03 15:58:20 +08:00
|
|
|
private readonly double gameplayStartTime;
|
|
|
|
|
2019-03-06 19:30:14 +08:00
|
|
|
public readonly Bindable<double> UserPlaybackRate = new BindableDouble(1)
|
|
|
|
{
|
|
|
|
Default = 1,
|
|
|
|
MinValue = 0.5,
|
|
|
|
MaxValue = 2,
|
|
|
|
Precision = 0.1,
|
|
|
|
};
|
|
|
|
|
2019-03-08 14:05:45 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The final clock which is exposed to underlying components.
|
|
|
|
/// </summary>
|
|
|
|
[Cached]
|
2019-03-17 23:46:15 +08:00
|
|
|
public readonly GameplayClock GameplayClock;
|
2019-03-08 14:05:45 +08:00
|
|
|
|
2019-03-06 19:30:14 +08:00
|
|
|
private Bindable<double> userAudioOffset;
|
|
|
|
|
2019-04-03 15:58:20 +08:00
|
|
|
private readonly FramedOffsetClock userOffsetClock;
|
|
|
|
|
|
|
|
private readonly FramedOffsetClock platformOffsetClock;
|
2019-03-06 19:30:14 +08:00
|
|
|
|
2019-04-10 16:13:12 +08:00
|
|
|
public GameplayClockContainer(WorkingBeatmap beatmap, IReadOnlyList<Mod> mods, double gameplayStartTime)
|
2019-03-06 19:30:14 +08:00
|
|
|
{
|
|
|
|
this.beatmap = beatmap;
|
2019-04-08 17:32:05 +08:00
|
|
|
this.mods = mods;
|
2019-04-03 15:58:20 +08:00
|
|
|
this.gameplayStartTime = gameplayStartTime;
|
2019-03-06 19:30:14 +08:00
|
|
|
|
2019-03-08 14:05:45 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2019-03-06 19:30:14 +08:00
|
|
|
sourceClock = (IAdjustableClock)beatmap.Track ?? new StopwatchClock();
|
2019-06-09 23:56:35 +08:00
|
|
|
(sourceClock as IAdjustableAudioComponent)?.AddAdjustment(AdjustableProperty.Frequency, pauseFreqAdjust);
|
2019-03-06 19:30:14 +08:00
|
|
|
|
|
|
|
adjustableClock = new DecoupleableInterpolatingFramedClock { IsCoupled = false };
|
|
|
|
|
|
|
|
// Lazer's audio timings in general doesn't match stable. This is the result of user testing, albeit limited.
|
|
|
|
// This only seems to be required on windows. We need to eventually figure out why, with a bit of luck.
|
2019-04-03 15:58:20 +08:00
|
|
|
platformOffsetClock = new FramedOffsetClock(adjustableClock) { Offset = RuntimeInfo.OS == RuntimeInfo.Platform.Windows ? 22 : 0 };
|
2019-03-06 19:30:14 +08:00
|
|
|
|
|
|
|
// the final usable gameplay clock with user-set offsets applied.
|
2019-04-03 15:58:20 +08:00
|
|
|
userOffsetClock = new FramedOffsetClock(platformOffsetClock);
|
2019-03-06 19:30:14 +08:00
|
|
|
|
|
|
|
// the clock to be exposed via DI to children.
|
2019-04-03 15:58:20 +08:00
|
|
|
GameplayClock = new GameplayClock(userOffsetClock);
|
2019-03-25 19:25:47 +08:00
|
|
|
|
|
|
|
GameplayClock.IsPaused.BindTo(IsPaused);
|
2019-03-06 19:30:14 +08:00
|
|
|
}
|
|
|
|
|
2019-04-03 15:58:20 +08:00
|
|
|
private double totalOffset => userOffsetClock.Offset + platformOffsetClock.Offset;
|
|
|
|
|
2019-06-09 23:56:35 +08:00
|
|
|
private readonly BindableDouble pauseFreqAdjust = new BindableDouble(1);
|
|
|
|
|
2019-03-06 19:30:14 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
{
|
|
|
|
userAudioOffset = config.GetBindable<double>(OsuSetting.AudioOffset);
|
2019-04-03 15:58:20 +08:00
|
|
|
userAudioOffset.BindValueChanged(offset => userOffsetClock.Offset = offset.NewValue, true);
|
2019-03-06 19:30:14 +08:00
|
|
|
|
|
|
|
UserPlaybackRate.ValueChanged += _ => updateRate();
|
2019-04-03 15:58:20 +08:00
|
|
|
|
2019-04-24 12:53:05 +08:00
|
|
|
Seek(Math.Min(-beatmap.BeatmapInfo.AudioLeadIn, gameplayStartTime));
|
2019-03-06 19:30:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Restart()
|
|
|
|
{
|
|
|
|
Task.Run(() =>
|
|
|
|
{
|
|
|
|
sourceClock.Reset();
|
|
|
|
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
adjustableClock.ChangeSource(sourceClock);
|
|
|
|
updateRate();
|
|
|
|
|
2019-04-22 16:06:40 +08:00
|
|
|
if (!IsPaused.Value)
|
|
|
|
Start();
|
2019-03-06 19:30:14 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Start()
|
|
|
|
{
|
|
|
|
// Seeking the decoupled clock to its current time ensures that its source clock will be seeked to the same time
|
|
|
|
// This accounts for the audio clock source potentially taking time to enter a completely stopped state
|
2019-04-22 17:45:58 +08:00
|
|
|
Seek(GameplayClock.CurrentTime);
|
2019-03-06 19:30:14 +08:00
|
|
|
adjustableClock.Start();
|
2019-03-16 13:20:10 +08:00
|
|
|
IsPaused.Value = false;
|
2019-06-09 23:56:35 +08:00
|
|
|
|
|
|
|
this.TransformBindableTo(pauseFreqAdjust, 1, 200, Easing.In);
|
2019-03-06 19:30:14 +08:00
|
|
|
}
|
|
|
|
|
2019-04-03 16:01:11 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Seek to a specific time in gameplay.
|
|
|
|
/// <remarks>
|
|
|
|
/// Adjusts for any offsets which have been applied (so the seek may not be the expected point in time on the underlying audio track).
|
|
|
|
/// </remarks>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="time">The destination time to seek to.</param>
|
2019-04-03 15:58:20 +08:00
|
|
|
public void Seek(double time)
|
|
|
|
{
|
|
|
|
// remove the offset component here because most of the time we want the seek to be aligned to gameplay, not the audio track.
|
|
|
|
// we may want to consider reversing the application of offsets in the future as it may feel more correct.
|
|
|
|
adjustableClock.Seek(time - totalOffset);
|
2019-04-24 13:01:46 +08:00
|
|
|
|
|
|
|
// manually process frame to ensure GameplayClock is correctly updated after a seek.
|
|
|
|
userOffsetClock.ProcessFrame();
|
2019-04-03 15:58:20 +08:00
|
|
|
}
|
2019-03-06 19:30:14 +08:00
|
|
|
|
2019-03-16 13:20:10 +08:00
|
|
|
public void Stop()
|
|
|
|
{
|
2019-06-10 00:14:46 +08:00
|
|
|
this.TransformBindableTo(pauseFreqAdjust, 0, 200, Easing.Out).OnComplete(_ => adjustableClock.Stop());
|
2019-06-09 23:56:35 +08:00
|
|
|
|
2019-03-16 13:20:10 +08:00
|
|
|
IsPaused.Value = true;
|
|
|
|
}
|
2019-03-06 19:30:14 +08:00
|
|
|
|
|
|
|
public void ResetLocalAdjustments()
|
|
|
|
{
|
|
|
|
// In the case of replays, we may have changed the playback rate.
|
|
|
|
UserPlaybackRate.Value = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
if (!IsPaused.Value)
|
2019-04-03 15:58:20 +08:00
|
|
|
userOffsetClock.ProcessFrame();
|
2019-03-06 19:30:14 +08:00
|
|
|
|
|
|
|
base.Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateRate()
|
|
|
|
{
|
|
|
|
if (sourceClock == null) return;
|
|
|
|
|
2019-03-12 10:35:25 +08:00
|
|
|
sourceClock.ResetSpeedAdjustments();
|
2019-03-12 17:14:01 +08:00
|
|
|
|
|
|
|
if (sourceClock is IHasTempoAdjust tempo)
|
|
|
|
tempo.TempoAdjust = UserPlaybackRate.Value;
|
|
|
|
else
|
|
|
|
sourceClock.Rate = UserPlaybackRate.Value;
|
2019-03-12 01:45:45 +08:00
|
|
|
|
2019-04-08 17:32:05 +08:00
|
|
|
foreach (var mod in mods.OfType<IApplicableToClock>())
|
2019-03-06 19:30:14 +08:00
|
|
|
mod.ApplyToClock(sourceClock);
|
|
|
|
}
|
2019-06-10 00:14:46 +08:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
(sourceClock as IAdjustableAudioComponent)?.RemoveAdjustment(AdjustableProperty.Frequency, pauseFreqAdjust);
|
|
|
|
}
|
2019-03-06 19:30:14 +08:00
|
|
|
}
|
|
|
|
}
|