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
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-05-07 09:51:30 +08:00
|
|
|
|
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);
|
2018-05-07 09:51:30 +08:00
|
|
|
|
int drumrolls = HitObjects.Count(s => s is DrumRoll);
|
|
|
|
|
int swells = HitObjects.Count(s => s is Swell);
|
|
|
|
|
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
2018-05-07 10:33:05 +08:00
|
|
|
|
Name = @"Hit Count",
|
|
|
|
|
Content = hits.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:51:30 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Drumroll Count",
|
|
|
|
|
Content = drumrolls.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:51:30 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Swell Count",
|
|
|
|
|
Content = swells.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:51:30 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|