1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-11 07:52:55 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Match/Components/MatchLeaderboard.cs
2024-11-13 16:38:49 +09:00

81 lines
2.3 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.ComponentModel;
using System.Threading;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Online.Leaderboards;
using osu.Game.Online.Rooms;
namespace osu.Game.Screens.OnlinePlay.Match.Components
{
public partial class MatchLeaderboard : Leaderboard<MatchLeaderboardScope, APIUserScoreAggregate>
{
private readonly Room room;
public MatchLeaderboard(Room room)
{
this.room = room;
}
protected override void LoadComplete()
{
base.LoadComplete();
room.PropertyChanged += onRoomPropertyChanged;
fetchInitialScores();
}
private void onRoomPropertyChanged(object? sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == nameof(Room.RoomID))
fetchInitialScores();
}
private void fetchInitialScores()
{
if (room.RoomID == null)
return;
SetScores(null);
RefetchScores();
}
protected override bool IsOnlineScope => true;
protected override APIRequest? FetchScores(CancellationToken cancellationToken)
{
if (room.RoomID == null)
return null;
var req = new GetRoomLeaderboardRequest(room.RoomID.Value);
req.Success += r => Schedule(() =>
{
if (cancellationToken.IsCancellationRequested)
return;
SetScores(r.Leaderboard, r.UserScore);
});
return req;
}
protected override LeaderboardScore CreateDrawableScore(APIUserScoreAggregate model, int index) => new MatchLeaderboardScore(model, index);
protected override LeaderboardScore CreateDrawableTopScore(APIUserScoreAggregate model) => new MatchLeaderboardScore(model, model.Position, false);
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
room.PropertyChanged -= onRoomPropertyChanged;
}
}
public enum MatchLeaderboardScope
{
Overall
}
}