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;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2022-01-28 12:53:48 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2018-05-07 09:51:17 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2022-01-28 12:53:48 +08:00
|
|
|
|
Name = BeatmapsetsStrings.ShowStatsCountCircles,
|
2018-05-07 10:33:15 +08:00
|
|
|
|
Content = circles.ToString(),
|
2020-09-04 14:01:32 +08:00
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Circles),
|
2018-05-07 09:51:17 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
2022-01-28 12:53:48 +08:00
|
|
|
|
Name = BeatmapsetsStrings.ShowStatsCountSliders,
|
2018-05-07 10:33:15 +08:00
|
|
|
|
Content = sliders.ToString(),
|
2020-09-04 14:01:32 +08:00
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Sliders),
|
2018-05-07 09:51:17 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Spinner Count",
|
2018-05-07 10:33:15 +08:00
|
|
|
|
Content = spinners.ToString(),
|
2020-09-04 14:01:32 +08:00
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Spinners),
|
2018-05-07 09:51:17 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|