mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:37:51 +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.Osu.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Beatmaps
|
|
{
|
|
public class OsuBeatmap : Beatmap<OsuHitObject>
|
|
{
|
|
public override IEnumerable<BeatmapStatistic> GetStatistics()
|
|
{
|
|
int circles = HitObjects.Count(c => c is HitCircle);
|
|
int sliders = HitObjects.Count(s => s is Slider);
|
|
int spinners = HitObjects.Count(s => s is Spinner);
|
|
|
|
return new[]
|
|
{
|
|
new BeatmapStatistic
|
|
{
|
|
Name = @"Circle Count",
|
|
Content = circles.ToString(),
|
|
Icon = FontAwesome.Regular.Circle
|
|
},
|
|
new BeatmapStatistic
|
|
{
|
|
Name = @"Slider Count",
|
|
Content = sliders.ToString(),
|
|
Icon = FontAwesome.Regular.Circle
|
|
},
|
|
new BeatmapStatistic
|
|
{
|
|
Name = @"Spinner Count",
|
|
Content = spinners.ToString(),
|
|
Icon = FontAwesome.Regular.Circle
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|