mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
44 lines
1.4 KiB
C#
44 lines
1.4 KiB
C#
// 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.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Graphics.Sprites;
|
|
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()
|
|
{
|
|
int hits = HitObjects.Count(s => s is Hit);
|
|
int drumrolls = HitObjects.Count(s => s is DrumRoll);
|
|
int swells = HitObjects.Count(s => s is Swell);
|
|
|
|
return new[]
|
|
{
|
|
new BeatmapStatistic
|
|
{
|
|
Name = @"Hit Count",
|
|
Content = hits.ToString(),
|
|
Icon = FontAwesome.Regular.Circle
|
|
},
|
|
new BeatmapStatistic
|
|
{
|
|
Name = @"Drumroll Count",
|
|
Content = drumrolls.ToString(),
|
|
Icon = FontAwesome.Regular.Circle
|
|
},
|
|
new BeatmapStatistic
|
|
{
|
|
Name = @"Swell Count",
|
|
Content = swells.ToString(),
|
|
Icon = FontAwesome.Regular.Circle
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|