2016-11-09 10:49:05 +00: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 09:03:20 +00:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 09:54:24 +00:00
|
|
|
|
using osu.Game.Modes.UI;
|
2016-11-14 10:20:27 +00:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2016-11-09 10:49:05 +00:00
|
|
|
|
|
2016-11-14 09:03:20 +00:00
|
|
|
|
namespace osu.Game.Modes
|
2016-11-09 10:49:05 +00:00
|
|
|
|
{
|
|
|
|
|
public abstract class Ruleset
|
|
|
|
|
{
|
2016-11-14 13:03:39 +00:00
|
|
|
|
private static List<Type> availableRulesets = new List<Type>();
|
|
|
|
|
|
2016-11-09 10:49:05 +00:00
|
|
|
|
public abstract ScoreOverlay CreateScoreOverlay();
|
|
|
|
|
|
|
|
|
|
public abstract HitRenderer CreateHitRendererWith(List<HitObject> objects);
|
|
|
|
|
|
2016-11-14 13:03:39 +00:00
|
|
|
|
public abstract HitObjectParser CreateHitObjectParser();
|
|
|
|
|
|
|
|
|
|
public static void Register(Ruleset ruleset) => availableRulesets.Add(ruleset.GetType());
|
|
|
|
|
|
2016-11-09 10:49:05 +00:00
|
|
|
|
public static Ruleset GetRuleset(PlayMode mode)
|
|
|
|
|
{
|
2016-11-14 13:03:39 +00:00
|
|
|
|
Type type = availableRulesets.FirstOrDefault(t => t.Name == $@"{mode}Ruleset");
|
2016-11-14 09:54:24 +00:00
|
|
|
|
|
2016-11-14 10:20:27 +00:00
|
|
|
|
if (type == null)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
return Activator.CreateInstance(type) as Ruleset;
|
2016-11-09 10:49:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|