mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Add to/from database mapping functions to difficulty attributes
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
// 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;
|
||||
|
||||
@ -22,5 +23,24 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
|
||||
|
||||
[JsonProperty("great_hit_window")]
|
||||
public double GreatHitWindow { get; set; }
|
||||
|
||||
public override IEnumerable<(int attributeId, object value)> ToDatabase()
|
||||
{
|
||||
foreach (var v in base.ToDatabase())
|
||||
yield return v;
|
||||
|
||||
yield return (9, MaxCombo);
|
||||
yield return (11, StarRating);
|
||||
yield return (13, GreatHitWindow);
|
||||
}
|
||||
|
||||
public override void FromDatabase(IReadOnlyDictionary<int, double> values, int hitCircleCount, int spinnerCount)
|
||||
{
|
||||
base.FromDatabase(values, hitCircleCount, spinnerCount);
|
||||
|
||||
MaxCombo = (int)values[9];
|
||||
StarRating = values[11];
|
||||
GreatHitWindow = values[13];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user