1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:47:24 +08:00
osu-lazer/osu.Game/Screens/Play/GameplayClock.cs

89 lines
3.0 KiB
C#
Raw Normal View History

2019-03-05 12:53:47 +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.Collections.Generic;
using System.Linq;
using osu.Framework.Bindables;
2019-03-05 12:53:47 +08:00
using osu.Framework.Timing;
using osu.Framework.Utils;
2019-03-05 12:53:47 +08:00
namespace osu.Game.Screens.Play
{
/// <summary>
/// A clock which is used for gameplay elements that need to follow audio time 1:1.
2019-04-25 16:36:17 +08:00
/// Exposed via DI by <see cref="GameplayClockContainer"/>.
2019-03-05 12:53:47 +08:00
/// <remarks>
/// The main purpose of this clock is to stop components using it from accidentally processing the main
2019-03-05 12:53:47 +08:00
/// <see cref="IFrameBasedClock"/>, as this should only be done once to ensure accuracy.
/// </remarks>
/// </summary>
2020-09-29 11:45:20 +08:00
public class GameplayClock : IFrameBasedClock, ISamplePlaybackDisabler
2019-03-05 12:53:47 +08:00
{
private readonly IFrameBasedClock underlyingClock;
public readonly BindableBool IsPaused = new BindableBool();
/// <summary>
/// All adjustments applied to this clock which don't come from gameplay or mods.
/// </summary>
public virtual IEnumerable<Bindable<double>> NonGameplayAdjustments => Enumerable.Empty<Bindable<double>>();
private readonly Bindable<bool> samplePlaybackDisabled = new Bindable<bool>();
2019-03-05 12:53:47 +08:00
public GameplayClock(IFrameBasedClock underlyingClock)
{
this.underlyingClock = underlyingClock;
}
public double CurrentTime => underlyingClock.CurrentTime;
public double Rate => underlyingClock.Rate;
/// <summary>
/// The rate of gameplay when playback is at 100%.
/// This excludes any seeking / user adjustments.
/// </summary>
public double TrueGameplayRate
{
get
{
double baseRate = Rate;
foreach (var adjustment in NonGameplayAdjustments)
{
if (Precision.AlmostEquals(adjustment.Value, 0))
return 0;
baseRate /= adjustment.Value;
}
return baseRate;
}
}
2019-03-05 12:53:47 +08:00
public bool IsRunning => underlyingClock.IsRunning;
2020-05-21 09:58:30 +08:00
/// <summary>
/// Whether nested samples supporting the <see cref="ISamplePlaybackDisabler"/> interface should be paused.
2020-05-21 09:58:30 +08:00
/// </summary>
protected virtual bool ShouldDisableSamplePlayback => IsPaused.Value;
2020-05-21 09:58:30 +08:00
2019-03-05 12:53:47 +08:00
public void ProcessFrame()
{
// intentionally not updating the underlying clock (handled externally).
samplePlaybackDisabled.Value = ShouldDisableSamplePlayback;
2019-03-05 12:53:47 +08:00
}
public double ElapsedFrameTime => underlyingClock.ElapsedFrameTime;
public double FramesPerSecond => underlyingClock.FramesPerSecond;
public FrameTimeInfo TimeInfo => underlyingClock.TimeInfo;
2019-09-17 21:33:27 +08:00
public IClock Source => underlyingClock;
2020-09-29 11:45:20 +08:00
IBindable<bool> ISamplePlaybackDisabler.SamplePlaybackDisabled => samplePlaybackDisabled;
2019-03-05 12:53:47 +08:00
}
}