1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00

Show rank chart with dummy data.

This commit is contained in:
Huo Yaoyuan 2017-06-26 00:43:49 +08:00
parent cad594018f
commit d6a7206041

View File

@ -24,7 +24,6 @@ namespace osu.Game.Overlays.Profile
private readonly RankChartLineGraph graph; private readonly RankChartLineGraph graph;
private readonly int[] ranks; private readonly int[] ranks;
private readonly decimal?[] performances;
private const float primary_textsize = 25, secondary_textsize = 13, padding = 10; private const float primary_textsize = 25, secondary_textsize = 13, padding = 10;
@ -70,22 +69,19 @@ namespace osu.Game.Overlays.Profile
BallMove = showHistoryRankTexts BallMove = showHistoryRankTexts
} }
}; };
ranks = new[] { user.Statistics.Rank }; ranks = user.AllRankHistories?.Osu?.Data ?? new[] { user.Statistics.Rank };
performances = new[] { user.Statistics.PP };
} }
private void updateRankTexts() private void updateRankTexts()
{ {
rankText.Text = user.Statistics.Rank > 0 ? $"#{user.Statistics.Rank:#,0}" : "no rank"; rankText.Text = user.Statistics.Rank > 0 ? $"#{user.Statistics.Rank:#,0}" : "no rank";
performanceText.Text = user.Statistics.PP != null ? $"{user.Statistics.PP:#,0}pp" : string.Empty; performanceText.Text = user.Statistics.PP != null ? $"{user.Statistics.PP:#,0}pp" : string.Empty;
//relativeText.Text = $"{user.Country?.FullName} #{countryRank:#,0}"; relativeText.Text = $"{user.Country?.FullName} #{user.CountryRank:#,0}";
relativeText.Text = string.Empty;
} }
private void showHistoryRankTexts(int dayIndex) private void showHistoryRankTexts(int dayIndex)
{ {
rankText.Text = ranks[dayIndex] > 0 ? $"#{ranks[dayIndex]:#,0}" : "no rank"; rankText.Text = ranks[dayIndex] > 0 ? $"#{ranks[dayIndex]:#,0}" : "no rank";
performanceText.Text = performances[dayIndex] != null ? $"{performances[dayIndex]:#,0}pp" : string.Empty;
relativeText.Text = dayIndex == ranks.Length ? "Now" : $"{ranks.Length - dayIndex} days ago"; relativeText.Text = dayIndex == ranks.Length ? "Now" : $"{ranks.Length - dayIndex} days ago";
//plural should be handled in a general way //plural should be handled in a general way
} }