mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
37 lines
1.0 KiB
C#
37 lines
1.0 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 osu.Framework.Timing;
|
|
using osu.Game.Online.Multiplayer;
|
|
using osu.Game.Screens.Play.HUD;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
|
|
{
|
|
public class MultiSpectatorLeaderboard : MultiplayerGameplayLeaderboard
|
|
{
|
|
public MultiSpectatorLeaderboard(MultiplayerRoomUser[] users)
|
|
: base(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));
|
|
|
|
data.ScoreProcessor.ReferenceClock = clock;
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
foreach (var (_, data) in UserScores)
|
|
data.ScoreProcessor.UpdateScore();
|
|
}
|
|
}
|
|
}
|