mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
// 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.
|
|
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Difficulty
|
|
{
|
|
public class ManiaDifficultyAttributes : DifficultyAttributes
|
|
{
|
|
/// <summary>
|
|
/// The hit window for a GREAT hit inclusive of rate-adjusting mods (DT/HT/etc).
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Rate-adjusting mods do not affect the hit window at all in osu-stable.
|
|
/// </remarks>
|
|
[JsonProperty("great_hit_window")]
|
|
public double GreatHitWindow { get; set; }
|
|
|
|
/// <summary>
|
|
/// The score multiplier applied via score-reducing mods.
|
|
/// </summary>
|
|
[JsonProperty("score_multiplier")]
|
|
public double ScoreMultiplier { get; set; }
|
|
|
|
public override IEnumerable<(int attributeId, object value)> ToDatabaseAttributes()
|
|
{
|
|
foreach (var v in base.ToDatabaseAttributes())
|
|
yield return v;
|
|
|
|
// Todo: osu!mania doesn't output MaxCombo attribute for some reason.
|
|
yield return (ATTRIB_ID_DIFFICULTY, StarRating);
|
|
yield return (ATTRIB_ID_GREAT_HIT_WINDOW, GreatHitWindow);
|
|
yield return (ATTRIB_ID_SCORE_MULTIPLIER, ScoreMultiplier);
|
|
}
|
|
|
|
public override void FromDatabaseAttributes(IReadOnlyDictionary<int, double> values)
|
|
{
|
|
base.FromDatabaseAttributes(values);
|
|
|
|
StarRating = values[ATTRIB_ID_DIFFICULTY];
|
|
GreatHitWindow = values[ATTRIB_ID_GREAT_HIT_WINDOW];
|
|
ScoreMultiplier = values[ATTRIB_ID_SCORE_MULTIPLIER];
|
|
}
|
|
}
|
|
}
|