2019-01-24 08:43:03 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-04-21 08:33:20 +00:00
|
|
|
using osu.Game.Graphics;
|
2019-03-27 10:29:27 +00:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2019-04-21 12:58:40 +00:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2019-04-25 10:56:57 +00:00
|
|
|
using osu.Game.Scoring;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-04-21 08:33:20 +00:00
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2020-11-05 06:36:44 +00:00
|
|
|
public abstract class ModHidden : ModWithVisibilityAdjustment, IApplicableToScoreProcessor
|
2017-04-21 08:33:20 +00:00
|
|
|
{
|
|
|
|
public override string Name => "Hidden";
|
2018-11-30 08:16:00 +00:00
|
|
|
public override string Acronym => "HD";
|
2020-01-14 13:22:00 +00:00
|
|
|
public override IconUsage? Icon => OsuIcon.ModHidden;
|
2017-05-02 18:36:55 +00:00
|
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
2024-01-31 13:59:35 +00:00
|
|
|
public override bool Ranked => UsesDefaultConfiguration;
|
2018-05-06 10:38:25 +00:00
|
|
|
|
2024-02-06 14:47:20 +00:00
|
|
|
public virtual void ApplyToScoreProcessor(ScoreProcessor scoreProcessor)
|
2019-04-21 12:58:40 +00:00
|
|
|
{
|
2019-04-25 10:56:57 +00:00
|
|
|
}
|
|
|
|
|
2024-02-06 14:47:20 +00:00
|
|
|
public virtual ScoreRank AdjustRank(ScoreRank rank, double accuracy)
|
2019-04-25 10:56:57 +00:00
|
|
|
{
|
|
|
|
switch (rank)
|
|
|
|
{
|
|
|
|
case ScoreRank.X:
|
|
|
|
return ScoreRank.XH;
|
2019-05-07 04:23:09 +00:00
|
|
|
|
2019-04-25 10:56:57 +00:00
|
|
|
case ScoreRank.S:
|
|
|
|
return ScoreRank.SH;
|
2019-05-07 04:23:09 +00:00
|
|
|
|
2019-04-25 10:56:57 +00:00
|
|
|
default:
|
|
|
|
return rank;
|
|
|
|
}
|
2019-04-21 12:58:40 +00:00
|
|
|
}
|
2017-04-21 08:33:20 +00:00
|
|
|
}
|
2018-01-05 11:21:19 +00:00
|
|
|
}
|