2017-02-07 13:59:30 +09: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 19:49:05 +09:00
|
|
|
|
|
2017-08-13 19:54:07 +02:00
|
|
|
|
using System;
|
2017-08-13 17:41:13 +02:00
|
|
|
|
using System.Collections.Generic;
|
2017-09-07 18:25:33 +02:00
|
|
|
|
using System.Linq;
|
2017-08-14 15:16:22 +02:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-08-19 00:00:40 +02:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
2017-08-14 15:16:22 +02:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2017-11-29 17:46:12 +09:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2017-11-17 14:29:19 +09:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets
|
2016-11-09 19:49:05 +09:00
|
|
|
|
{
|
|
|
|
|
public abstract class Ruleset
|
|
|
|
|
{
|
2017-08-09 13:04:11 +09:00
|
|
|
|
public readonly RulesetInfo RulesetInfo;
|
|
|
|
|
|
2017-01-30 13:12:30 +09:00
|
|
|
|
public virtual IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap) => new BeatmapStatistic[] { };
|
|
|
|
|
|
2017-08-15 12:03:43 +02:00
|
|
|
|
public IEnumerable<Mod> GetAllMods() => Enum.GetValues(typeof(ModType)).Cast<ModType>()
|
2017-12-08 18:55:25 +09:00
|
|
|
|
// Confine all mods of each mod type into a single IEnumerable<Mod>
|
2017-12-11 14:52:15 +09:00
|
|
|
|
.SelectMany(GetModsFor)
|
2017-12-08 18:55:25 +09:00
|
|
|
|
// Filter out all null mods
|
2017-12-11 14:52:15 +09:00
|
|
|
|
.Where(mod => mod != null)
|
|
|
|
|
// Resolve MultiMods as their .Mods property
|
2017-12-08 18:55:25 +09:00
|
|
|
|
.SelectMany(mod => (mod as MultiMod)?.Mods ?? new[] { mod });
|
2017-08-13 17:41:13 +02:00
|
|
|
|
|
2017-03-02 01:07:28 -04:00
|
|
|
|
public abstract IEnumerable<Mod> GetModsFor(ModType type);
|
2017-03-01 22:05:52 -04:00
|
|
|
|
|
2017-08-13 20:12:01 +02:00
|
|
|
|
public Mod GetAutoplayMod() => GetAllMods().First(mod => mod is ModAutoplay);
|
2017-08-04 00:25:24 +08:00
|
|
|
|
|
2017-08-09 13:04:11 +09:00
|
|
|
|
protected Ruleset(RulesetInfo rulesetInfo)
|
|
|
|
|
{
|
|
|
|
|
RulesetInfo = rulesetInfo;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 11:36:50 +09:00
|
|
|
|
/// <summary>
|
2017-05-19 15:57:32 +09:00
|
|
|
|
/// Attempt to create a hit renderer for a beatmap
|
2017-04-20 11:36:50 +09:00
|
|
|
|
/// </summary>
|
2017-05-19 15:57:32 +09:00
|
|
|
|
/// <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 11:36:50 +09:00
|
|
|
|
/// <exception cref="BeatmapInvalidForRulesetException">Unable to successfully load the beatmap to be usable with this ruleset.</exception>
|
|
|
|
|
/// <returns></returns>
|
2017-08-09 13:28:29 +09:00
|
|
|
|
public abstract RulesetContainer CreateRulesetContainerWith(WorkingBeatmap beatmap, bool isForCurrentRuleset);
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
2017-11-16 20:06:32 +09:00
|
|
|
|
public abstract DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap, Mod[] mods = null);
|
2017-02-19 17:41:51 +01:00
|
|
|
|
|
2017-11-17 12:35:23 +09:00
|
|
|
|
public virtual PerformanceCalculator CreatePerformanceCalculator(Beatmap beatmap, Score score) => null;
|
|
|
|
|
|
2017-11-29 17:46:12 +09:00
|
|
|
|
public virtual HitObjectComposer CreateHitObjectComposer() => null;
|
|
|
|
|
|
2017-08-03 14:36:21 +09:00
|
|
|
|
public virtual Drawable CreateIcon() => new SpriteIcon { Icon = FontAwesome.fa_question_circle };
|
2017-01-30 13:35:40 +09:00
|
|
|
|
|
2017-03-09 21:37:03 +01:00
|
|
|
|
public abstract string Description { get; }
|
|
|
|
|
|
2017-07-11 20:25:24 +02:00
|
|
|
|
public virtual SettingsSubsection CreateSettings() => null;
|
|
|
|
|
|
2017-04-17 17:43:48 +09:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Do not override this unless you are a legacy mode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual int LegacyID => -1;
|
2017-08-14 20:19:25 +09:00
|
|
|
|
|
2017-12-08 18:55:25 +09:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A unique short name to reference this ruleset in online requests.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract string ShortName { get; }
|
|
|
|
|
|
2017-08-14 20:19:25 +09:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A list of available variant ids.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual IEnumerable<int> AvailableVariants => new[] { 0 };
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of default keys for the specified variant.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="variant">A variant.</param>
|
|
|
|
|
/// <returns>A list of valid <see cref="KeyBinding"/>s.</returns>
|
|
|
|
|
public virtual IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new KeyBinding[] { };
|
2017-08-23 14:19:14 +09:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name for a key binding variant. This is used for display in the settings overlay.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="variant">The variant.</param>
|
|
|
|
|
/// <returns>A descriptive name of the variant.</returns>
|
|
|
|
|
public virtual string GetVariantName(int variant) => string.Empty;
|
2016-11-09 19:49:05 +09:00
|
|
|
|
}
|
|
|
|
|
}
|