1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 08:07:24 +08:00
osu-lazer/osu.Game/Rulesets/Scoring/Score.cs

56 lines
1.4 KiB
C#
Raw Normal View History

// 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 14:41:48 +08:00
2017-03-15 13:06:05 +08:00
using System;
using System.Collections.Generic;
2017-03-15 13:06:05 +08:00
using Newtonsoft.Json;
2017-03-04 18:02:36 +08:00
using osu.Game.Database;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Users;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Replays;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Scoring
2016-11-29 14:41:48 +08:00
{
public class Score
{
2017-03-15 13:06:05 +08:00
[JsonProperty(@"rank")]
2017-03-14 05:34:43 +08:00
public ScoreRank Rank { get; set; }
2017-03-15 13:06:05 +08:00
[JsonProperty(@"score")]
2016-11-29 22:59:56 +08:00
public double TotalScore { get; set; }
[JsonProperty(@"accuracy")]
2016-11-29 22:59:56 +08:00
public double Accuracy { get; set; }
2017-03-15 13:06:05 +08:00
public double Health { get; set; } = 1;
[JsonProperty(@"combo")]
2017-03-10 15:05:05 +08:00
public int MaxCombo { get; set; }
2017-03-10 15:05:05 +08:00
public int Combo { get; set; }
[JsonProperty(@"mods")]
protected string[] ModStrings { get; set; } //todo: parse to Mod objects
public RulesetInfo Ruleset { get; set; }
public Mod[] Mods { get; set; }
[JsonProperty(@"user")]
public User User;
2017-03-15 13:06:05 +08:00
[JsonProperty(@"replay_data")]
public Replay Replay;
2017-03-15 13:06:05 +08:00
2017-03-04 18:02:36 +08:00
public BeatmapInfo Beatmap;
2017-03-15 13:06:05 +08:00
[JsonProperty(@"score_id")]
public long OnlineScoreID;
[JsonProperty(@"created_at")]
2017-03-15 13:06:05 +08:00
public DateTime Date;
public Dictionary<string, dynamic> Statistics = new Dictionary<string, dynamic>();
2016-11-29 14:41:48 +08:00
}
}