2017-02-16 20:05:03 +00:00
|
|
|
|
// 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.Graphics;
|
2017-03-12 13:13:43 +00:00
|
|
|
|
using System;
|
2017-02-16 20:05:03 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
2017-02-16 20:05:03 +00:00
|
|
|
|
{
|
2017-02-23 11:59:27 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The base class for gameplay modifiers.
|
|
|
|
|
/// </summary>
|
2017-02-18 11:44:46 +00:00
|
|
|
|
public abstract class Mod
|
2017-02-16 20:05:03 +00:00
|
|
|
|
{
|
2017-02-23 11:57:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The name of this mod.
|
|
|
|
|
/// </summary>
|
2017-03-06 09:28:30 +00:00
|
|
|
|
public abstract string Name { get; }
|
2017-02-23 11:57:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The icon of this mod.
|
|
|
|
|
/// </summary>
|
2017-03-06 09:28:30 +00:00
|
|
|
|
public virtual FontAwesome Icon => FontAwesome.fa_question;
|
2017-02-23 11:57:58 +00:00
|
|
|
|
|
2017-05-02 18:36:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The type of this mod.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual ModType Type => ModType.Special;
|
|
|
|
|
|
2017-02-23 11:57:58 +00:00
|
|
|
|
/// <summary>
|
2017-03-02 00:57:33 +00:00
|
|
|
|
/// The user readable description of this mod.
|
2017-02-23 11:57:58 +00:00
|
|
|
|
/// </summary>
|
2017-03-06 09:28:30 +00:00
|
|
|
|
public virtual string Description => string.Empty;
|
2017-02-23 11:57:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-03-02 00:57:33 +00:00
|
|
|
|
/// The score multiplier of this mod.
|
2017-02-23 11:57:58 +00:00
|
|
|
|
/// </summary>
|
2017-03-02 00:57:33 +00:00
|
|
|
|
public abstract double ScoreMultiplier { get; }
|
2017-02-23 11:57:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-03-02 00:57:33 +00:00
|
|
|
|
/// Returns if this mod is ranked.
|
2017-02-23 11:57:58 +00:00
|
|
|
|
/// </summary>
|
2017-03-06 09:28:30 +00:00
|
|
|
|
public virtual bool Ranked => false;
|
2017-02-23 11:57:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-03-02 00:57:33 +00:00
|
|
|
|
/// The mods this mod cannot be enabled with.
|
2017-02-23 11:57:58 +00:00
|
|
|
|
/// </summary>
|
2017-03-06 09:28:30 +00:00
|
|
|
|
public virtual Type[] IncompatibleMods => new Type[] { };
|
2017-08-05 02:59:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-08-07 00:01:47 +00:00
|
|
|
|
/// Whether we should allow failing at the current point in time.
|
2017-08-05 02:59:58 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual bool AllowFail => true;
|
2017-02-18 11:44:46 +00:00
|
|
|
|
}
|
2017-03-02 00:57:33 +00:00
|
|
|
|
}
|