mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:18:22 +08:00
Refactor logic to work
This commit is contained in:
parent
e7b19cb724
commit
0757044b15
@ -49,15 +49,15 @@ namespace osu.Game.Rulesets.Osu.Mods
|
||||
|
||||
protected override void ApplyIncreasedVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
||||
{
|
||||
applyHiddenState(hitObject, true, OnlyFadeApproachCircles.Value);
|
||||
applyHiddenState(hitObject, true);
|
||||
}
|
||||
|
||||
protected override void ApplyNormalVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
||||
{
|
||||
applyHiddenState(hitObject, false, OnlyFadeApproachCircles.Value);
|
||||
applyHiddenState(hitObject, false);
|
||||
}
|
||||
|
||||
private void applyHiddenState(DrawableHitObject drawableObject, bool hideApproachCircle, bool hideCirclePiece)
|
||||
private void applyHiddenState(DrawableHitObject drawableObject, bool increaseVisibility)
|
||||
{
|
||||
if (!(drawableObject is DrawableOsuHitObject drawableOsuObject))
|
||||
return;
|
||||
@ -66,6 +66,19 @@ namespace osu.Game.Rulesets.Osu.Mods
|
||||
|
||||
(double fadeStartTime, double fadeDuration) = getFadeOutParameters(drawableOsuObject);
|
||||
|
||||
// process approach circle hiding first (to allow for early return below).
|
||||
if (!increaseVisibility)
|
||||
{
|
||||
if (drawableObject is DrawableHitCircle circle)
|
||||
{
|
||||
using (circle.BeginAbsoluteSequence(hitObject.StartTime - hitObject.TimePreempt))
|
||||
circle.ApproachCircle.Hide();
|
||||
}
|
||||
}
|
||||
|
||||
if (OnlyFadeApproachCircles.Value)
|
||||
return;
|
||||
|
||||
switch (drawableObject)
|
||||
{
|
||||
case DrawableSliderTail _:
|
||||
@ -84,17 +97,11 @@ namespace osu.Game.Rulesets.Osu.Mods
|
||||
case DrawableHitCircle circle:
|
||||
Drawable fadeTarget = circle;
|
||||
|
||||
if (hideApproachCircle)
|
||||
if (increaseVisibility)
|
||||
{
|
||||
// only fade the circle piece (not the approach circle) for the increased visibility object.
|
||||
fadeTarget = circle.CirclePiece;
|
||||
}
|
||||
else
|
||||
{
|
||||
// we don't want to see the approach circle
|
||||
using (circle.BeginAbsoluteSequence(hitObject.StartTime - hitObject.TimePreempt))
|
||||
circle.ApproachCircle.Hide();
|
||||
}
|
||||
|
||||
using (drawableObject.BeginAbsoluteSequence(fadeStartTime))
|
||||
fadeTarget.FadeOut(fadeDuration);
|
||||
|
Loading…
Reference in New Issue
Block a user