2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-11-29 15:41:48 +09:00
|
|
|
|
|
2017-03-15 14:06:05 +09:00
|
|
|
|
using System;
|
2017-03-31 15:59:53 +09:00
|
|
|
|
using System.Collections.Generic;
|
2017-03-15 14:06:05 +09:00
|
|
|
|
using Newtonsoft.Json;
|
2017-03-04 19:02:36 +09:00
|
|
|
|
using osu.Game.Database;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2017-03-24 09:51:52 +09:00
|
|
|
|
using osu.Game.Users;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Replays;
|
2017-03-04 22:29:52 -04:00
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Scoring
|
2016-11-29 15:41:48 +09:00
|
|
|
|
{
|
|
|
|
|
public class Score
|
|
|
|
|
{
|
2017-03-13 18:34:43 -03:00
|
|
|
|
public ScoreRank Rank { get; set; }
|
2017-03-15 14:06:05 +09:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"score")]
|
2016-11-29 23:59:56 +09:00
|
|
|
|
public double TotalScore { get; set; }
|
2017-04-19 16:02:18 +09:00
|
|
|
|
|
2016-11-29 23:59:56 +09:00
|
|
|
|
public double Accuracy { get; set; }
|
2017-03-15 14:06:05 +09:00
|
|
|
|
|
2017-04-19 16:02:18 +09:00
|
|
|
|
public double Health { get; set; } = 1;
|
|
|
|
|
|
2017-04-20 18:54:35 +09:00
|
|
|
|
[JsonProperty(@"max_combo")]
|
2017-03-10 16:05:05 +09:00
|
|
|
|
public int MaxCombo { get; set; }
|
2017-04-19 16:02:18 +09:00
|
|
|
|
|
2017-03-10 16:05:05 +09:00
|
|
|
|
public int Combo { get; set; }
|
2017-03-04 15:29:15 +09:00
|
|
|
|
|
2017-04-19 16:02:18 +09:00
|
|
|
|
[JsonProperty(@"mods")]
|
|
|
|
|
protected string[] ModStrings { get; set; } //todo: parse to Mod objects
|
2017-04-11 13:47:30 +09:00
|
|
|
|
|
2017-04-20 11:16:08 +09:00
|
|
|
|
public RulesetInfo Ruleset { get; set; }
|
|
|
|
|
|
2017-04-19 16:02:18 +09:00
|
|
|
|
public Mod[] Mods { get; set; }
|
2017-04-11 13:47:30 +09:00
|
|
|
|
|
2017-04-19 16:02:18 +09:00
|
|
|
|
[JsonProperty(@"user")]
|
|
|
|
|
public User User;
|
2017-03-15 14:06:05 +09:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"replay_data")]
|
2017-03-04 15:29:15 +09:00
|
|
|
|
public Replay Replay;
|
2017-03-15 14:06:05 +09:00
|
|
|
|
|
2017-03-04 19:02:36 +09:00
|
|
|
|
public BeatmapInfo Beatmap;
|
2017-03-15 14:06:05 +09:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"score_id")]
|
|
|
|
|
public long OnlineScoreID;
|
|
|
|
|
|
2017-04-19 16:02:18 +09:00
|
|
|
|
[JsonProperty(@"created_at")]
|
2017-05-16 21:14:50 +08:00
|
|
|
|
public DateTimeOffset Date;
|
2017-03-15 14:06:05 +09:00
|
|
|
|
|
2017-04-20 18:54:35 +09:00
|
|
|
|
[JsonProperty(@"statistics")]
|
|
|
|
|
private Dictionary<string, dynamic> jsonStats
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
foreach (var kvp in value)
|
|
|
|
|
{
|
|
|
|
|
string key = kvp.Key;
|
|
|
|
|
switch (key)
|
|
|
|
|
{
|
|
|
|
|
case @"count_300":
|
|
|
|
|
key = @"300";
|
|
|
|
|
break;
|
|
|
|
|
case @"count_100":
|
|
|
|
|
key = @"100";
|
|
|
|
|
break;
|
|
|
|
|
case @"count_50":
|
|
|
|
|
key = @"50";
|
|
|
|
|
break;
|
|
|
|
|
case @"count_miss":
|
|
|
|
|
key = @"x";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Statistics.Add(key, kvp.Value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 11:02:56 +09:00
|
|
|
|
public Dictionary<string, dynamic> Statistics = new Dictionary<string, dynamic>();
|
2016-11-29 15:41:48 +09:00
|
|
|
|
}
|
|
|
|
|
}
|