osu/osu.Game/Users/UserStatistics.cs

118 lines
2.9 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-04-13 09:19:50 +00:00
2018-12-22 15:51:24 +00:00
using System;
2018-04-13 09:19:50 +00:00
using Newtonsoft.Json;
2021-07-23 20:37:08 +00:00
using osu.Framework.Localisation;
2018-12-22 15:51:24 +00:00
using osu.Game.Scoring;
using osu.Game.Utils;
2020-02-04 04:36:22 +00:00
using static osu.Game.Users.User;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Users
{
public class UserStatistics
{
2019-11-27 18:56:22 +00:00
[JsonProperty]
public User User;
2018-04-13 09:19:50 +00:00
[JsonProperty(@"level")]
public LevelInfo Level;
public struct LevelInfo
{
[JsonProperty(@"current")]
public int Current;
[JsonProperty(@"progress")]
public int Progress;
}
[JsonProperty(@"global_rank")]
public int? GlobalRank;
[JsonProperty(@"country_rank")]
public int? CountryRank;
2021-02-19 04:40:12 +00:00
// populated via User model, as that's where the data currently lives.
public RankHistoryData RankHistory;
[JsonProperty(@"pp")]
public decimal? PP;
2018-04-13 09:19:50 +00:00
[JsonProperty(@"ranked_score")]
public long RankedScore;
[JsonProperty(@"hit_accuracy")]
public double Accuracy;
2018-04-13 09:19:50 +00:00
[JsonIgnore]
2021-07-23 20:37:08 +00:00
public LocalisableString DisplayAccuracy => (Accuracy / 100).FormatAccuracy();
2018-04-13 09:19:50 +00:00
[JsonProperty(@"play_count")]
public int PlayCount;
2018-12-22 15:51:24 +00:00
[JsonProperty(@"play_time")]
public int? PlayTime;
2018-04-13 09:19:50 +00:00
[JsonProperty(@"total_score")]
public long TotalScore;
[JsonProperty(@"total_hits")]
public int TotalHits;
[JsonProperty(@"maximum_combo")]
public int MaxCombo;
[JsonProperty(@"replays_watched_by_others")]
public int ReplaysWatched;
[JsonProperty(@"grade_counts")]
public Grades GradesCount;
public struct Grades
{
[JsonProperty(@"ssh")]
public int? SSPlus;
2018-04-13 09:19:50 +00:00
[JsonProperty(@"ss")]
public int SS;
[JsonProperty(@"sh")]
public int? SPlus;
2018-04-13 09:19:50 +00:00
[JsonProperty(@"s")]
public int S;
[JsonProperty(@"a")]
public int A;
2018-12-22 15:51:24 +00:00
2020-02-04 18:02:10 +00:00
public int this[ScoreRank rank]
2018-12-22 15:51:24 +00:00
{
2019-03-06 07:30:56 +00:00
get
2018-12-22 15:51:24 +00:00
{
2019-03-06 07:30:56 +00:00
switch (rank)
{
case ScoreRank.XH:
2020-02-04 18:02:10 +00:00
return SSPlus ?? 0;
2019-03-06 07:30:56 +00:00
case ScoreRank.X:
return SS;
2019-03-06 07:30:56 +00:00
case ScoreRank.SH:
2020-02-04 18:02:10 +00:00
return SPlus ?? 0;
2019-03-06 07:30:56 +00:00
case ScoreRank.S:
return S;
2019-03-06 07:30:56 +00:00
case ScoreRank.A:
return A;
2019-03-06 07:30:56 +00:00
default:
throw new ArgumentException($"API does not return {rank.ToString()}");
}
2018-12-22 15:51:24 +00:00
}
}
2018-04-13 09:19:50 +00:00
}
}
}