// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using System.Linq; using Newtonsoft.Json; using osu.Game.Rulesets.Mods; namespace osu.Game.Rulesets.Difficulty { /// /// Describes the difficulty of a beatmap, as output by a . /// [JsonObject(MemberSerialization.OptIn)] public class DifficultyAttributes { protected const int ATTRIB_ID_AIM = 1; protected const int ATTRIB_ID_SPEED = 3; protected const int ATTRIB_ID_OVERALL_DIFFICULTY = 5; protected const int ATTRIB_ID_APPROACH_RATE = 7; protected const int ATTRIB_ID_MAX_COMBO = 9; protected const int ATTRIB_ID_DIFFICULTY = 11; protected const int ATTRIB_ID_GREAT_HIT_WINDOW = 13; protected const int ATTRIB_ID_SCORE_MULTIPLIER = 15; protected const int ATTRIB_ID_FLASHLIGHT = 17; protected const int ATTRIB_ID_SLIDER_FACTOR = 19; /// /// The mods which were applied to the beatmap. /// public Mod[] Mods { get; set; } /// /// The combined star rating of all skill. /// [JsonProperty("star_rating", Order = -3)] public double StarRating { get; set; } /// /// The maximum achievable combo. /// [JsonProperty("max_combo", Order = -2)] public int MaxCombo { get; set; } /// /// Creates new . /// public DifficultyAttributes() { } /// /// Creates new . /// /// The mods which were applied to the beatmap. /// The combined star rating of all skills. public DifficultyAttributes(Mod[] mods, double starRating) { Mods = mods; StarRating = starRating; } /// /// Converts this to osu-web compatible database attribute mappings. /// /// /// See: osu_difficulty_attribs table. /// public virtual IEnumerable<(int attributeId, object value)> ToDatabaseAttributes() => Enumerable.Empty<(int, object)>(); /// /// Reads osu-web database attribute mappings into this object. /// /// The attribute mappings. public virtual void FromDatabaseAttributes(IReadOnlyDictionary values) { } } }