2019-01-24 17:43:03 +09:00
|
|
|
|
// 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-06-14 16:25:44 +09:00
|
|
|
|
|
2021-11-15 16:06:46 +09:00
|
|
|
|
using System.Collections.Generic;
|
2021-11-15 16:06:29 +09:00
|
|
|
|
using Newtonsoft.Json;
|
2022-06-27 15:05:49 +09:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-06-14 16:25:44 +09:00
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class ManiaDifficultyAttributes : DifficultyAttributes
|
|
|
|
|
{
|
2022-02-16 14:09:19 +09:00
|
|
|
|
/// <summary>
|
2022-02-16 19:50:27 +09:00
|
|
|
|
/// The hit window for a GREAT hit inclusive of rate-adjusting mods (DT/HT/etc).
|
2022-02-16 14:09:19 +09:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
2022-02-16 19:50:27 +09:00
|
|
|
|
/// Rate-adjusting mods do not affect the hit window at all in osu-stable.
|
2022-02-16 14:09:19 +09:00
|
|
|
|
/// </remarks>
|
2021-11-15 16:06:29 +09:00
|
|
|
|
[JsonProperty("great_hit_window")]
|
2021-06-08 19:43:59 +10:00
|
|
|
|
public double GreatHitWindow { get; set; }
|
2021-11-15 16:06:29 +09:00
|
|
|
|
|
2021-11-15 18:11:07 +09:00
|
|
|
|
public override IEnumerable<(int attributeId, object value)> ToDatabaseAttributes()
|
2021-11-15 16:06:46 +09:00
|
|
|
|
{
|
2021-11-15 18:11:07 +09:00
|
|
|
|
foreach (var v in base.ToDatabaseAttributes())
|
2021-11-15 16:06:46 +09:00
|
|
|
|
yield return v;
|
|
|
|
|
|
2021-12-17 23:39:03 +03:00
|
|
|
|
yield return (ATTRIB_ID_DIFFICULTY, StarRating);
|
2021-11-17 20:31:18 +09:00
|
|
|
|
yield return (ATTRIB_ID_GREAT_HIT_WINDOW, GreatHitWindow);
|
2021-11-15 16:06:46 +09:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-27 15:05:49 +09:00
|
|
|
|
public override void FromDatabaseAttributes(IReadOnlyDictionary<int, double> values, IBeatmapOnlineInfo onlineInfo)
|
2021-11-15 16:06:46 +09:00
|
|
|
|
{
|
2022-06-27 15:05:49 +09:00
|
|
|
|
base.FromDatabaseAttributes(values, onlineInfo);
|
2021-11-15 16:06:46 +09:00
|
|
|
|
|
2021-12-17 23:39:03 +03:00
|
|
|
|
StarRating = values[ATTRIB_ID_DIFFICULTY];
|
2021-11-17 20:31:18 +09:00
|
|
|
|
GreatHitWindow = values[ATTRIB_ID_GREAT_HIT_WINDOW];
|
2021-11-15 16:06:46 +09:00
|
|
|
|
}
|
2018-06-14 16:25:44 +09:00
|
|
|
|
}
|
|
|
|
|
}
|