Path: blob/master/osu.Game/Screens/Ranking/Statistics/User/PerformancePointsChangeRow.cs
4543 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Diagnostics; using osu.Framework.Localisation; using osu.Game.Resources.Localisation.Web; namespace osu.Game.Screens.Ranking.Statistics.User { public partial class PerformancePointsChangeRow : RankingChangeRow<int?> { public PerformancePointsChangeRow() : base(stats => stats.PP != null ? (int)Math.Round(stats.PP.Value) : null) { } protected override LocalisableString Label => RankingsStrings.StatPerformance; protected override LocalisableString FormatCurrentValue(int? current) => current == null ? string.Empty : LocalisableString.Interpolate($@"{current:N0}pp"); protected override int CalculateDifference(int? previous, int? current, out LocalisableString formattedDifference) { if (previous == null && current == null) { formattedDifference = string.Empty; return 0; } if (previous == null && current != null) { formattedDifference = LocalisableString.Interpolate($"+{current.Value:N0}pp"); return 1; } if (previous != null && current == null) { formattedDifference = LocalisableString.Interpolate($"-{previous.Value:N0}pp"); return -1; } Debug.Assert(previous != null && current != null); decimal difference = current.Value - previous.Value; if (difference < 0) formattedDifference = LocalisableString.Interpolate($@"{difference:N0}pp"); else if (difference > 0) formattedDifference = LocalisableString.Interpolate($@"+{difference:N0}pp"); else formattedDifference = string.Empty; return current.Value.CompareTo(previous.Value); } } }