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:57:01 +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:57:01 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
public class CatchBeatmap : Beatmap<CatchHitObject>
|
|
|
|
|
{
|
|
|
|
|
public override IEnumerable<BeatmapStatistic> GetStatistics()
|
|
|
|
|
{
|
2018-05-07 10:33:05 +08:00
|
|
|
|
int fruits = HitObjects.Count(s => s is Fruit);
|
2018-05-07 09:57:01 +08:00
|
|
|
|
int juiceStreams = HitObjects.Count(s => s is JuiceStream);
|
|
|
|
|
int bananaShowers = HitObjects.Count(s => s is BananaShower);
|
|
|
|
|
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Fruit Count",
|
|
|
|
|
Content = fruits.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:57:01 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Juice Stream Count",
|
|
|
|
|
Content = juiceStreams.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:57:01 +08:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Banana Shower Count",
|
|
|
|
|
Content = bananaShowers.ToString(),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle
|
2018-05-07 09:57:01 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|