2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
2020-11-05 14:36:44 +08:00
|
|
|
using System;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Graphics;
|
2018-05-06 18:38:25 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2019-04-21 20:58:40 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2019-04-25 18:56:57 +08:00
|
|
|
using osu.Game.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2020-11-05 14:36:44 +08:00
|
|
|
public abstract class ModHidden : ModWithVisibilityAdjustment, IApplicableToScoreProcessor
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
public override string Name => "Hidden";
|
2018-11-30 16:16:00 +08:00
|
|
|
public override string Acronym => "HD";
|
2020-01-14 21:22:00 +08:00
|
|
|
public override IconUsage? Icon => OsuIcon.ModHidden;
|
2018-04-13 17:19:50 +08:00
|
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
|
|
|
public override bool Ranked => true;
|
2018-05-06 18:38:25 +08:00
|
|
|
|
2020-04-16 13:11:38 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Check whether the provided hitobject should be considered the "first" hideable object.
|
|
|
|
/// Can be used to skip spinners, for instance.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The hitobject to check.</param>
|
2020-11-05 16:03:53 +08:00
|
|
|
[Obsolete("Use IsFirstAdjustableObject() instead.")] // Can be removed 20210506
|
2020-04-16 13:11:38 +08:00
|
|
|
protected virtual bool IsFirstHideableObject(DrawableHitObject hitObject) => true;
|
|
|
|
|
2019-04-21 20:58:40 +08:00
|
|
|
public void ApplyToScoreProcessor(ScoreProcessor scoreProcessor)
|
|
|
|
{
|
2019-04-30 23:44:31 +08:00
|
|
|
// Default value of ScoreProcessor's Rank in Hidden Mod should be SS+
|
2019-04-25 18:56:57 +08:00
|
|
|
scoreProcessor.Rank.Value = ScoreRank.XH;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ScoreRank AdjustRank(ScoreRank rank, double accuracy)
|
|
|
|
{
|
|
|
|
switch (rank)
|
|
|
|
{
|
|
|
|
case ScoreRank.X:
|
|
|
|
return ScoreRank.XH;
|
2019-05-07 12:23:09 +08:00
|
|
|
|
2019-04-25 18:56:57 +08:00
|
|
|
case ScoreRank.S:
|
|
|
|
return ScoreRank.SH;
|
2019-05-07 12:23:09 +08:00
|
|
|
|
2019-04-25 18:56:57 +08:00
|
|
|
default:
|
|
|
|
return rank;
|
|
|
|
}
|
2019-04-21 20:58:40 +08:00
|
|
|
}
|
2018-05-06 18:38:25 +08:00
|
|
|
|
2020-11-05 14:36:44 +08:00
|
|
|
protected override void ApplyIncreasedVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
|
|
|
{
|
|
|
|
#pragma warning disable 618
|
|
|
|
ApplyFirstObjectIncreaseVisibilityState(hitObject, state);
|
|
|
|
#pragma warning restore 618
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void ApplyNormalVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
|
|
|
{
|
|
|
|
#pragma warning disable 618
|
|
|
|
ApplyHiddenState(hitObject, state);
|
|
|
|
#pragma warning restore 618
|
|
|
|
}
|
|
|
|
|
2020-10-09 02:07:01 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Apply a special visibility state to the first object in a beatmap, if the user chooses to turn on the "increase first object visibility" setting.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The hit object to apply the state change to.</param>
|
|
|
|
/// <param name="state">The state of the hit object.</param>
|
2020-11-05 16:03:53 +08:00
|
|
|
[Obsolete("Use ApplyIncreasedVisibilityState() instead.")] // Can be removed 20210506
|
2020-10-09 02:07:01 +08:00
|
|
|
protected virtual void ApplyFirstObjectIncreaseVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Apply a hidden state to the provided object.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The hit object to apply the state change to.</param>
|
|
|
|
/// <param name="state">The state of the hit object.</param>
|
2020-11-05 16:03:53 +08:00
|
|
|
[Obsolete("Use ApplyNormalVisibilityState() instead.")] // Can be removed 20210506
|
2019-02-28 12:31:40 +08:00
|
|
|
protected virtual void ApplyHiddenState(DrawableHitObject hitObject, ArmedState state)
|
|
|
|
{
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|