mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 20:47:26 +08:00
74 lines
2.4 KiB
C#
74 lines
2.4 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.
|
|
|
|
using System;
|
|
using JetBrains.Annotations;
|
|
using osu.Framework.Timing;
|
|
using osu.Game.Online.Multiplayer;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Screens.Play.HUD;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
|
|
{
|
|
public class MultiSpectatorLeaderboard : MultiplayerGameplayLeaderboard
|
|
{
|
|
public MultiSpectatorLeaderboard([NotNull] ScoreProcessor scoreProcessor, MultiplayerRoomUser[] users)
|
|
: base(scoreProcessor, users)
|
|
{
|
|
}
|
|
|
|
public void AddClock(int userId, IClock clock)
|
|
{
|
|
if (!UserScores.TryGetValue(userId, out var data))
|
|
throw new ArgumentException(@"Provided user is not tracked by this leaderboard", nameof(userId));
|
|
|
|
((SpectatingTrackedUserData)data).Clock = clock;
|
|
}
|
|
|
|
public void RemoveClock(int userId)
|
|
{
|
|
if (!UserScores.TryGetValue(userId, out var data))
|
|
throw new ArgumentException(@"Provided user is not tracked by this leaderboard", nameof(userId));
|
|
|
|
((SpectatingTrackedUserData)data).Clock = null;
|
|
}
|
|
|
|
protected override TrackedUserData CreateUserData(MultiplayerRoomUser user, ScoreProcessor scoreProcessor) => new SpectatingTrackedUserData(user, scoreProcessor);
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
foreach (var (_, data) in UserScores)
|
|
data.UpdateScore();
|
|
}
|
|
|
|
private class SpectatingTrackedUserData : TrackedUserData
|
|
{
|
|
[CanBeNull]
|
|
public IClock Clock;
|
|
|
|
public SpectatingTrackedUserData(MultiplayerRoomUser user, ScoreProcessor scoreProcessor)
|
|
: base(user, scoreProcessor)
|
|
{
|
|
}
|
|
|
|
public override void UpdateScore()
|
|
{
|
|
if (Frames.Count == 0)
|
|
return;
|
|
|
|
if (Clock == null)
|
|
return;
|
|
|
|
int frameIndex = Frames.BinarySearch(new TimedFrame(Clock.CurrentTime));
|
|
if (frameIndex < 0)
|
|
frameIndex = ~frameIndex;
|
|
frameIndex = Math.Clamp(frameIndex - 1, 0, Frames.Count - 1);
|
|
|
|
SetFrame(Frames[frameIndex]);
|
|
}
|
|
}
|
|
}
|
|
}
|