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