2019-05-14 13:18:06 +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.
|
|
|
|
|
2021-01-21 12:50:41 +08:00
|
|
|
using JetBrains.Annotations;
|
2019-05-14 13:18:06 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
2019-06-11 14:22:27 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-05-14 13:18:06 +08:00
|
|
|
using osu.Framework.Graphics.Effects;
|
2021-01-18 15:48:12 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2021-04-21 13:37:11 +08:00
|
|
|
using osu.Framework.Localisation;
|
2019-05-14 14:19:23 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
2019-05-14 13:18:06 +08:00
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
{
|
2020-10-22 13:19:12 +08:00
|
|
|
public abstract class FullscreenOverlay<T> : WaveOverlayContainer, INamedOverlayComponent
|
2020-09-03 15:27:31 +08:00
|
|
|
where T : OverlayHeader
|
2019-05-14 13:18:06 +08:00
|
|
|
{
|
2021-01-21 12:50:41 +08:00
|
|
|
public virtual string IconTexture => Header.Title.IconTexture ?? string.Empty;
|
2021-04-21 13:37:11 +08:00
|
|
|
public virtual LocalisableString Title => Header.Title.Title;
|
|
|
|
public virtual LocalisableString Description => Header.Title.Description;
|
2020-09-03 14:46:56 +08:00
|
|
|
|
2020-09-03 15:27:31 +08:00
|
|
|
public T Header { get; }
|
2020-09-03 14:46:56 +08:00
|
|
|
|
2021-02-09 17:32:44 +08:00
|
|
|
protected virtual Color4 BackgroundColour => ColourProvider.Background5;
|
|
|
|
|
2019-05-14 13:18:06 +08:00
|
|
|
[Resolved]
|
|
|
|
protected IAPIProvider API { get; private set; }
|
|
|
|
|
2020-01-26 19:02:05 +08:00
|
|
|
[Cached]
|
2020-01-30 11:50:15 +08:00
|
|
|
protected readonly OverlayColourProvider ColourProvider;
|
2020-01-24 17:24:35 +08:00
|
|
|
|
2021-01-18 15:48:12 +08:00
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
protected FullscreenOverlay(OverlayColourScheme colourScheme)
|
2019-05-14 13:18:06 +08:00
|
|
|
{
|
2021-01-18 15:48:12 +08:00
|
|
|
Header = CreateHeader();
|
2020-09-03 15:27:31 +08:00
|
|
|
|
2020-01-30 11:50:15 +08:00
|
|
|
ColourProvider = new OverlayColourProvider(colourScheme);
|
2020-01-24 17:24:35 +08:00
|
|
|
|
2019-05-14 13:18:06 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
RelativePositionAxes = Axes.Both;
|
|
|
|
Width = 0.85f;
|
|
|
|
Anchor = Anchor.TopCentre;
|
|
|
|
Origin = Anchor.TopCentre;
|
|
|
|
|
|
|
|
Masking = true;
|
|
|
|
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Colour = Color4.Black.Opacity(0),
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
Radius = 10
|
|
|
|
};
|
2021-01-18 15:48:12 +08:00
|
|
|
|
|
|
|
base.Content.AddRange(new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-02-09 17:32:44 +08:00
|
|
|
Colour = BackgroundColour
|
2021-01-18 15:48:12 +08:00
|
|
|
},
|
|
|
|
content = new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
}
|
|
|
|
});
|
2019-05-14 13:18:06 +08:00
|
|
|
}
|
|
|
|
|
2020-01-24 17:24:35 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-01-30 11:50:15 +08:00
|
|
|
Waves.FirstWaveColour = ColourProvider.Light4;
|
|
|
|
Waves.SecondWaveColour = ColourProvider.Light3;
|
|
|
|
Waves.ThirdWaveColour = ColourProvider.Dark4;
|
|
|
|
Waves.FourthWaveColour = ColourProvider.Dark3;
|
2020-01-24 17:24:35 +08:00
|
|
|
}
|
|
|
|
|
2021-01-21 12:50:41 +08:00
|
|
|
[NotNull]
|
2021-01-18 15:48:12 +08:00
|
|
|
protected abstract T CreateHeader();
|
|
|
|
|
2019-06-11 14:22:27 +08:00
|
|
|
public override void Show()
|
|
|
|
{
|
|
|
|
if (State.Value == Visibility.Visible)
|
|
|
|
{
|
|
|
|
// re-trigger the state changed so we can potentially surface to front
|
|
|
|
State.TriggerChange();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
base.Show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-14 14:19:23 +08:00
|
|
|
protected override void PopIn()
|
|
|
|
{
|
|
|
|
base.PopIn();
|
|
|
|
FadeEdgeEffectTo(0.4f, WaveContainer.APPEAR_DURATION, Easing.Out);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
{
|
|
|
|
base.PopOut();
|
|
|
|
FadeEdgeEffectTo(0, WaveContainer.DISAPPEAR_DURATION, Easing.In).OnComplete(_ => PopOutComplete());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void PopOutComplete()
|
|
|
|
{
|
|
|
|
}
|
2019-05-14 13:18:06 +08:00
|
|
|
}
|
|
|
|
}
|