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-21 03:26:15 +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;
|
2018-06-21 03:26:15 +00:00
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class CatchDifficultyAttributes : DifficultyAttributes
|
|
|
|
|
{
|
2021-11-15 07:06:29 +00:00
|
|
|
|
[JsonProperty("approach_rate")]
|
2021-06-08 09:43:59 +00:00
|
|
|
|
public double ApproachRate { get; set; }
|
2021-11-15 07:06:46 +00:00
|
|
|
|
|
|
|
|
|
public override IEnumerable<(int attributeId, object value)> ToDatabase()
|
|
|
|
|
{
|
|
|
|
|
foreach (var v in base.ToDatabase())
|
|
|
|
|
yield return v;
|
|
|
|
|
|
|
|
|
|
// Todo: Catch should not output star rating in the 'aim' attribute.
|
|
|
|
|
yield return (1, StarRating);
|
|
|
|
|
yield return (7, ApproachRate);
|
|
|
|
|
yield return (9, MaxCombo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void FromDatabase(IReadOnlyDictionary<int, double> values, int hitCircleCount, int spinnerCount)
|
|
|
|
|
{
|
|
|
|
|
base.FromDatabase(values, hitCircleCount, spinnerCount);
|
|
|
|
|
|
|
|
|
|
StarRating = values[1];
|
|
|
|
|
ApproachRate = values[7];
|
|
|
|
|
MaxCombo = (int)values[9];
|
|
|
|
|
}
|
2018-06-21 03:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|