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-21 11:26:15 +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;
|
2022-06-27 14:05:49 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-06-21 11:26:15 +08:00
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class CatchDifficultyAttributes : DifficultyAttributes
|
|
|
|
|
{
|
2022-02-16 13:09:19 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The perceived approach rate inclusive of rate-adjusting mods (DT/HT/etc).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Rate-adjusting mods don't directly affect the approach rate difficulty value, but have a perceived effect as a result of adjusting audio timing.
|
|
|
|
|
/// </remarks>
|
2021-11-15 15:06:29 +08:00
|
|
|
|
[JsonProperty("approach_rate")]
|
2021-06-08 17:43:59 +08:00
|
|
|
|
public double ApproachRate { 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;
|
|
|
|
|
|
2021-11-17 19:31:18 +08:00
|
|
|
|
// Todo: osu!catch should not output star rating in the 'aim' attribute.
|
|
|
|
|
yield return (ATTRIB_ID_AIM, StarRating);
|
|
|
|
|
yield return (ATTRIB_ID_APPROACH_RATE, ApproachRate);
|
|
|
|
|
yield return (ATTRIB_ID_MAX_COMBO, MaxCombo);
|
2021-11-15 15:06:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-27 14:05:49 +08:00
|
|
|
|
public override void FromDatabaseAttributes(IReadOnlyDictionary<int, double> values, IBeatmapOnlineInfo onlineInfo)
|
2021-11-15 15:06:46 +08:00
|
|
|
|
{
|
2022-06-27 14:05:49 +08:00
|
|
|
|
base.FromDatabaseAttributes(values, onlineInfo);
|
2021-11-15 15:06:46 +08:00
|
|
|
|
|
2021-11-17 19:31:18 +08:00
|
|
|
|
StarRating = values[ATTRIB_ID_AIM];
|
|
|
|
|
ApproachRate = values[ATTRIB_ID_APPROACH_RATE];
|
|
|
|
|
MaxCombo = (int)values[ATTRIB_ID_MAX_COMBO];
|
2021-11-15 15:06:46 +08:00
|
|
|
|
}
|
2018-06-21 11:26:15 +08:00
|
|
|
|
}
|
|
|
|
|
}
|