osu/osu.Game/Rulesets/Ruleset.cs

69 lines
2.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
2017-08-13 17:54:07 +00:00
using System;
using System.Linq;
using System.Collections.Generic;
2017-08-14 13:16:22 +00:00
using osu.Framework.Graphics;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
2017-08-14 13:16:22 +00:00
using osu.Game.Overlays.Settings;
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.Mods;
2017-08-14 13:16:22 +00:00
using osu.Game.Rulesets.Scoring;
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play;
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets
{
public abstract class Ruleset
{
public readonly RulesetInfo RulesetInfo;
public virtual IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap) => new BeatmapStatistic[] { };
public IEnumerable<Mod> GetAllMods() => Enum.GetValues(typeof(ModType)).Cast<ModType>()
2017-08-15 10:27:51 +00:00
// Get all mod types as an IEnumerable<ModType>
.SelectMany(GetModsFor)
// Confine all mods of each mod type into a single IEnumerable<Mod>
.Where(mod => mod != null)
// Filter out all null mods
.SelectMany(mod => (mod as MultiMod)?.Mods ?? new[] { mod });
// Resolve MultiMods as their .Mods property
public abstract IEnumerable<Mod> GetModsFor(ModType type);
public Mod GetAutoplayMod() => GetAllMods().First(mod => mod is ModAutoplay);
2017-08-03 16:25:24 +00:00
protected Ruleset(RulesetInfo rulesetInfo)
{
RulesetInfo = rulesetInfo;
}
2017-04-20 02:36:50 +00:00
/// <summary>
/// Attempt to create a hit renderer for a beatmap
2017-04-20 02:36:50 +00: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 02:36:50 +00:00
/// <exception cref="BeatmapInvalidForRulesetException">Unable to successfully load the beatmap to be usable with this ruleset.</exception>
/// <returns></returns>
2017-08-09 04:28:29 +00:00
public abstract RulesetContainer CreateRulesetContainerWith(WorkingBeatmap beatmap, bool isForCurrentRuleset);
public abstract DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap);
public abstract ScoreProcessor CreateScoreProcessor();
public virtual Drawable CreateIcon() => new SpriteIcon { Icon = FontAwesome.fa_question_circle };
2017-01-30 04:35:40 +00:00
public abstract string Description { get; }
2017-03-10 05:42:14 +00:00
public abstract IEnumerable<KeyCounter> CreateGameplayKeys();
2017-04-17 08:43:48 +00:00
2017-07-11 18:25:24 +00:00
public virtual SettingsSubsection CreateSettings() => null;
2017-04-17 08:43:48 +00:00
/// <summary>
/// Do not override this unless you are a legacy mode.
/// </summary>
public virtual int LegacyID => -1;
}
}