2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-11-29 04:22:45 +00:00
|
|
|
|
using osu.Game.Scoring;
|
2020-03-29 14:52:50 +00:00
|
|
|
|
using osu.Game.Screens.Ranking;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
public class ReplayPlayer : Player
|
|
|
|
|
{
|
2020-10-27 09:56:28 +00:00
|
|
|
|
protected readonly Score Score;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-09-19 05:00:41 +00:00
|
|
|
|
// Disallow replays from failing. (see https://github.com/ppy/osu/issues/6108)
|
2020-05-12 11:08:35 +00:00
|
|
|
|
protected override bool CheckModsAllowFailure() => false;
|
2019-09-18 19:49:48 +00:00
|
|
|
|
|
2019-03-26 07:53:44 +00:00
|
|
|
|
public ReplayPlayer(Score score, bool allowPause = true, bool showResults = true)
|
|
|
|
|
: base(allowPause, showResults)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-10-27 09:56:28 +00:00
|
|
|
|
this.Score = score;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-23 10:31:43 +00:00
|
|
|
|
protected override void PrepareReplay()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-10-27 09:56:28 +00:00
|
|
|
|
DrawableRuleset?.SetReplayScore(Score);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
2018-11-29 04:22:45 +00:00
|
|
|
|
|
2020-06-19 12:54:09 +00:00
|
|
|
|
protected override ResultsScreen CreateResults(ScoreInfo score) => new SoloResultsScreen(score, false);
|
|
|
|
|
|
|
|
|
|
protected override ScoreInfo CreateScore()
|
2020-03-29 13:51:28 +00:00
|
|
|
|
{
|
2020-06-19 12:54:09 +00:00
|
|
|
|
var baseScore = base.CreateScore();
|
2020-03-29 13:51:28 +00:00
|
|
|
|
|
2020-06-19 12:54:09 +00:00
|
|
|
|
// Since the replay score doesn't contain statistics, we'll pass them through here.
|
2020-10-27 09:56:28 +00:00
|
|
|
|
Score.ScoreInfo.HitEvents = baseScore.HitEvents;
|
2020-03-29 14:52:50 +00:00
|
|
|
|
|
2020-10-27 09:56:28 +00:00
|
|
|
|
return Score.ScoreInfo;
|
2020-06-19 12:54:09 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|