2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// 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;
|
2017-03-31 14:59:53 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-07-26 12:22:46 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2017-03-24 08:51:52 +08:00
|
|
|
|
using osu.Game.Users;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Replays;
|
2017-03-05 10:29:52 +08:00
|
|
|
|
|
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-14 05:34:43 +08:00
|
|
|
|
public ScoreRank Rank { get; set; }
|
2017-03-15 13:06:05 +08:00
|
|
|
|
|
2016-11-29 22:59:56 +08:00
|
|
|
|
public double TotalScore { get; set; }
|
2017-04-19 15:02:18 +08:00
|
|
|
|
|
2016-11-29 22:59:56 +08:00
|
|
|
|
public double Accuracy { get; set; }
|
2017-03-15 13:06:05 +08:00
|
|
|
|
|
2017-04-19 15:02:18 +08:00
|
|
|
|
public double Health { get; set; } = 1;
|
|
|
|
|
|
2017-09-14 19:05:43 +08:00
|
|
|
|
public double? PP { get; set; }
|
2017-07-29 06:31:52 +08:00
|
|
|
|
|
2017-03-10 15:05:05 +08:00
|
|
|
|
public int MaxCombo { get; set; }
|
2017-04-19 15:02:18 +08:00
|
|
|
|
|
2017-03-10 15:05:05 +08:00
|
|
|
|
public int Combo { get; set; }
|
2017-03-04 14:29:15 +08:00
|
|
|
|
|
2017-04-20 10:16:08 +08:00
|
|
|
|
public RulesetInfo Ruleset { get; set; }
|
|
|
|
|
|
2017-09-14 19:05:43 +08:00
|
|
|
|
public Mod[] Mods { get; set; } = { };
|
2017-04-11 12:47:30 +08:00
|
|
|
|
|
2017-04-19 15:02:18 +08:00
|
|
|
|
public User User;
|
2017-03-15 13:06:05 +08:00
|
|
|
|
|
2017-03-04 14:29:15 +08:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
public long OnlineScoreID;
|
|
|
|
|
|
2017-05-16 21:14:50 +08:00
|
|
|
|
public DateTimeOffset Date;
|
2017-03-15 13:06:05 +08:00
|
|
|
|
|
2017-12-31 04:23:18 +08:00
|
|
|
|
public Dictionary<HitResult, object> Statistics = new Dictionary<HitResult, object>();
|
2016-11-29 14:41:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|