mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:17:26 +08:00
155 lines
5.1 KiB
C#
155 lines
5.1 KiB
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 System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Input.Bindings;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Scoring;
|
|
using osu.Game.Screens.Play.HUD;
|
|
using osu.Game.Screens.Play.PlayerSettings;
|
|
using osu.Game.Screens.Ranking;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
[Cached]
|
|
public partial class ReplayPlayer : Player, IKeyBindingHandler<GlobalAction>
|
|
{
|
|
public const double BASE_SEEK_AMOUNT = 1000;
|
|
|
|
private readonly Func<IBeatmap, IReadOnlyList<Mod>, Score> createScore;
|
|
|
|
private readonly bool replayIsFailedScore;
|
|
|
|
protected override UserActivity InitialActivity => new UserActivity.WatchingReplay(Score.ScoreInfo);
|
|
|
|
// Disallow replays from failing. (see https://github.com/ppy/osu/issues/6108)
|
|
protected override bool CheckModsAllowFailure()
|
|
{
|
|
if (!replayIsFailedScore && !GameplayState.Mods.OfType<ModAutoplay>().Any())
|
|
return false;
|
|
|
|
return base.CheckModsAllowFailure();
|
|
}
|
|
|
|
public ReplayPlayer(Score score, PlayerConfiguration configuration = null)
|
|
: this((_, _) => score, configuration)
|
|
{
|
|
replayIsFailedScore = score.ScoreInfo.Rank == ScoreRank.F;
|
|
}
|
|
|
|
public ReplayPlayer(Func<IBeatmap, IReadOnlyList<Mod>, Score> createScore, PlayerConfiguration configuration = null)
|
|
: base(configuration)
|
|
{
|
|
this.createScore = createScore;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
if (!LoadedBeatmapSuccessfully)
|
|
return;
|
|
|
|
var playbackSettings = new PlaybackSettings
|
|
{
|
|
Depth = float.MaxValue,
|
|
Expanded = { BindTarget = config.GetBindable<bool>(OsuSetting.ReplayPlaybackControlsExpanded) }
|
|
};
|
|
|
|
if (GameplayClockContainer is MasterGameplayClockContainer master)
|
|
playbackSettings.UserPlaybackRate.BindTo(master.UserPlaybackRate);
|
|
|
|
HUDOverlay.PlayerSettingsOverlay.AddAtStart(playbackSettings);
|
|
}
|
|
|
|
protected override void PrepareReplay()
|
|
{
|
|
DrawableRuleset?.SetReplayScore(Score);
|
|
}
|
|
|
|
protected override Score CreateScore(IBeatmap beatmap) => createScore(beatmap, Mods.Value);
|
|
|
|
// Don't re-import replay scores as they're already present in the database.
|
|
protected override Task ImportScore(Score score) => Task.CompletedTask;
|
|
|
|
public readonly BindableList<ScoreInfo> LeaderboardScores = new BindableList<ScoreInfo>();
|
|
|
|
protected override GameplayLeaderboard CreateGameplayLeaderboard() =>
|
|
new SoloGameplayLeaderboard(Score.ScoreInfo.User)
|
|
{
|
|
AlwaysVisible = { Value = true },
|
|
Scores = { BindTarget = LeaderboardScores }
|
|
};
|
|
|
|
protected override ResultsScreen CreateResults(ScoreInfo score) => new SoloResultsScreen(score);
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
|
{
|
|
switch (e.Action)
|
|
{
|
|
case GlobalAction.StepReplayBackward:
|
|
StepFrame(-1);
|
|
return true;
|
|
|
|
case GlobalAction.StepReplayForward:
|
|
StepFrame(1);
|
|
return true;
|
|
|
|
case GlobalAction.SeekReplayBackward:
|
|
SeekInDirection(-5);
|
|
return true;
|
|
|
|
case GlobalAction.SeekReplayForward:
|
|
SeekInDirection(5);
|
|
return true;
|
|
|
|
case GlobalAction.TogglePauseReplay:
|
|
if (GameplayClockContainer.IsPaused.Value)
|
|
GameplayClockContainer.Start();
|
|
else
|
|
GameplayClockContainer.Stop();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void StepFrame(int direction)
|
|
{
|
|
GameplayClockContainer.Stop();
|
|
|
|
var frames = GameplayState.Score.Replay.Frames;
|
|
|
|
if (frames.Count == 0)
|
|
return;
|
|
|
|
GameplayClockContainer.Seek(direction < 0
|
|
? (frames.LastOrDefault(f => f.Time < GameplayClockContainer.CurrentTime) ?? frames.First()).Time
|
|
: (frames.FirstOrDefault(f => f.Time > GameplayClockContainer.CurrentTime) ?? frames.Last()).Time
|
|
);
|
|
}
|
|
|
|
public void SeekInDirection(float amount)
|
|
{
|
|
double target = Math.Clamp(GameplayClockContainer.CurrentTime + amount * BASE_SEEK_AMOUNT, 0, GameplayState.Beatmap.GetLastObjectTime());
|
|
|
|
Seek(target);
|
|
}
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
|
|
{
|
|
}
|
|
}
|
|
}
|