2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
2019-09-12 06:35:47 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
|
using System.Linq;
|
2021-09-23 19:14:32 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
2021-09-16 17:26:12 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2021-09-23 19:14:32 +08:00
|
|
|
|
using osu.Game.Audio.Effects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
|
|
|
|
public class DialogOverlay : OsuFocusedOverlayContainer
|
|
|
|
|
{
|
|
|
|
|
private readonly Container dialogContainer;
|
2019-09-19 19:17:58 +08:00
|
|
|
|
|
2021-01-15 13:57:46 +08:00
|
|
|
|
protected override string PopInSampleName => "UI/dialog-pop-in";
|
|
|
|
|
protected override string PopOutSampleName => "UI/dialog-pop-out";
|
|
|
|
|
|
2021-10-07 17:49:30 +08:00
|
|
|
|
private AudioFilter lowPassFilter;
|
2021-09-23 19:14:32 +08:00
|
|
|
|
|
2019-09-19 19:17:58 +08:00
|
|
|
|
public PopupDialog CurrentDialog { get; private set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-07-02 13:22:37 +08: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 19:14:32 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio)
|
|
|
|
|
{
|
2021-10-07 17:49:30 +08:00
|
|
|
|
AddInternal(lowPassFilter = new AudioFilter(audio.TrackMixer));
|
2021-09-23 19:14:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public void Push(PopupDialog dialog)
|
|
|
|
|
{
|
2021-05-19 15:52:34 +08:00
|
|
|
|
if (dialog == CurrentDialog || dialog.State.Value != Visibility.Visible) return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-05-19 15:52:34 +08:00
|
|
|
|
// if any existing dialog is being displayed, dismiss it before showing a new one.
|
2019-09-19 19:17:58 +08:00
|
|
|
|
CurrentDialog?.Hide();
|
2021-05-19 15:52:34 +08:00
|
|
|
|
|
2019-09-19 19:17:58 +08:00
|
|
|
|
CurrentDialog = dialog;
|
2021-05-19 15:52:34 +08:00
|
|
|
|
CurrentDialog.State.ValueChanged += state => onDialogOnStateChanged(dialog, state.NewValue);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-19 19:17:58 +08:00
|
|
|
|
dialogContainer.Add(CurrentDialog);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-06-11 13:28:52 +08:00
|
|
|
|
Show();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-23 18:19:03 +08:00
|
|
|
|
public override bool IsPresent => dialogContainer.Children.Count > 0;
|
|
|
|
|
|
2018-09-26 13:01:15 +08:00
|
|
|
|
protected override bool BlockNonPositionalInput => true;
|
2018-07-02 13:22:37 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private void onDialogOnStateChanged(VisibilityContainer dialog, Visibility v)
|
|
|
|
|
{
|
|
|
|
|
if (v != Visibility.Hidden) return;
|
|
|
|
|
|
2020-05-05 09:31:11 +08:00
|
|
|
|
// handle the dialog being dismissed.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
dialog.Delay(PopupDialog.EXIT_DURATION).Expire();
|
|
|
|
|
|
2019-09-19 19:17:58 +08:00
|
|
|
|
if (dialog == CurrentDialog)
|
|
|
|
|
{
|
2019-06-11 13:28:52 +08:00
|
|
|
|
Hide();
|
2019-09-19 19:17:58 +08:00
|
|
|
|
CurrentDialog = null;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
base.PopIn();
|
|
|
|
|
this.FadeIn(PopupDialog.ENTER_DURATION, Easing.OutQuint);
|
2021-10-07 17:49:30 +08:00
|
|
|
|
lowPassFilter.CutoffTo(300, 100, Easing.OutCubic);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
base.PopOut();
|
|
|
|
|
|
2021-10-07 17:49:30 +08:00
|
|
|
|
lowPassFilter.CutoffTo(AudioFilter.MAX_LOWPASS_CUTOFF, 100, Easing.InCubic);
|
2021-10-06 10:50:14 +08:00
|
|
|
|
|
2019-09-19 19:17:58 +08:00
|
|
|
|
if (CurrentDialog?.State.Value == Visibility.Visible)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-09-19 19:17:58 +08:00
|
|
|
|
CurrentDialog.Hide();
|
2018-07-02 13:22:37 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.FadeOut(PopupDialog.EXIT_DURATION, Easing.InSine);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-09-12 06:35:47 +08:00
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
2019-09-12 06:35:47 +08:00
|
|
|
|
{
|
2021-11-18 11:35:47 +08:00
|
|
|
|
if (e.Repeat)
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
switch (e.Action)
|
2019-09-12 06:35:47 +08:00
|
|
|
|
{
|
|
|
|
|
case GlobalAction.Select:
|
2021-08-04 16:27:44 +08:00
|
|
|
|
CurrentDialog?.Buttons.OfType<PopupDialogOkButton>().FirstOrDefault()?.TriggerClick();
|
2019-09-12 06:35:47 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
return base.OnPressed(e);
|
2019-09-12 06:35:47 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|