2016-11-09 18:49:05 +08:00
|
|
|
|
//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;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.UI;
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
namespace osu.Game.Modes
|
2016-11-09 18:49:05 +08:00
|
|
|
|
{
|
|
|
|
|
public abstract class Ruleset
|
|
|
|
|
{
|
|
|
|
|
public abstract ScoreOverlay CreateScoreOverlay();
|
|
|
|
|
|
|
|
|
|
public abstract HitRenderer CreateHitRendererWith(List<HitObject> objects);
|
|
|
|
|
|
|
|
|
|
public static Ruleset GetRuleset(PlayMode mode)
|
|
|
|
|
{
|
|
|
|
|
switch (mode)
|
|
|
|
|
{
|
|
|
|
|
default:
|
2016-11-14 17:54:24 +08:00
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
// return new OsuRuleset();
|
|
|
|
|
//case PlayMode.Catch:
|
|
|
|
|
// return new CatchRuleset();
|
|
|
|
|
//case PlayMode.Mania:
|
|
|
|
|
// return new ManiaRuleset();
|
|
|
|
|
//case PlayMode.Taiko:
|
|
|
|
|
// return new TaikoRuleset();
|
2016-11-09 18:49:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|