// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using osu.Game.Beatmaps; using osu.Game.Database; using osu.Game.Rulesets; using osu.Game.Rulesets.Mods; using osu.Game.Users; using osu.Game.Rulesets.Scoring; namespace osu.Game.Scoring { public class ScoreInfo : IHasFiles, IHasPrimaryKey, ISoftDelete, IEquatable { public int ID { get; set; } [JsonProperty("rank")] [JsonConverter(typeof(StringEnumConverter))] public ScoreRank Rank { get; set; } [JsonProperty("total_score")] public long TotalScore { get; set; } [JsonProperty("accuracy")] [Column(TypeName = "DECIMAL(1,4)")] public double Accuracy { get; set; } [JsonProperty(@"pp")] public double? PP { get; set; } [JsonProperty("max_combo")] public int MaxCombo { get; set; } [JsonIgnore] public int Combo { get; set; } // Todo: Shouldn't exist in here [JsonIgnore] public int RulesetID { get; set; } [JsonProperty("passed")] [NotMapped] public bool Passed { get; set; } = true; [JsonIgnore] public virtual RulesetInfo Ruleset { get; set; } private Mod[] mods; [JsonProperty("mods")] [NotMapped] public Mod[] Mods { get { if (mods != null) return mods; if (modsJson == null) return Array.Empty(); return getModsFromRuleset(JsonConvert.DeserializeObject(modsJson)); } set { modsJson = null; mods = value; } } private Mod[] getModsFromRuleset(DeserializedMod[] mods) => Ruleset.CreateInstance().GetAllMods().Where(mod => mods.Any(d => d.Acronym == mod.Acronym)).ToArray(); private string modsJson; [JsonIgnore] [Column("Mods")] public string ModsJson { get { if (modsJson != null) return modsJson; if (mods == null) return null; return modsJson = JsonConvert.SerializeObject(mods); } set { modsJson = value; // we potentially can't update this yet due to Ruleset being late-bound, so instead update on read as necessary. mods = null; } } [NotMapped] [JsonProperty("user")] public User User { get; set; } [JsonIgnore] [Column("User")] public string UserString { get => User?.Username; set { if (User == null) User = new User(); User.Username = value; } } [JsonIgnore] [Column("UserID")] public long? UserID { get => User?.Id ?? 1; set { if (User == null) User = new User(); User.Id = value ?? 1; } } [JsonIgnore] public int BeatmapInfoID { get; set; } [JsonIgnore] public virtual BeatmapInfo Beatmap { get; set; } [JsonIgnore] public long? OnlineScoreID { get; set; } [JsonIgnore] public DateTimeOffset Date { get; set; } [JsonProperty("statistics")] public Dictionary Statistics = new Dictionary(); [JsonIgnore] [Column("Statistics")] public string StatisticsJson { get => JsonConvert.SerializeObject(Statistics); set { if (value == null) { Statistics.Clear(); return; } Statistics = JsonConvert.DeserializeObject>(value); } } [JsonIgnore] public List Files { get; set; } [JsonIgnore] public string Hash { get; set; } [JsonIgnore] public bool DeletePending { get; set; } [Serializable] protected class DeserializedMod : IMod { public string Acronym { get; set; } public bool Equals(IMod other) => Acronym == other?.Acronym; } public override string ToString() => $"{User} playing {Beatmap}"; public bool Equals(ScoreInfo other) => other?.OnlineScoreID == OnlineScoreID; } }