mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
35 lines
990 B
C#
35 lines
990 B
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 System;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public class SpectatorPlayerLoader : PlayerLoader
|
|
{
|
|
public readonly ScoreInfo Score;
|
|
|
|
public SpectatorPlayerLoader(Score score, Func<SpectatorPlayer> createPlayer)
|
|
: base(createPlayer)
|
|
{
|
|
if (score.Replay == null)
|
|
throw new ArgumentException($"{nameof(score)} must have a non-null {nameof(score.Replay)}.", nameof(score));
|
|
|
|
Score = score.ScoreInfo;
|
|
}
|
|
|
|
public override void OnEntering(ScreenTransitionEvent e)
|
|
{
|
|
// these will be reverted thanks to PlayerLoader's lease.
|
|
Mods.Value = Score.Mods;
|
|
Ruleset.Value = Score.Ruleset;
|
|
|
|
base.OnEntering(e);
|
|
}
|
|
}
|
|
}
|