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

286 lines
8.0 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 17:19:50 +08:00
using System;
using System.Collections.Generic;
2018-11-28 15:39:08 +08:00
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
2018-09-28 17:29:49 +08:00
using Newtonsoft.Json;
2018-12-26 21:42:17 +08:00
using Newtonsoft.Json.Converters;
using osu.Framework.Extensions;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
2018-11-28 15:39:08 +08:00
using osu.Game.Database;
2018-11-28 15:33:42 +08:00
using osu.Game.Rulesets;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Mods;
2018-11-28 15:33:42 +08:00
using osu.Game.Rulesets.Scoring;
2019-09-06 14:24:00 +08:00
using osu.Game.Users;
using osu.Game.Utils;
2018-04-13 17:19:50 +08:00
2018-11-28 15:12:57 +08:00
namespace osu.Game.Scoring
2018-04-13 17:19:50 +08:00
{
public class ScoreInfo : IHasFiles<ScoreFileInfo>, IHasPrimaryKey, ISoftDelete, IEquatable<ScoreInfo>
2018-04-13 17:19:50 +08:00
{
2018-11-28 15:39:08 +08:00
public int ID { get; set; }
2018-12-14 20:09:17 +08:00
[JsonProperty("rank")]
2018-12-26 21:42:17 +08:00
[JsonConverter(typeof(StringEnumConverter))]
2018-04-13 17:19:50 +08:00
public ScoreRank Rank { get; set; }
2018-12-14 20:09:17 +08:00
[JsonProperty("total_score")]
2019-02-26 12:10:07 +08:00
public long TotalScore { get; set; }
2018-04-13 17:19:50 +08:00
2018-12-14 20:09:17 +08:00
[JsonProperty("accuracy")]
[Column(TypeName = "DECIMAL(1,4)")]
2018-04-13 17:19:50 +08:00
public double Accuracy { get; set; }
[JsonIgnore]
public string DisplayAccuracy => Accuracy.FormatAccuracy();
2019-01-04 15:33:35 +08:00
[JsonProperty(@"pp")]
2018-04-13 17:19:50 +08:00
public double? PP { get; set; }
2018-12-14 20:09:17 +08:00
[JsonProperty("max_combo")]
2018-04-13 17:19:50 +08:00
public int MaxCombo { get; set; }
2018-12-14 20:09:17 +08:00
[JsonIgnore]
public int Combo { get; set; } // Todo: Shouldn't exist in here
2018-04-13 17:19:50 +08:00
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-28 16:26:46 +08:00
public int RulesetID { get; set; }
2018-12-14 20:09:17 +08:00
[JsonProperty("passed")]
[NotMapped]
public bool Passed { get; set; } = true;
[JsonIgnore]
2018-11-30 15:11:09 +08:00
public virtual RulesetInfo Ruleset { get; set; }
2018-04-13 17:19:50 +08:00
2018-11-30 15:11:09 +08:00
private Mod[] mods;
2018-12-14 20:09:17 +08:00
[JsonProperty("mods")]
2018-11-30 15:11:09 +08:00
[NotMapped]
2018-11-28 18:47:20 +08:00
public Mod[] Mods
2018-11-28 15:39:08 +08:00
{
2018-11-28 18:47:20 +08:00
get
2018-11-28 15:39:08 +08:00
{
2018-11-30 17:52:31 +08:00
if (mods != null)
return mods;
2018-11-30 15:11:09 +08:00
if (modsJson == null)
return Array.Empty<Mod>();
2018-11-30 15:11:09 +08:00
return getModsFromRuleset(JsonConvert.DeserializeObject<DeserializedMod[]>(modsJson));
}
set
{
modsJson = null;
2018-11-30 15:11:09 +08:00
mods = value;
2018-11-28 15:39:08 +08:00
}
}
private Mod[] getModsFromRuleset(DeserializedMod[] mods) => Ruleset.CreateInstance().GetAllMods().Where(mod => mods.Any(d => d.Acronym == mod.Acronym)).ToArray();
2018-11-30 15:11:09 +08:00
private string modsJson;
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-30 15:11:09 +08:00
[Column("Mods")]
public string ModsJson
{
2018-11-30 17:52:31 +08:00
get
{
if (modsJson != null)
return modsJson;
if (mods == null)
return null;
return modsJson = JsonConvert.SerializeObject(mods.Select(m => new DeserializedMod { Acronym = m.Acronym }));
2018-11-30 17:52:31 +08:00
}
2018-11-30 15:11:09 +08:00
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;
}
}
2018-11-28 18:47:20 +08:00
2018-12-22 14:17:35 +08:00
[NotMapped]
[JsonProperty("user")]
public User User { get; set; }
2018-04-13 17:19:50 +08:00
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-30 15:11:09 +08:00
[Column("User")]
2018-11-28 15:39:08 +08:00
public string UserString
{
get => User?.Username;
set
{
User ??= new User();
2019-02-25 14:25:22 +08:00
User.Username = value;
}
}
[JsonIgnore]
[Column("UserID")]
2019-02-25 13:40:44 +08:00
public long? UserID
{
2019-02-25 13:40:44 +08:00
get => User?.Id ?? 1;
set
{
User ??= new User();
2019-02-25 14:25:22 +08:00
User.Id = value ?? 1;
}
2018-11-28 15:39:08 +08:00
}
2018-11-30 17:06:48 +08:00
[JsonIgnore]
public int BeatmapInfoID { get; set; }
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-30 15:11:09 +08:00
public virtual BeatmapInfo Beatmap { get; set; }
2018-04-13 17:19:50 +08:00
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-28 17:52:57 +08:00
public long? OnlineScoreID { get; set; }
2018-04-13 17:19:50 +08:00
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-28 19:16:20 +08:00
public DateTimeOffset Date { get; set; }
2018-04-13 17:19:50 +08:00
2018-12-14 20:09:17 +08:00
[JsonProperty("statistics")]
2018-12-05 18:44:01 +08:00
public Dictionary<HitResult, int> Statistics = new Dictionary<HitResult, int>();
2018-11-28 15:39:08 +08:00
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-30 15:11:09 +08:00
[Column("Statistics")]
public string StatisticsJson
{
get => JsonConvert.SerializeObject(Statistics);
set
{
if (value == null)
2018-11-30 15:11:09 +08:00
{
Statistics.Clear();
return;
2018-11-30 15:11:09 +08:00
}
2018-12-05 18:44:01 +08:00
Statistics = JsonConvert.DeserializeObject<Dictionary<HitResult, int>>(value);
}
}
[NotMapped]
[JsonIgnore]
2020-06-19 18:58:35 +08:00
public List<HitEvent> HitEvents { get; set; }
2018-11-30 17:06:48 +08:00
[JsonIgnore]
2018-11-28 15:39:08 +08:00
public List<ScoreFileInfo> Files { get; set; }
2018-12-14 20:09:17 +08:00
[JsonIgnore]
public string Hash { get; set; }
2018-12-14 20:09:17 +08:00
[JsonIgnore]
2018-11-28 15:39:08 +08:00
public bool DeletePending { get; set; }
2018-11-30 15:11:09 +08:00
/// <summary>
/// The position of this score, starting at 1.
/// </summary>
[NotMapped]
[JsonProperty("position")]
public int? Position { get; set; }
private bool isLegacyScore;
/// <summary>
/// Whether this <see cref="ScoreInfo"/> represents a legacy (osu!stable) score.
/// </summary>
[JsonIgnore]
[NotMapped]
public bool IsLegacyScore
{
get
{
if (isLegacyScore)
return true;
// The above check will catch legacy online scores that have an appropriate UserString + UserId.
// For non-online scores such as those imported in, a heuristic is used based on the following table:
//
// Mode | UserString | UserId
// --------------- | ---------- | ---------
// stable | <username> | 1
// lazer | <username> | <userid>
// lazer (offline) | Guest | 1
return ID > 0 && UserID == 1 && UserString != "Guest";
}
set => isLegacyScore = value;
}
public IEnumerable<(HitResult result, int count, int? maxCount)> GetStatisticsForDisplay()
{
foreach (var key in OrderAttributeUtils.GetValuesInOrder<HitResult>())
{
if (key.IsBonus())
continue;
int value = Statistics.GetOrDefault(key);
switch (key)
{
case HitResult.SmallTickHit:
{
int total = value + Statistics.GetOrDefault(HitResult.SmallTickMiss);
if (total > 0)
yield return (key, value, total);
break;
}
case HitResult.LargeTickHit:
{
int total = value + Statistics.GetOrDefault(HitResult.LargeTickMiss);
if (total > 0)
yield return (key, value, total);
break;
}
case HitResult.SmallTickMiss:
case HitResult.LargeTickMiss:
break;
default:
if (value > 0 || key == HitResult.Miss)
yield return (key, value, null);
break;
}
}
}
2018-11-30 15:11:09 +08:00
[Serializable]
protected class DeserializedMod : IMod
2018-11-30 15:11:09 +08:00
{
public string Acronym { get; set; }
public bool Equals(IMod other) => Acronym == other?.Acronym;
2018-11-30 15:11:09 +08:00
}
2019-02-25 17:42:08 +08:00
public override string ToString() => $"{User} playing {Beatmap}";
2019-12-03 12:33:42 +08:00
public bool Equals(ScoreInfo other)
{
if (other == null)
return false;
if (ID != 0 && other.ID != 0)
return ID == other.ID;
if (OnlineScoreID.HasValue && other.OnlineScoreID.HasValue)
return OnlineScoreID == other.OnlineScoreID;
if (!string.IsNullOrEmpty(Hash) && !string.IsNullOrEmpty(other.Hash))
return Hash == other.Hash;
return ReferenceEquals(this, other);
}
2018-04-13 17:19:50 +08:00
}
}