mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
59 lines
1.7 KiB
C#
59 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 osuTK.Graphics;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osuTK;
|
|
using osu.Framework.Input.Events;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class DimmedLoadingLayer : OverlayContainer
|
|
{
|
|
private const float transition_duration = 250;
|
|
|
|
private readonly LoadingAnimation loading;
|
|
|
|
public DimmedLoadingLayer(float dimAmount = 0.5f, float iconScale = 1f)
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.Black.Opacity(dimAmount),
|
|
},
|
|
loading = new LoadingAnimation { Scale = new Vector2(iconScale) },
|
|
};
|
|
}
|
|
|
|
protected override void PopIn()
|
|
{
|
|
this.FadeIn(transition_duration, Easing.OutQuint);
|
|
loading.Show();
|
|
}
|
|
|
|
protected override void PopOut()
|
|
{
|
|
this.FadeOut(transition_duration, Easing.OutQuint);
|
|
loading.Hide();
|
|
}
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
{
|
|
switch (e)
|
|
{
|
|
// blocking scroll can cause weird behaviour when this layer is used within a ScrollContainer.
|
|
case ScrollEvent _:
|
|
return false;
|
|
}
|
|
|
|
return base.Handle(e);
|
|
}
|
|
}
|
|
}
|