2021-12-21 18:08:31 +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.
|
|
|
|
|
|
2022-01-17 18:28:17 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-12-21 18:08:31 +08:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class TaikoPerformanceAttributes : PerformanceAttributes
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("difficulty")]
|
|
|
|
|
public double Difficulty { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("accuracy")]
|
|
|
|
|
public double Accuracy { get; set; }
|
2022-01-17 18:28:17 +08:00
|
|
|
|
|
|
|
|
|
public override IEnumerable<PerformanceDisplayAttribute> GetAttributesForDisplay()
|
|
|
|
|
{
|
|
|
|
|
foreach (var attribute in base.GetAttributesForDisplay())
|
|
|
|
|
yield return attribute;
|
|
|
|
|
|
2022-01-17 20:45:25 +08:00
|
|
|
|
yield return new PerformanceDisplayAttribute(nameof(Difficulty), "Difficulty", Difficulty);
|
|
|
|
|
yield return new PerformanceDisplayAttribute(nameof(Accuracy), "Accuracy", Accuracy);
|
2022-01-17 18:28:17 +08:00
|
|
|
|
}
|
2021-12-21 18:08:31 +08:00
|
|
|
|
}
|
|
|
|
|
}
|