2017-02-07 12:59:30 +08: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 18:49:05 +08:00
|
|
|
|
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
using System.Collections.Generic;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets
|
2016-11-09 18:49:05 +08:00
|
|
|
|
{
|
|
|
|
|
public abstract class Ruleset
|
|
|
|
|
{
|
2017-01-30 12:12:30 +08:00
|
|
|
|
public virtual IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap) => new BeatmapStatistic[] { };
|
|
|
|
|
|
2017-03-02 13:07:28 +08:00
|
|
|
|
public abstract IEnumerable<Mod> GetModsFor(ModType type);
|
2017-03-02 10:05:52 +08:00
|
|
|
|
|
2017-04-20 10:36:50 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Attempt to create a HitRenderer for the provided beatmap.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="beatmap"></param>
|
|
|
|
|
/// <exception cref="BeatmapInvalidForRulesetException">Unable to successfully load the beatmap to be usable with this ruleset.</exception>
|
|
|
|
|
/// <returns></returns>
|
2017-03-12 17:03:13 +08:00
|
|
|
|
public abstract HitRenderer CreateHitRendererWith(WorkingBeatmap beatmap);
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2017-02-20 00:41:51 +08:00
|
|
|
|
public abstract DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap);
|
|
|
|
|
|
2017-03-16 12:13:45 +08:00
|
|
|
|
public abstract ScoreProcessor CreateScoreProcessor();
|
|
|
|
|
|
2017-01-30 12:35:40 +08:00
|
|
|
|
public virtual FontAwesome Icon => FontAwesome.fa_question_circle;
|
|
|
|
|
|
2017-03-10 04:37:03 +08:00
|
|
|
|
public abstract string Description { get; }
|
|
|
|
|
|
2017-03-10 13:42:14 +08:00
|
|
|
|
public abstract IEnumerable<KeyCounter> CreateGameplayKeys();
|
2017-04-17 16:43:48 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Do not override this unless you are a legacy mode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual int LegacyID => -1;
|
2016-11-09 18:49:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|