2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
|
|
|
|
public abstract class WaveOverlayContainer : OsuFocusedOverlayContainer
|
|
|
|
|
{
|
2018-04-15 15:44:40 +08:00
|
|
|
|
protected readonly WaveContainer Waves;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-26 13:01:15 +08:00
|
|
|
|
protected override bool BlockNonPositionalInput => true;
|
2018-04-15 15:44:40 +08:00
|
|
|
|
protected override Container<Drawable> Content => Waves;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-09-03 15:28:14 +08:00
|
|
|
|
public const float WIDTH_PADDING = 80;
|
|
|
|
|
|
2019-07-02 14:21:57 +08:00
|
|
|
|
protected override bool StartHidden => true;
|
|
|
|
|
|
2021-01-15 13:57:46 +08:00
|
|
|
|
protected override string PopInSampleName => "UI/wave-pop-in";
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected WaveOverlayContainer()
|
|
|
|
|
{
|
2018-04-15 15:44:40 +08:00
|
|
|
|
AddInternal(Waves = new WaveContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
base.PopIn();
|
2019-07-02 14:17:35 +08:00
|
|
|
|
|
2018-04-15 15:44:40 +08:00
|
|
|
|
Waves.Show();
|
2019-07-02 14:17:35 +08:00
|
|
|
|
this.FadeIn(100, Easing.OutQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
base.PopOut();
|
2019-07-02 14:17:35 +08:00
|
|
|
|
|
2018-04-15 15:44:40 +08:00
|
|
|
|
Waves.Hide();
|
2019-07-02 14:17:35 +08:00
|
|
|
|
this.FadeOut(WaveContainer.DISAPPEAR_DURATION, Easing.InQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|