osu/osu.Game/Overlays/WaveOverlayContainer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.5 KiB
C#
Raw Normal View History

// 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 09:19:50 +00:00
2017-02-23 02:16:23 +00:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Game.Graphics.Containers;
2018-04-13 09:19:50 +00:00
2017-02-23 02:16:23 +00:00
namespace osu.Game.Overlays
{
public abstract partial class WaveOverlayContainer : OsuFocusedOverlayContainer
2017-02-23 02:16:23 +00:00
{
protected readonly WaveContainer Waves;
2018-04-13 09:19:50 +00:00
protected override bool BlockNonPositionalInput => true;
protected override Container<Drawable> Content => Waves;
2018-04-13 09:19:50 +00:00
2020-09-03 07:28:14 +00:00
public const float WIDTH_PADDING = 80;
protected override bool StartHidden => true;
// `WaveContainer` plays PopIn/PopOut samples, so we disable the overlay-level one as to not double-up sample playback.
2023-08-24 16:07:07 +00:00
protected override string PopInSampleName => string.Empty;
protected override string PopOutSampleName => string.Empty;
public const float HORIZONTAL_PADDING = 50;
2017-02-23 03:48:24 +00:00
protected WaveOverlayContainer()
2017-02-23 02:16:23 +00:00
{
AddInternal(Waves = new WaveContainer
2017-02-23 02:16:23 +00:00
{
RelativeSizeAxes = Axes.Both,
});
2017-02-23 02:22:01 +00:00
}
2018-04-13 09:19:50 +00:00
2017-02-23 03:42:31 +00:00
protected override void PopIn()
{
Waves.Show();
this.FadeIn(100, Easing.OutQuint);
2017-02-23 03:42:31 +00:00
}
2018-04-13 09:19:50 +00:00
2017-02-23 03:42:31 +00:00
protected override void PopOut()
{
2017-03-03 22:05:43 +00:00
base.PopOut();
Waves.Hide();
this.FadeOut(WaveContainer.DISAPPEAR_DURATION, Easing.InQuint);
2017-02-23 02:16:23 +00:00
}
}
}