2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-11-29 12:22:45 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
public class ReplayPlayer : Player
|
|
|
|
|
{
|
2018-11-29 12:22:45 +08:00
|
|
|
|
private readonly Score score;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-29 12:22:45 +08:00
|
|
|
|
public ReplayPlayer(Score score)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-29 12:22:45 +08:00
|
|
|
|
this.score = score;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2018-11-29 12:22:45 +08:00
|
|
|
|
RulesetContainer.SetReplay(score.Replay);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2018-11-29 12:22:45 +08:00
|
|
|
|
|
2018-11-30 17:32:08 +08:00
|
|
|
|
protected override ScoreInfo CreateScore() => score.ScoreInfo;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|