mirror of
https://github.com/ppy/osu.git
synced 2026-05-16 04:12:34 +08:00
97 lines
3.3 KiB
C#
97 lines
3.3 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Input.Bindings;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
/// <summary>
|
|
/// A layer that will show a loading spinner and completely block input to an area.
|
|
/// Also optionally dims target elements.
|
|
/// Useful for disabling all elements in a form and showing we are waiting on a response, for instance.
|
|
/// </summary>
|
|
public partial class LoadingLayer : LoadingSpinner, IKeyBindingHandler<GlobalAction>
|
|
{
|
|
/// <summary>
|
|
/// Whether to block positional input of components behind the loading layer.
|
|
/// Defaults to <c>true</c>.
|
|
/// </summary>
|
|
public bool BlockPositionalInput { get; init; } = true;
|
|
|
|
/// <summary>
|
|
/// Whether to block all keyboard input. Includes global actions.
|
|
/// Defaults to <c>false</c>.
|
|
/// </summary>
|
|
public bool BlockNonPositionalInput { get; init; }
|
|
|
|
/// <summary>
|
|
/// Construct a new loading spinner.
|
|
/// </summary>
|
|
/// <param name="dimBackground">Whether the full background area should be dimmed while loading.</param>
|
|
/// <param name="withBox">Whether the spinner should have a surrounding black box for visibility.</param>
|
|
public LoadingLayer(bool dimBackground = false, bool withBox = true)
|
|
: base(withBox)
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
Size = new Vector2(1);
|
|
|
|
MainContents.RelativeSizeAxes = Axes.None;
|
|
|
|
if (dimBackground)
|
|
{
|
|
AddInternal(new Box
|
|
{
|
|
Depth = float.MaxValue,
|
|
Colour = Color4.Black,
|
|
Alpha = 0.5f,
|
|
RelativeSizeAxes = Axes.Both,
|
|
});
|
|
}
|
|
}
|
|
|
|
public override bool HandleNonPositionalInput => BlockNonPositionalInput;
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
{
|
|
if (!BlockPositionalInput)
|
|
return false;
|
|
|
|
switch (e)
|
|
{
|
|
// blocking scroll can cause weird behaviour when this layer is used within a ScrollContainer.
|
|
case ScrollEvent:
|
|
return false;
|
|
|
|
// blocking touch events causes the ISourcedFromTouch versions to not be fired, potentially impeding behaviour of drawables *above* the loading layer that may utilise these.
|
|
// note that this will not work well if touch handling elements are beneath this loading layer (something to consider for the future).
|
|
case TouchEvent:
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
MainContents.Size = new Vector2(Math.Clamp(Math.Min(DrawWidth, DrawHeight) * 0.25f, 20, 80));
|
|
}
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e) => BlockNonPositionalInput;
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
|
|
{
|
|
}
|
|
}
|
|
}
|