mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
82 lines
2.4 KiB
C#
82 lines
2.4 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Overlays.Dialog;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public class DialogOverlay : FocusedOverlayContainer
|
|
{
|
|
private readonly Container dialogContainer;
|
|
private PopupDialog currentDialog;
|
|
|
|
public void Push(PopupDialog dialog)
|
|
{
|
|
if (dialog == currentDialog) return;
|
|
|
|
currentDialog?.Hide();
|
|
currentDialog = dialog;
|
|
|
|
dialogContainer.Add(currentDialog);
|
|
|
|
currentDialog.Show();
|
|
currentDialog.StateChanged += onDialogOnStateChanged;
|
|
State = Visibility.Visible;
|
|
}
|
|
|
|
private void onDialogOnStateChanged(VisibilityContainer dialog, Visibility v)
|
|
{
|
|
if (v != Visibility.Hidden) return;
|
|
|
|
//handle the dialog being dismissed.
|
|
dialog.Delay(PopupDialog.EXIT_DURATION);
|
|
dialog.Expire();
|
|
|
|
if (dialog == currentDialog)
|
|
State = Visibility.Hidden;
|
|
}
|
|
|
|
protected override void PopIn()
|
|
{
|
|
base.PopIn();
|
|
FadeIn(PopupDialog.ENTER_DURATION, EasingTypes.OutQuint);
|
|
}
|
|
|
|
protected override void PopOut()
|
|
{
|
|
base.PopOut();
|
|
FadeOut(PopupDialog.EXIT_DURATION, EasingTypes.InSine);
|
|
}
|
|
|
|
public DialogOverlay()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.Black.Opacity(0.5f),
|
|
},
|
|
},
|
|
},
|
|
dialogContainer = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|