mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
37 lines
1.7 KiB
C#
37 lines
1.7 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.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Scoring
|
|
{
|
|
public static class ScoreInfoExtensions
|
|
{
|
|
/// <summary>
|
|
/// A user-presentable display title representing this score.
|
|
/// </summary>
|
|
public static string GetDisplayTitle(this IScoreInfo scoreInfo) => $"{scoreInfo.User.Username} playing {scoreInfo.Beatmap?.GetDisplayTitle() ?? "unknown"}";
|
|
|
|
/// <summary>
|
|
/// Orders an array of <see cref="ScoreInfo"/>s by total score.
|
|
/// </summary>
|
|
/// <param name="scores">The array of <see cref="ScoreInfo"/>s to reorder.</param>
|
|
/// <returns>The given <paramref name="scores"/> ordered by decreasing total score.</returns>
|
|
public static IEnumerable<ScoreInfo> OrderByTotalScore(this IEnumerable<ScoreInfo> scores)
|
|
=> scores.OrderByDescending(s => s.TotalScore)
|
|
.ThenBy(s => s.OnlineID)
|
|
// Local scores may not have an online ID. Fall back to date in these cases.
|
|
.ThenBy(s => s.Date);
|
|
|
|
/// <summary>
|
|
/// Retrieves the maximum achievable combo for the provided score.
|
|
/// </summary>
|
|
/// <param name="score">The <see cref="ScoreInfo"/> to compute the maximum achievable combo for.</param>
|
|
/// <returns>The maximum achievable combo.</returns>
|
|
public static int GetMaximumAchievableCombo(this ScoreInfo score) => score.MaximumStatistics.Where(kvp => kvp.Key.AffectsCombo()).Sum(kvp => kvp.Value);
|
|
}
|
|
}
|