2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2017-08-14 01:54:07 +08:00
|
|
|
|
using System;
|
2017-08-13 23:41:13 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-09-08 00:25:33 +08:00
|
|
|
|
using System.Linq;
|
2017-08-14 21:16:22 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-08-19 06:00:40 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
2017-08-14 21:16:22 +08:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2017-11-29 16:46:12 +08:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-03-01 00:32:32 +08:00
|
|
|
|
using osu.Game.Rulesets.Replays.Types;
|
2017-11-17 13:29:19 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
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-08-09 12:04:11 +08:00
|
|
|
|
public readonly RulesetInfo RulesetInfo;
|
|
|
|
|
|
2017-01-30 12:12:30 +08:00
|
|
|
|
public virtual IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap) => new BeatmapStatistic[] { };
|
|
|
|
|
|
2017-08-15 18:03:43 +08:00
|
|
|
|
public IEnumerable<Mod> GetAllMods() => Enum.GetValues(typeof(ModType)).Cast<ModType>()
|
2017-12-08 17:55:25 +08:00
|
|
|
|
// Confine all mods of each mod type into a single IEnumerable<Mod>
|
2017-12-11 13:52:15 +08:00
|
|
|
|
.SelectMany(GetModsFor)
|
2017-12-08 17:55:25 +08:00
|
|
|
|
// Filter out all null mods
|
2017-12-11 13:52:15 +08:00
|
|
|
|
.Where(mod => mod != null)
|
|
|
|
|
// Resolve MultiMods as their .Mods property
|
2017-12-08 17:55:25 +08:00
|
|
|
|
.SelectMany(mod => (mod as MultiMod)?.Mods ?? new[] { mod });
|
2017-08-13 23:41:13 +08:00
|
|
|
|
|
2017-03-02 13:07:28 +08:00
|
|
|
|
public abstract IEnumerable<Mod> GetModsFor(ModType type);
|
2017-03-02 10:05:52 +08:00
|
|
|
|
|
2017-08-14 02:12:01 +08:00
|
|
|
|
public Mod GetAutoplayMod() => GetAllMods().First(mod => mod is ModAutoplay);
|
2017-08-04 00:25:24 +08:00
|
|
|
|
|
2018-01-10 15:58:10 +08:00
|
|
|
|
protected Ruleset(RulesetInfo rulesetInfo = null)
|
2017-08-09 12:04:11 +08:00
|
|
|
|
{
|
2018-01-10 15:58:10 +08:00
|
|
|
|
RulesetInfo = rulesetInfo ?? createRulesetInfo();
|
2017-08-09 12:04:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 10:36:50 +08:00
|
|
|
|
/// <summary>
|
2017-05-19 14:57:32 +08:00
|
|
|
|
/// Attempt to create a hit renderer for a beatmap
|
2017-04-20 10:36:50 +08:00
|
|
|
|
/// </summary>
|
2017-05-19 14:57:32 +08: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 10:36:50 +08:00
|
|
|
|
/// <exception cref="BeatmapInvalidForRulesetException">Unable to successfully load the beatmap to be usable with this ruleset.</exception>
|
|
|
|
|
/// <returns></returns>
|
2017-08-09 12:28:29 +08:00
|
|
|
|
public abstract RulesetContainer CreateRulesetContainerWith(WorkingBeatmap beatmap, bool isForCurrentRuleset);
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2017-11-16 19:06:32 +08:00
|
|
|
|
public abstract DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap, Mod[] mods = null);
|
2017-02-20 00:41:51 +08:00
|
|
|
|
|
2017-11-17 11:35:23 +08:00
|
|
|
|
public virtual PerformanceCalculator CreatePerformanceCalculator(Beatmap beatmap, Score score) => null;
|
|
|
|
|
|
2017-11-29 16:46:12 +08:00
|
|
|
|
public virtual HitObjectComposer CreateHitObjectComposer() => null;
|
|
|
|
|
|
2017-08-03 13:36:21 +08:00
|
|
|
|
public virtual Drawable CreateIcon() => new SpriteIcon { Icon = FontAwesome.fa_question_circle };
|
2017-01-30 12:35:40 +08:00
|
|
|
|
|
2017-03-10 04:37:03 +08:00
|
|
|
|
public abstract string Description { get; }
|
|
|
|
|
|
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>
|
2018-03-06 16:29:58 +08:00
|
|
|
|
public virtual int? LegacyID => null;
|
2017-08-14 19:19:25 +08:00
|
|
|
|
|
2017-12-08 17:55:25 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A unique short name to reference this ruleset in online requests.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract string ShortName { get; }
|
|
|
|
|
|
2017-08-14 19:19:25 +08: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 13:19:14 +08: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;
|
2018-01-10 15:58:10 +08:00
|
|
|
|
|
2018-03-04 01:12:45 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// For rulesets which support legacy (osu-stable) replay conversion, this method will create an empty replay frame
|
|
|
|
|
/// for conversion use.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>An empty frame for the current ruleset, or null if unsupported.</returns>
|
2018-03-01 00:32:32 +08:00
|
|
|
|
public virtual IConvertibleReplayFrame CreateConvertibleReplayFrame() => null;
|
2018-02-28 15:34:47 +08:00
|
|
|
|
|
2018-01-10 15:58:10 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create a ruleset info based on this ruleset.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>A filled <see cref="RulesetInfo"/>.</returns>
|
|
|
|
|
private RulesetInfo createRulesetInfo() => new RulesetInfo
|
|
|
|
|
{
|
|
|
|
|
Name = Description,
|
|
|
|
|
ShortName = ShortName,
|
|
|
|
|
InstantiationInfo = GetType().AssemblyQualifiedName,
|
|
|
|
|
ID = LegacyID
|
|
|
|
|
};
|
2016-11-09 18:49:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|