2018-04-13 17:19:50 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2018-05-06 18:38:25 +08:00
|
|
|
using osu.Framework.Configuration;
|
|
|
|
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;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2018-06-06 13:04:20 +08:00
|
|
|
public abstract class ModHidden : Mod, IReadFromConfig, IApplicableToDrawableHitObjects
|
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";
|
2018-04-13 17:19:50 +08:00
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_hidden;
|
|
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
|
|
|
public override bool Ranked => true;
|
2018-05-06 18:38:25 +08:00
|
|
|
|
2018-05-08 20:33:26 +08:00
|
|
|
protected Bindable<bool> IncreaseFirstObjectVisibility = new Bindable<bool>();
|
2018-05-06 18:38:25 +08:00
|
|
|
|
|
|
|
public void ReadFromConfig(OsuConfigManager config)
|
|
|
|
{
|
2018-05-08 20:33:26 +08:00
|
|
|
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
|
|
|
{
|
2018-06-06 13:18:38 +08:00
|
|
|
foreach (var d in drawables.Skip(IncreaseFirstObjectVisibility ? 1 : 0))
|
2018-05-06 18:38:25 +08:00
|
|
|
d.ApplyCustomUpdateState += ApplyHiddenState;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void ApplyHiddenState(DrawableHitObject hitObject, ArmedState state) { }
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|