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-05-07 09:51:30 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-05-07 09:51:30 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
public class TaikoBeatmap : Beatmap<TaikoHitObject>
|
|
|
|
|
{
|
|
|
|
|
public override IEnumerable<BeatmapStatistic> GetStatistics()
|
|
|
|
|
{
|
2018-05-07 10:33:05 +08:00
|
|
|
|
int hits = HitObjects.Count(s => s is Hit);
|
2021-12-10 13:15:00 +08:00
|
|
|
|
int drumRolls = HitObjects.Count(s => s is DrumRoll);
|
2018-05-07 09:51:30 +08:00
|
|
|
|
int swells = HitObjects.Count(s => s is Swell);
|
|
|
|
|
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
2018-05-07 10:33:05 +08:00
|
|
|
|
Name = @"Hit Count",
|
2020-09-04 14:01:32 +08:00
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Circles),
|
2018-05-07 10:33:05 +08:00
|
|
|
|
Content = hits.ToString(),
|
2018-05-07 09:51:30 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Drumroll Count",
|
2020-09-04 14:01:32 +08:00
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Sliders),
|
2021-12-10 13:15:00 +08:00
|
|
|
|
Content = drumRolls.ToString(),
|
2018-05-07 09:51:30 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Swell Count",
|
2020-09-04 14:01:32 +08:00
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Spinners),
|
2018-05-07 09:51:30 +08:00
|
|
|
|
Content = swells.ToString(),
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|