2020-10-26 18:47:39 +08: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.
|
|
|
|
|
|
|
|
using System;
|
2020-10-26 19:59:46 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2020-10-26 18:47:39 +08:00
|
|
|
using JetBrains.Annotations;
|
|
|
|
using osu.Framework.Allocation;
|
2020-10-26 19:59:46 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-10-26 18:47:39 +08:00
|
|
|
using osu.Framework.Graphics;
|
2020-10-26 19:59:46 +08:00
|
|
|
using osu.Framework.Screens;
|
|
|
|
using osu.Game.Beatmaps;
|
2020-10-26 18:47:39 +08:00
|
|
|
using osu.Game.Graphics.Sprites;
|
2020-10-26 19:59:46 +08:00
|
|
|
using osu.Game.Online.Spectator;
|
|
|
|
using osu.Game.Replays;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
using osu.Game.Rulesets.Replays.Types;
|
|
|
|
using osu.Game.Scoring;
|
2020-10-26 18:47:39 +08:00
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
{
|
|
|
|
public class Spectator : OsuScreen
|
|
|
|
{
|
|
|
|
private readonly User targetUser;
|
|
|
|
|
2020-10-26 19:59:46 +08:00
|
|
|
[Resolved]
|
|
|
|
private Bindable<WorkingBeatmap> beatmap { get; set; }
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private Bindable<RulesetInfo> ruleset { get; set; }
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private Bindable<IReadOnlyList<Mod>> mods { get; set; }
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private SpectatorStreamingClient spectatorStreaming { get; set; }
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private BeatmapManager beatmaps { get; set; }
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private RulesetStore rulesets { get; set; }
|
|
|
|
|
|
|
|
private Replay replay;
|
|
|
|
|
2020-10-26 18:47:39 +08:00
|
|
|
public Spectator([NotNull] User targetUser)
|
|
|
|
{
|
|
|
|
this.targetUser = targetUser ?? throw new ArgumentNullException(nameof(targetUser));
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new OsuSpriteText
|
|
|
|
{
|
|
|
|
Text = $"Watching {targetUser}",
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
},
|
|
|
|
};
|
2020-10-27 13:57:00 +08:00
|
|
|
}
|
2020-10-26 19:59:46 +08:00
|
|
|
|
2020-10-27 13:57:00 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2020-10-26 19:59:46 +08:00
|
|
|
spectatorStreaming.OnUserBeganPlaying += userBeganPlaying;
|
|
|
|
spectatorStreaming.OnUserFinishedPlaying += userFinishedPlaying;
|
|
|
|
spectatorStreaming.OnNewFrames += userSentFrames;
|
|
|
|
|
|
|
|
spectatorStreaming.WatchUser((int)targetUser.Id);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void userSentFrames(int userId, FrameDataBundle data)
|
|
|
|
{
|
|
|
|
if (userId != targetUser.Id)
|
|
|
|
return;
|
|
|
|
|
2020-10-27 13:57:00 +08:00
|
|
|
// this should never happen as the server sends the user's state on watching,
|
|
|
|
// but is here as a safety measure.
|
|
|
|
if (replay == null)
|
|
|
|
return;
|
|
|
|
|
2020-10-26 19:59:46 +08:00
|
|
|
var rulesetInstance = ruleset.Value.CreateInstance();
|
|
|
|
|
|
|
|
foreach (var frame in data.Frames)
|
|
|
|
{
|
|
|
|
IConvertibleReplayFrame convertibleFrame = rulesetInstance.CreateConvertibleReplayFrame();
|
|
|
|
convertibleFrame.FromLegacy(frame, beatmap.Value.Beatmap, null);
|
|
|
|
|
|
|
|
var convertedFrame = (ReplayFrame)convertibleFrame;
|
|
|
|
convertedFrame.Time = frame.Time;
|
|
|
|
|
|
|
|
replay.Frames.Add(convertedFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void userBeganPlaying(int userId, SpectatorState state)
|
|
|
|
{
|
|
|
|
if (userId != targetUser.Id)
|
|
|
|
return;
|
|
|
|
|
2020-10-27 15:27:15 +08:00
|
|
|
replay ??= new Replay { HasReceivedAllFrames = false };
|
2020-10-26 19:59:46 +08:00
|
|
|
|
|
|
|
var resolvedRuleset = rulesets.AvailableRulesets.FirstOrDefault(r => r.ID == state.RulesetID)?.CreateInstance();
|
|
|
|
|
|
|
|
// ruleset not available
|
|
|
|
if (resolvedRuleset == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var resolvedBeatmap = beatmaps.QueryBeatmap(b => b.OnlineBeatmapID == state.BeatmapID);
|
|
|
|
|
|
|
|
if (resolvedBeatmap == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var scoreInfo = new ScoreInfo
|
|
|
|
{
|
|
|
|
Beatmap = resolvedBeatmap,
|
|
|
|
Mods = state.Mods.Select(m => m.ToMod(resolvedRuleset)).ToArray(),
|
|
|
|
Ruleset = resolvedRuleset.RulesetInfo,
|
|
|
|
};
|
|
|
|
|
|
|
|
this.MakeCurrent();
|
|
|
|
|
|
|
|
ruleset.Value = resolvedRuleset.RulesetInfo;
|
|
|
|
beatmap.Value = beatmaps.GetWorkingBeatmap(resolvedBeatmap);
|
|
|
|
|
|
|
|
this.Push(new ReplayPlayerLoader(new Score
|
|
|
|
{
|
|
|
|
ScoreInfo = scoreInfo,
|
|
|
|
Replay = replay,
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void userFinishedPlaying(int userId, SpectatorState state)
|
|
|
|
{
|
2020-10-27 15:27:15 +08:00
|
|
|
if (replay == null) return;
|
|
|
|
|
|
|
|
replay.HasReceivedAllFrames = true;
|
2020-10-26 19:59:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
if (spectatorStreaming != null)
|
|
|
|
{
|
|
|
|
spectatorStreaming.OnUserBeganPlaying -= userBeganPlaying;
|
|
|
|
spectatorStreaming.OnUserFinishedPlaying -= userFinishedPlaying;
|
|
|
|
spectatorStreaming.OnNewFrames -= userSentFrames;
|
|
|
|
|
|
|
|
spectatorStreaming.StopWatchingUser((int)targetUser.Id);
|
|
|
|
}
|
2020-10-26 18:47:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|