1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game.Modes.Osu/OsuRuleset.cs

44 lines
1.6 KiB
C#
Raw Normal View History

//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.Linq;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
2016-11-14 17:03:20 +08:00
using osu.Game.Modes.Objects;
using osu.Game.Modes.Osu.Objects;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.Osu.UI;
using osu.Game.Modes.UI;
2016-11-14 17:03:20 +08:00
namespace osu.Game.Modes.Osu
{
public class OsuRuleset : Ruleset
{
public override ScoreOverlay CreateScoreOverlay() => new OsuScoreOverlay();
2016-11-14 22:18:21 +08:00
public override HitRenderer CreateHitRendererWith(List<HitObject> objects) => new OsuHitRenderer { Objects = objects };
public override IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap) => new[]
{
new BeatmapStatistic
{
Name = @"Circle count",
Content = beatmap.Beatmap.HitObjects.Count(h => h is HitCircle).ToString(),
Icon = FontAwesome.fa_dot_circle_o
},
new BeatmapStatistic
{
Name = @"Slider count",
Content = beatmap.Beatmap.HitObjects.Count(h => h is Slider).ToString(),
Icon = FontAwesome.fa_circle_o
}
};
public override HitObjectParser CreateHitObjectParser() => new OsuHitObjectParser();
2016-11-14 22:18:21 +08:00
2017-01-18 23:51:38 +08:00
public override ScoreProcessor CreateScoreProcessor(int hitObjectCount) => new OsuScoreProcessor(hitObjectCount);
2016-11-29 14:41:48 +08:00
2016-11-14 22:18:21 +08:00
protected override PlayMode PlayMode => PlayMode.Osu;
}
}