2021-12-28 22:50:43 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Audio.Track;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
2022-10-19 05:40:43 +08:00
|
|
|
namespace osu.Game.Skinning
|
2021-12-28 22:50:43 +08:00
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class LegacyKiaiFlashingDrawable : BeatSyncedContainer
|
2021-12-28 22:50:43 +08:00
|
|
|
{
|
|
|
|
private readonly Drawable flashingDrawable;
|
|
|
|
|
2022-10-19 06:51:44 +08:00
|
|
|
private const float flash_opacity = 0.55f;
|
2021-12-28 22:50:43 +08:00
|
|
|
|
2022-10-19 05:40:43 +08:00
|
|
|
public LegacyKiaiFlashingDrawable(Func<Drawable?> creationFunc)
|
2021-12-28 22:50:43 +08:00
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
Children = new[]
|
|
|
|
{
|
2021-12-30 21:21:37 +08:00
|
|
|
(creationFunc.Invoke() ?? Empty()).With(d =>
|
2021-12-28 22:50:43 +08:00
|
|
|
{
|
|
|
|
d.Anchor = Anchor.Centre;
|
|
|
|
d.Origin = Anchor.Centre;
|
|
|
|
}),
|
2021-12-30 21:21:37 +08:00
|
|
|
flashingDrawable = (creationFunc.Invoke() ?? Empty()).With(d =>
|
2021-12-28 22:50:43 +08:00
|
|
|
{
|
|
|
|
d.Anchor = Anchor.Centre;
|
|
|
|
d.Origin = Anchor.Centre;
|
|
|
|
d.Alpha = 0;
|
|
|
|
d.Blending = BlendingParameters.Additive;
|
|
|
|
})
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnNewBeat(int beatIndex, TimingControlPoint timingPoint, EffectControlPoint effectPoint, ChannelAmplitudes amplitudes)
|
|
|
|
{
|
|
|
|
if (!effectPoint.KiaiMode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
flashingDrawable
|
|
|
|
.FadeTo(flash_opacity)
|
|
|
|
.Then()
|
2022-10-19 06:51:44 +08:00
|
|
|
.FadeOut(Math.Max(80, timingPoint.BeatLength - 80), Easing.OutSine);
|
2021-12-28 22:50:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|