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:17 +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:17 +08:00
|
|
|
|
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()
|
|
|
|
|
{
|
2018-05-07 10:33:15 +08:00
|
|
|
|
int circles = HitObjects.Count(c => c is HitCircle);
|
|
|
|
|
int sliders = HitObjects.Count(s => s is Slider);
|
|
|
|
|
int spinners = HitObjects.Count(s => s is Spinner);
|
2018-05-07 09:51:17 +08:00
|
|
|
|
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Circle Count",
|
2018-05-07 10:33:15 +08:00
|
|
|
|
Content = circles.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:51:17 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Slider Count",
|
2018-05-07 10:33:15 +08:00
|
|
|
|
Content = sliders.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:51:17 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Spinner Count",
|
2018-05-07 10:33:15 +08:00
|
|
|
|
Content = spinners.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:51:17 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|