2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
2016-11-29 15:41:48 +09:00
|
|
|
|
using System;
|
2016-11-09 19:49:05 +09:00
|
|
|
|
using System.Collections.Generic;
|
2017-01-30 13:35:40 +09:00
|
|
|
|
using osu.Game.Graphics;
|
2016-11-14 18:03:20 +09:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 22:03:39 +09:00
|
|
|
|
using osu.Game.Modes.Osu.Objects;
|
2016-11-14 18:54:24 +09:00
|
|
|
|
using osu.Game.Modes.Osu.UI;
|
|
|
|
|
using osu.Game.Modes.Taiko.UI;
|
|
|
|
|
using osu.Game.Modes.UI;
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
2016-11-14 18:03:20 +09:00
|
|
|
|
namespace osu.Game.Modes.Taiko
|
2016-11-09 19:49:05 +09:00
|
|
|
|
{
|
2016-11-14 22:03:39 +09:00
|
|
|
|
public class TaikoRuleset : Ruleset
|
2016-11-09 19:49:05 +09:00
|
|
|
|
{
|
2016-11-14 19:20:21 +09:00
|
|
|
|
public override ScoreOverlay CreateScoreOverlay() => new OsuScoreOverlay();
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
|
|
|
|
public override HitRenderer CreateHitRendererWith(List<HitObject> objects) => new TaikoHitRenderer { Objects = objects };
|
2016-11-14 22:03:39 +09:00
|
|
|
|
|
2016-11-14 23:13:47 +09:00
|
|
|
|
protected override PlayMode PlayMode => PlayMode.Taiko;
|
|
|
|
|
|
2017-01-30 13:35:40 +09:00
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_taiko_o;
|
|
|
|
|
|
2017-01-18 18:51:38 +03:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor(int hitObjectCount) => null;
|
2016-11-29 15:41:48 +09:00
|
|
|
|
|
2016-11-14 22:03:39 +09:00
|
|
|
|
public override HitObjectParser CreateHitObjectParser() => new OsuHitObjectParser();
|
2016-11-09 19:49:05 +09:00
|
|
|
|
}
|
|
|
|
|
}
|