mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
55 lines
1.4 KiB
C#
55 lines
1.4 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Online.Spectator;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public class SoloSpectatorPlayer : SpectatorPlayer
|
|
{
|
|
private readonly Score score;
|
|
|
|
public SoloSpectatorPlayer(Score score, PlayerConfiguration configuration = null)
|
|
: base(score, configuration)
|
|
{
|
|
this.score = score;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
SpectatorClient.OnUserBeganPlaying += userBeganPlaying;
|
|
}
|
|
|
|
public override bool OnExiting(ScreenExitEvent e)
|
|
{
|
|
SpectatorClient.OnUserBeganPlaying -= userBeganPlaying;
|
|
|
|
return base.OnExiting(e);
|
|
}
|
|
|
|
private void userBeganPlaying(int userId, SpectatorState state)
|
|
{
|
|
if (userId != score.ScoreInfo.UserID) return;
|
|
|
|
Schedule(() =>
|
|
{
|
|
if (this.IsCurrentScreen()) this.Exit();
|
|
});
|
|
}
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
{
|
|
base.Dispose(isDisposing);
|
|
|
|
if (SpectatorClient != null)
|
|
SpectatorClient.OnUserBeganPlaying -= userBeganPlaying;
|
|
}
|
|
}
|
|
}
|