1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:47:24 +08:00
osu-lazer/osu.Game/Screens/Multi/Match/Components/MatchLeaderboard.cs

61 lines
1.8 KiB
C#
Raw Normal View History

// 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.
2018-12-14 18:52:03 +08:00
using System;
using System.Collections.Generic;
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-12-14 18:52:03 +08:00
using osu.Game.Online.API;
2018-12-22 14:45:16 +08:00
using osu.Game.Online.API.Requests.Responses;
2018-12-14 18:52:03 +08:00
using osu.Game.Online.Leaderboards;
using osu.Game.Online.Multiplayer;
namespace osu.Game.Screens.Multi.Match.Components
{
public class MatchLeaderboard : Leaderboard<MatchLeaderboardScope, APIUserScoreAggregate>
2018-12-14 18:52:03 +08:00
{
2019-02-05 18:00:01 +08:00
[Resolved(typeof(Room), nameof(Room.RoomID))]
private Bindable<int?> roomId { get; set; }
2018-12-14 18:52:03 +08:00
[BackgroundDependencyLoader]
private void load()
{
roomId.BindValueChanged(id =>
2018-12-14 18:52:03 +08:00
{
if (id.NewValue == null)
return;
2018-12-14 18:52:03 +08:00
Scores = null;
UpdateScores();
}, true);
}
2019-07-21 09:42:40 +08:00
protected override bool IsOnlineScope => true;
2019-07-21 08:07:27 +08:00
protected override APIRequest FetchScores(Action<IEnumerable<APIUserScoreAggregate>> scoresCallback)
2018-12-14 18:52:03 +08:00
{
2019-02-05 18:00:01 +08:00
if (roomId.Value == null)
2018-12-14 18:52:03 +08:00
return null;
2020-08-31 18:54:41 +08:00
var req = new GetRoomLeaderboardRequest(roomId.Value ?? 0);
2018-12-14 18:52:03 +08:00
2018-12-21 17:22:13 +08:00
req.Success += r =>
{
scoresCallback?.Invoke(r.Leaderboard);
TopScore = r.OwnScore;
2018-12-21 17:22:13 +08:00
};
2018-12-14 18:52:03 +08:00
return req;
}
protected override LeaderboardScore CreateDrawableScore(APIUserScoreAggregate model, int index) => new MatchLeaderboardScore(model, index);
2020-08-31 19:17:23 +08:00
protected override LeaderboardScore CreateDrawableTopScore(APIUserScoreAggregate model) => new MatchLeaderboardScore(model, model.Position ?? 0, false);
2018-12-14 18:52:03 +08:00
}
public enum MatchLeaderboardScope
{
Overall
}
}