1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game/Screens/Play/ReplayPlayer.cs

61 lines
1.8 KiB
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 17:19:50 +08:00
using osu.Framework.Input.Bindings;
using osu.Game.Input.Bindings;
2018-11-29 12:22:45 +08:00
using osu.Game.Scoring;
using osu.Game.Screens.Ranking;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play
{
public class ReplayPlayer : Player, IKeyBindingHandler<GlobalAction>
2018-04-13 17:19:50 +08:00
{
protected readonly Score Score;
2018-04-13 17:19:50 +08:00
2019-09-19 13:00:41 +08:00
// Disallow replays from failing. (see https://github.com/ppy/osu/issues/6108)
protected override bool CheckModsAllowFailure() => false;
2019-09-19 03:49:48 +08:00
public ReplayPlayer(Score score, bool allowPause = true, bool showResults = true)
: base(allowPause, showResults)
2018-04-13 17:19:50 +08:00
{
2020-10-27 21:30:45 +08:00
Score = score;
2018-04-13 17:19:50 +08:00
}
2020-03-23 18:31:43 +08:00
protected override void PrepareReplay()
2018-04-13 17:19:50 +08:00
{
DrawableRuleset?.SetReplayScore(Score);
2018-04-13 17:19:50 +08:00
}
2018-11-29 12:22:45 +08:00
2020-06-19 20:54:09 +08:00
protected override ResultsScreen CreateResults(ScoreInfo score) => new SoloResultsScreen(score, false);
protected override ScoreInfo CreateScore()
{
2020-06-19 20:54:09 +08:00
var baseScore = base.CreateScore();
2020-06-19 20:54:09 +08:00
// Since the replay score doesn't contain statistics, we'll pass them through here.
Score.ScoreInfo.HitEvents = baseScore.HitEvents;
return Score.ScoreInfo;
2020-06-19 20:54:09 +08:00
}
public bool OnPressed(GlobalAction action)
{
switch (action)
{
case GlobalAction.TogglePauseReplay:
if (GameplayClockContainer.IsPaused.Value)
GameplayClockContainer.Start();
else
GameplayClockContainer.Stop();
return true;
}
return false;
}
public void OnReleased(GlobalAction action)
{
}
2018-04-13 17:19:50 +08:00
}
}