2022-09-10 06:10:55 +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.
|
|
|
|
|
2022-09-13 16:07:13 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2022-09-10 06:10:55 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-09-13 16:49:53 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Game.Online.Leaderboards;
|
2022-09-10 06:10:55 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2022-09-13 16:07:13 +08:00
|
|
|
using osu.Game.Scoring;
|
|
|
|
using osu.Game.Users;
|
2022-09-10 06:10:55 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
|
|
{
|
|
|
|
public class SoloGameplayLeaderboard : GameplayLeaderboard
|
|
|
|
{
|
2022-09-13 16:07:13 +08:00
|
|
|
private readonly IUser trackingUser;
|
|
|
|
|
2022-09-13 16:49:53 +08:00
|
|
|
private readonly IBindableList<ScoreInfo> scores = new BindableList<ScoreInfo>();
|
|
|
|
|
2022-09-13 16:07:13 +08:00
|
|
|
[Resolved]
|
|
|
|
private ScoreProcessor scoreProcessor { get; set; } = null!;
|
|
|
|
|
|
|
|
public SoloGameplayLeaderboard(IUser trackingUser)
|
2022-09-10 06:10:55 +08:00
|
|
|
{
|
2022-09-13 16:07:13 +08:00
|
|
|
this.trackingUser = trackingUser;
|
|
|
|
}
|
|
|
|
|
2022-09-13 16:49:53 +08:00
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
private void load(ILeaderboardScoreSource? scoreSource)
|
|
|
|
{
|
|
|
|
if (scoreSource != null)
|
|
|
|
scores.BindTo(scoreSource.Scores);
|
|
|
|
|
|
|
|
scores.BindCollectionChanged((_, __) => Scheduler.AddOnce(showScores, scores), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void showScores(IEnumerable<IScoreInfo> scores)
|
2022-09-13 16:07:13 +08:00
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
if (!scores.Any())
|
|
|
|
return;
|
|
|
|
|
|
|
|
ILeaderboardScore local = Add(trackingUser, true);
|
2022-09-13 15:04:38 +08:00
|
|
|
|
2022-09-13 16:07:13 +08:00
|
|
|
local.TotalScore.BindTarget = scoreProcessor.TotalScore;
|
|
|
|
local.Accuracy.BindTarget = scoreProcessor.Accuracy;
|
|
|
|
local.Combo.BindTarget = scoreProcessor.Combo;
|
2022-09-10 06:10:55 +08:00
|
|
|
|
2022-09-13 16:07:13 +08:00
|
|
|
foreach (var s in scores)
|
2022-09-10 06:10:55 +08:00
|
|
|
{
|
2022-09-13 16:07:13 +08:00
|
|
|
var score = Add(s.User, false);
|
2022-09-10 06:10:55 +08:00
|
|
|
|
2022-09-13 15:04:38 +08:00
|
|
|
score.TotalScore.Value = s.TotalScore;
|
|
|
|
score.Accuracy.Value = s.Accuracy;
|
|
|
|
score.Combo.Value = s.MaxCombo;
|
2022-09-10 06:10:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|