1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Rulesets/Ruleset.cs

48 lines
1.9 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
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;
using osu.Game.Screens.Play;
using System.Collections.Generic;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Scoring;
2017-07-12 02:25:24 +08:00
using osu.Game.Overlays.Settings;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets
{
public abstract class Ruleset
{
public virtual IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap) => new BeatmapStatistic[] { };
public abstract IEnumerable<Mod> GetModsFor(ModType type);
2017-04-20 10:36:50 +08:00
/// <summary>
/// Attempt to create a hit renderer for a beatmap
2017-04-20 10:36:50 +08:00
/// </summary>
/// <param name="beatmap">The beatmap to create the hit renderer for.</param>
/// <param name="isForCurrentRuleset">Whether the hit renderer should assume the beatmap is for the current ruleset.</param>
2017-04-20 10:36:50 +08:00
/// <exception cref="BeatmapInvalidForRulesetException">Unable to successfully load the beatmap to be usable with this ruleset.</exception>
/// <returns></returns>
public abstract HitRenderer CreateHitRendererWith(WorkingBeatmap beatmap, bool isForCurrentRuleset);
public abstract DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap);
public abstract ScoreProcessor CreateScoreProcessor();
2017-01-30 12:35:40 +08:00
public virtual FontAwesome Icon => FontAwesome.fa_question_circle;
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
2017-07-12 02:25:24 +08:00
public virtual SettingsSubsection CreateSettings() => null;
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;
}
}