2021-04-08 21:07:00 +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.
|
|
|
|
|
2021-04-15 18:37:45 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-04-14 19:39:14 +08:00
|
|
|
using osu.Framework.Timing;
|
|
|
|
using osu.Game.Beatmaps;
|
2021-04-08 21:07:00 +08:00
|
|
|
using osu.Game.Scoring;
|
2021-04-15 18:32:55 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Multiplayer.Spectate.Sync;
|
2021-04-08 21:07:00 +08:00
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
|
|
|
|
{
|
|
|
|
public class MultiplayerSpectatorPlayer : SpectatorPlayer
|
|
|
|
{
|
2021-04-15 18:37:45 +08:00
|
|
|
private readonly ISpectatorSlaveClock gameplayClock;
|
2021-04-08 21:07:00 +08:00
|
|
|
|
2021-04-15 18:37:45 +08:00
|
|
|
public MultiplayerSpectatorPlayer(Score score, ISpectatorSlaveClock gameplayClock)
|
2021-04-08 21:07:00 +08:00
|
|
|
: base(score)
|
|
|
|
{
|
2021-04-14 19:39:14 +08:00
|
|
|
this.gameplayClock = gameplayClock;
|
|
|
|
}
|
|
|
|
|
2021-04-15 18:37:45 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
gameplayClock.WaitingOnFrames.BindTo(DrawableRuleset.FrameStableClock.WaitingOnFrames);
|
|
|
|
}
|
|
|
|
|
2021-04-14 19:39:14 +08:00
|
|
|
protected override GameplayClockContainer CreateGameplayClockContainer(WorkingBeatmap beatmap, double gameplayStart)
|
|
|
|
=> new SubGameplayClockContainer(gameplayClock);
|
|
|
|
}
|
|
|
|
|
|
|
|
public class SubGameplayClockContainer : GameplayClockContainer
|
|
|
|
{
|
|
|
|
public SubGameplayClockContainer(IClock sourceClock)
|
|
|
|
: base(sourceClock)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override GameplayClock CreateGameplayClock(IFrameBasedClock source) => new GameplayClock(source);
|
2021-04-08 21:07:00 +08:00
|
|
|
}
|
|
|
|
}
|