2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-02-28 04:59:36 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
2017-06-28 17:18:12 +00:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2019-09-11 22:35:47 +00:00
|
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
|
using System.Linq;
|
2021-09-23 11:14:32 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
2021-09-16 09:26:12 +00:00
|
|
|
|
using osu.Framework.Input.Events;
|
2021-09-23 11:14:32 +00:00
|
|
|
|
using osu.Game.Audio.Effects;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-02-28 04:59:36 +00:00
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2022-04-18 09:09:14 +00:00
|
|
|
|
public partial class DialogOverlay : OsuFocusedOverlayContainer, IDialogOverlay
|
2017-02-28 04:59:36 +00:00
|
|
|
|
{
|
2017-03-23 04:41:50 +00:00
|
|
|
|
private readonly Container dialogContainer;
|
2019-09-19 11:17:58 +00:00
|
|
|
|
|
2021-01-15 05:57:46 +00:00
|
|
|
|
protected override string PopInSampleName => "UI/dialog-pop-in";
|
|
|
|
|
protected override string PopOutSampleName => "UI/dialog-pop-out";
|
|
|
|
|
|
2021-10-07 09:49:30 +00:00
|
|
|
|
private AudioFilter lowPassFilter;
|
2021-09-23 11:14:32 +00:00
|
|
|
|
|
2019-09-19 11:17:58 +00:00
|
|
|
|
public PopupDialog CurrentDialog { get; private set; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-07-02 05:22:37 +00:00
|
|
|
|
public DialogOverlay()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
Child = dialogContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Width = 0.4f;
|
|
|
|
|
Anchor = Anchor.BottomCentre;
|
|
|
|
|
Origin = Anchor.BottomCentre;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-23 11:14:32 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio)
|
|
|
|
|
{
|
2021-10-07 09:49:30 +00:00
|
|
|
|
AddInternal(lowPassFilter = new AudioFilter(audio.TrackMixer));
|
2021-09-23 11:14:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 04:59:36 +00:00
|
|
|
|
public void Push(PopupDialog dialog)
|
|
|
|
|
{
|
2022-07-14 05:00:33 +00:00
|
|
|
|
if (dialog == CurrentDialog || dialog.State.Value == Visibility.Hidden) return;
|
2022-05-05 05:55:05 +00:00
|
|
|
|
|
|
|
|
|
// Immediately update the externally accessible property as this may be used for checks even before
|
|
|
|
|
// a DialogOverlay instance has finished loading.
|
2022-07-14 05:00:33 +00:00
|
|
|
|
var lastDialog = CurrentDialog;
|
2019-09-19 11:17:58 +00:00
|
|
|
|
CurrentDialog = dialog;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-14 04:06:03 +00:00
|
|
|
|
Schedule(() =>
|
2022-05-04 16:52:39 +00:00
|
|
|
|
{
|
|
|
|
|
// if any existing dialog is being displayed, dismiss it before showing a new one.
|
|
|
|
|
lastDialog?.Hide();
|
2022-07-14 04:04:46 +00:00
|
|
|
|
|
2022-07-15 02:56:49 +00:00
|
|
|
|
// if the new dialog is hidden before added to the dialogContainer, bypass any further operations.
|
2022-07-14 05:00:33 +00:00
|
|
|
|
if (dialog.State.Value == Visibility.Hidden)
|
|
|
|
|
{
|
|
|
|
|
dismiss();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-05-04 16:52:39 +00:00
|
|
|
|
|
2022-07-14 05:00:33 +00:00
|
|
|
|
dialogContainer.Add(dialog);
|
2022-05-04 16:52:39 +00:00
|
|
|
|
Show();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-14 05:00:33 +00:00
|
|
|
|
dialog.State.BindValueChanged(state =>
|
|
|
|
|
{
|
|
|
|
|
if (state.NewValue != Visibility.Hidden) return;
|
2021-09-23 10:19:03 +00:00
|
|
|
|
|
2022-07-14 05:00:33 +00:00
|
|
|
|
// Trigger the demise of the dialog as soon as it hides.
|
|
|
|
|
dialog.Delay(PopupDialog.EXIT_DURATION).Expire();
|
2018-07-02 05:22:37 +00:00
|
|
|
|
|
2022-07-14 05:00:33 +00:00
|
|
|
|
dismiss();
|
|
|
|
|
});
|
|
|
|
|
});
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-14 05:00:33 +00:00
|
|
|
|
void dismiss()
|
2019-09-19 11:17:58 +00:00
|
|
|
|
{
|
2022-07-14 05:00:33 +00:00
|
|
|
|
if (dialog != CurrentDialog) return;
|
|
|
|
|
|
|
|
|
|
// Handle the case where the dialog is the currently displayed dialog.
|
|
|
|
|
// In this scenario, the overlay itself should also be hidden.
|
2019-06-11 05:28:52 +00:00
|
|
|
|
Hide();
|
2019-09-19 11:17:58 +00:00
|
|
|
|
CurrentDialog = null;
|
|
|
|
|
}
|
2017-02-28 04:59:36 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-14 05:00:33 +00:00
|
|
|
|
public override bool IsPresent => Scheduler.HasPendingTasks || dialogContainer.Children.Count > 0;
|
|
|
|
|
|
|
|
|
|
protected override bool BlockNonPositionalInput => true;
|
|
|
|
|
|
2017-02-28 04:59:36 +00:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
2021-10-07 09:49:30 +00:00
|
|
|
|
lowPassFilter.CutoffTo(300, 100, Easing.OutCubic);
|
2017-02-28 04:59:36 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-02-28 04:59:36 +00:00
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
base.PopOut();
|
2022-05-04 11:22:52 +00:00
|
|
|
|
lowPassFilter.CutoffTo(AudioFilter.MAX_LOWPASS_CUTOFF, 100, Easing.InCubic);
|
2018-07-02 05:22:37 +00:00
|
|
|
|
|
2022-07-14 04:06:57 +00:00
|
|
|
|
// PopOut gets called initially, but we only want to hide dialog when we have been loaded and are present.
|
|
|
|
|
if (IsLoaded && CurrentDialog?.State.Value == Visibility.Visible)
|
2022-05-05 06:02:23 +00:00
|
|
|
|
CurrentDialog.Hide();
|
2017-02-28 04:59:36 +00:00
|
|
|
|
}
|
2019-09-11 22:35:47 +00:00
|
|
|
|
|
2021-09-16 09:26:12 +00:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
2019-09-11 22:35:47 +00:00
|
|
|
|
{
|
2021-11-18 03:35:47 +00:00
|
|
|
|
if (e.Repeat)
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-09-16 09:26:12 +00:00
|
|
|
|
switch (e.Action)
|
2019-09-11 22:35:47 +00:00
|
|
|
|
{
|
|
|
|
|
case GlobalAction.Select:
|
2022-07-26 08:46:23 +00:00
|
|
|
|
var clickableButton =
|
|
|
|
|
CurrentDialog?.Buttons.OfType<PopupDialogOkButton>().FirstOrDefault() ??
|
|
|
|
|
CurrentDialog?.Buttons.First();
|
|
|
|
|
|
|
|
|
|
clickableButton?.TriggerClick();
|
2019-09-11 22:35:47 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 09:26:12 +00:00
|
|
|
|
return base.OnPressed(e);
|
2019-09-11 22:35:47 +00:00
|
|
|
|
}
|
2017-02-28 04:59:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|