1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Overlays/DialogOverlay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

121 lines
3.6 KiB
C#
Raw Normal View History

// 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
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Overlays.Dialog;
using osu.Game.Graphics.Containers;
using osu.Game.Input.Bindings;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Audio;
2021-09-16 17:26:12 +08:00
using osu.Framework.Input.Events;
using osu.Game.Audio.Effects;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays
{
public class DialogOverlay : OsuFocusedOverlayContainer, IDialogOverlay
{
private readonly Container dialogContainer;
2019-09-19 19:17:58 +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;
2019-09-19 19:17:58 +08:00
public PopupDialog CurrentDialog { get; private set; }
2018-04-13 17:19:50 +08:00
public DialogOverlay()
{
RelativeSizeAxes = Axes.Both;
Child = dialogContainer = new Container
{
RelativeSizeAxes = Axes.Both,
};
Width = 0.4f;
Anchor = Anchor.BottomCentre;
Origin = Anchor.BottomCentre;
}
[BackgroundDependencyLoader]
private void load(AudioManager audio)
{
2021-10-07 17:49:30 +08:00
AddInternal(lowPassFilter = new AudioFilter(audio.TrackMixer));
}
public void Push(PopupDialog dialog)
{
if (dialog == CurrentDialog || dialog.State.Value != Visibility.Visible) return;
2018-04-13 17:19:50 +08:00
var lastDialog = CurrentDialog;
// Immediately update the externally accessible property as this may be used for checks even before
// a DialogOverlay instance has finished loading.
2019-09-19 19:17:58 +08:00
CurrentDialog = dialog;
2018-04-13 17:19:50 +08:00
2022-07-14 12:06:03 +08:00
Schedule(() =>
{
// if any existing dialog is being displayed, dismiss it before showing a new one.
lastDialog?.Hide();
2022-07-14 12:04:46 +08:00
dialog.State.ValueChanged += state => onDialogStateChanged(dialog, state.NewValue), true);
dialogContainer.Add(dialog);
Show();
2022-07-14 12:06:03 +08:00
});
}
2018-04-13 17:19:50 +08:00
public override bool IsPresent => Scheduler.HasPendingTasks || dialogContainer.Children.Count > 0;
protected override bool BlockNonPositionalInput => true;
2022-07-14 12:04:46 +08:00
private void onDialogStateChanged(VisibilityContainer dialog, Visibility newState)
{
2022-07-14 12:04:46 +08:00
if (newState != Visibility.Hidden) return;
2018-04-13 17:19:50 +08:00
2020-05-05 09:31:11 +08:00
// handle the dialog being dismissed.
dialog.Delay(PopupDialog.EXIT_DURATION).Expire();
2018-04-13 17:19:50 +08:00
2019-09-19 19:17:58 +08:00
if (dialog == CurrentDialog)
{
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();
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();
lowPassFilter.CutoffTo(AudioFilter.MAX_LOWPASS_CUTOFF, 100, Easing.InCubic);
if (CurrentDialog?.State.Value == Visibility.Visible)
CurrentDialog.Hide();
}
2021-09-16 17:26:12 +08:00
public override bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
{
if (e.Repeat)
return false;
2021-09-16 17:26:12 +08:00
switch (e.Action)
{
case GlobalAction.Select:
2021-08-04 16:27:44 +08:00
CurrentDialog?.Buttons.OfType<PopupDialogOkButton>().FirstOrDefault()?.TriggerClick();
return true;
}
2021-09-16 17:26:12 +08:00
return base.OnPressed(e);
}
}
}