1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 06:37:19 +08:00
osu-lazer/osu.Game/Screens/Play/ReplayPlayer.cs

29 lines
823 B
C#
Raw Normal View History

// 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.
2018-04-13 18:19:50 +09:00
2018-11-29 13:22:45 +09:00
using osu.Game.Scoring;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Screens.Play
{
public class ReplayPlayer : Player
{
2018-11-29 13:22:45 +09:00
private readonly Score score;
2018-04-13 18:19:50 +09:00
2019-09-19 08:00:41 +03:00
// Disallow replays from failing. (see https://github.com/ppy/osu/issues/6108)
protected override bool AllowFail => false;
2019-09-18 22:49:48 +03:00
public ReplayPlayer(Score score, bool allowPause = true, bool showResults = true)
: base(allowPause, showResults)
2018-04-13 18:19:50 +09:00
{
2018-11-29 13:22:45 +09:00
this.score = score;
2018-04-13 18:19:50 +09:00
}
2020-03-23 19:31:43 +09:00
protected override void PrepareReplay()
2018-04-13 18:19:50 +09:00
{
DrawableRuleset?.SetReplayScore(score);
2018-04-13 18:19:50 +09:00
}
2018-11-29 13:22:45 +09:00
2018-11-30 18:32:08 +09:00
protected override ScoreInfo CreateScore() => score.ScoreInfo;
2018-04-13 18:19:50 +09:00
}
}