osu/osu.Game/Screens/Play/GameplayClock.cs

53 lines
1.7 KiB
C#
Raw Normal View History

2019-03-05 04:53:47 +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 osu.Framework.Bindables;
2019-03-05 04:53:47 +00:00
using osu.Framework.Timing;
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 08:36:17 +00:00
/// Exposed via DI by <see cref="GameplayClockContainer"/>.
2019-03-05 04:53:47 +00:00
/// <remarks>
/// The main purpose of this clock is to stop components using it from accidentally processing the main
2019-03-05 04:53:47 +00:00
/// <see cref="IFrameBasedClock"/>, as this should only be done once to ensure accuracy.
/// </remarks>
/// </summary>
public class GameplayClock : IFrameBasedClock, ISeekableClock
2019-03-05 04:53:47 +00:00
{
private readonly IFrameBasedClock underlyingClock;
public readonly BindableBool IsPaused = new BindableBool();
2019-03-05 04:53:47 +00:00
public GameplayClock(IFrameBasedClock underlyingClock)
{
this.underlyingClock = underlyingClock;
}
public double CurrentTime => underlyingClock.CurrentTime;
public double Rate => underlyingClock.Rate;
public bool IsRunning => underlyingClock.IsRunning;
2020-05-21 01:58:30 +00:00
/// <summary>
/// Whether an ongoing seek operation is active.
/// </summary>
public virtual bool IsSeeking => false;
2019-03-05 04:53:47 +00:00
public void ProcessFrame()
{
// we do not want to process the underlying clock.
}
public double ElapsedFrameTime => underlyingClock.ElapsedFrameTime;
public double FramesPerSecond => underlyingClock.FramesPerSecond;
public FrameTimeInfo TimeInfo => underlyingClock.TimeInfo;
2019-09-17 13:33:27 +00:00
public IClock Source => underlyingClock;
2019-03-05 04:53:47 +00:00
}
}