mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 00:27:26 +08:00
49 lines
1.7 KiB
C#
49 lines
1.7 KiB
C#
// 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.
|
|
|
|
using System.Linq;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Mods
|
|
{
|
|
public class CatchModHidden : ModHidden
|
|
{
|
|
public override string Description => @"Play with fading fruits.";
|
|
public override double ScoreMultiplier => 1.06;
|
|
|
|
private const double fade_out_offset_multiplier = 0.6;
|
|
private const double fade_out_duration_multiplier = 0.44;
|
|
|
|
protected override void ApplyHiddenState(DrawableHitObject drawable, ArmedState state)
|
|
{
|
|
if (!(drawable is DrawableCatchHitObject catchDrawable))
|
|
return;
|
|
|
|
if (catchDrawable.NestedHitObjects.Any())
|
|
{
|
|
foreach (var nestedDrawable in catchDrawable.NestedHitObjects)
|
|
{
|
|
if (nestedDrawable is DrawableCatchHitObject nestedCatchDrawable)
|
|
fadeOutHitObject(nestedCatchDrawable);
|
|
}
|
|
}
|
|
else
|
|
fadeOutHitObject(catchDrawable);
|
|
}
|
|
|
|
private void fadeOutHitObject(DrawableCatchHitObject drawable)
|
|
{
|
|
var hitObject = drawable.HitObject;
|
|
|
|
var offset = hitObject.TimePreempt * fade_out_offset_multiplier;
|
|
var duration = offset - hitObject.TimePreempt * fade_out_duration_multiplier;
|
|
|
|
using (drawable.BeginAbsoluteSequence(hitObject.StartTime - offset, true))
|
|
drawable.FadeOut(duration);
|
|
}
|
|
}
|
|
}
|