2019-01-24 16:43:03 +08: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 15:25:44 +08:00
|
|
|
|
|
2021-11-15 15:06:46 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-11-15 15:06:29 +08:00
|
|
|
|
using Newtonsoft.Json;
|
2018-06-14 15:25:44 +08:00
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class ManiaDifficultyAttributes : DifficultyAttributes
|
|
|
|
|
{
|
2021-11-15 15:06:29 +08:00
|
|
|
|
[JsonProperty("great_hit_window")]
|
2021-06-08 17:43:59 +08:00
|
|
|
|
public double GreatHitWindow { get; set; }
|
2021-11-15 15:06:29 +08:00
|
|
|
|
|
|
|
|
|
[JsonProperty("score_multiplier")]
|
2021-06-08 17:43:59 +08:00
|
|
|
|
public double ScoreMultiplier { get; set; }
|
2021-11-15 15:06:46 +08:00
|
|
|
|
|
2021-11-15 17:11:07 +08:00
|
|
|
|
public override IEnumerable<(int attributeId, object value)> ToDatabaseAttributes()
|
2021-11-15 15:06:46 +08:00
|
|
|
|
{
|
2021-11-15 17:11:07 +08:00
|
|
|
|
foreach (var v in base.ToDatabaseAttributes())
|
2021-11-15 15:06:46 +08:00
|
|
|
|
yield return v;
|
|
|
|
|
|
|
|
|
|
// Todo: Mania doesn't output MaxCombo attribute for some reason.
|
|
|
|
|
yield return (11, StarRating);
|
|
|
|
|
yield return (13, GreatHitWindow);
|
|
|
|
|
yield return (15, ScoreMultiplier);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-15 17:11:07 +08:00
|
|
|
|
public override void FromDatabaseAttributes(IReadOnlyDictionary<int, double> values)
|
2021-11-15 15:06:46 +08:00
|
|
|
|
{
|
2021-11-15 17:11:07 +08:00
|
|
|
|
base.FromDatabaseAttributes(values);
|
2021-11-15 15:06:46 +08:00
|
|
|
|
|
|
|
|
|
StarRating = values[11];
|
|
|
|
|
GreatHitWindow = values[13];
|
|
|
|
|
ScoreMultiplier = values[15];
|
|
|
|
|
}
|
2018-06-14 15:25:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|