mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
// 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.Timing;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public class OffsetCorrectionClock : FramedOffsetClock
|
|
{
|
|
private double offset;
|
|
|
|
public new double Offset
|
|
{
|
|
get => offset;
|
|
set
|
|
{
|
|
if (value == offset)
|
|
return;
|
|
|
|
offset = value;
|
|
|
|
updateOffset();
|
|
}
|
|
}
|
|
|
|
public double RateAdjustedOffset => base.Offset;
|
|
|
|
public OffsetCorrectionClock(IClock source)
|
|
: base(source)
|
|
{
|
|
}
|
|
|
|
public override void ProcessFrame()
|
|
{
|
|
base.ProcessFrame();
|
|
updateOffset();
|
|
}
|
|
|
|
private void updateOffset()
|
|
{
|
|
// we always want to apply the same real-time offset, so it should be adjusted by the difference in playback rate (from realtime) to achieve this.
|
|
base.Offset = Offset * Rate;
|
|
}
|
|
}
|
|
}
|