1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:47:23 +08:00
osu-lazer/osu.Game/Rulesets/Mods/ModHidden.cs

73 lines
2.5 KiB
C#
Raw Normal View History

// 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
2018-05-06 18:38:25 +08:00
using osu.Game.Configuration;
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;
using System.Collections.Generic;
using System.Linq;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics.Sprites;
2019-04-21 20:58:40 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Mods
{
2019-04-21 20:58:40 +08:00
public abstract class ModHidden : Mod, IReadFromConfig, IApplicableToDrawableHitObjects, IApplicableToScoreProcessor
2018-04-13 17:19:50 +08:00
{
public override string Name => "Hidden";
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
protected Bindable<bool> IncreaseFirstObjectVisibility = new Bindable<bool>();
2018-05-06 18:38:25 +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>
protected virtual bool IsFirstHideableObject(DrawableHitObject hitObject) => true;
2018-05-06 18:38:25 +08:00
public void ReadFromConfig(OsuConfigManager config)
{
IncreaseFirstObjectVisibility = config.GetBindable<bool>(OsuSetting.IncreaseFirstObjectVisibility);
2018-05-06 18:38:25 +08:00
}
2018-06-06 13:04:20 +08:00
public virtual void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)
2018-05-06 18:38:25 +08:00
{
if (IncreaseFirstObjectVisibility.Value)
drawables = drawables.SkipWhile(h => !IsFirstHideableObject(h)).Skip(1);
foreach (var dho in drawables)
dho.ApplyCustomUpdateState += ApplyHiddenState;
2018-05-06 18:38:25 +08:00
}
2019-04-21 23:05:52 +08:00
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+
scoreProcessor.Rank.Value = ScoreRank.XH;
}
public ScoreRank AdjustRank(ScoreRank rank, double accuracy)
{
switch (rank)
{
case ScoreRank.X:
return ScoreRank.XH;
case ScoreRank.S:
return ScoreRank.SH;
default:
return rank;
}
2019-04-21 20:58:40 +08:00
}
2018-05-06 18:38:25 +08:00
2019-02-28 12:31:40 +08:00
protected virtual void ApplyHiddenState(DrawableHitObject hitObject, ArmedState state)
{
}
2018-04-13 17:19:50 +08:00
}
}