2019-09-11 08:34:28 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
2019-02-21 10:04:31 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-11-20 07:51:59 +00:00
|
|
|
|
using osuTK;
|
2018-07-01 06:52:47 +00:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2018-10-02 03:02:47 +00:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-06-21 07:19:07 +00:00
|
|
|
|
using osu.Game.Audio;
|
2018-07-01 06:52:47 +00:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2018-05-28 11:43:47 +00:00
|
|
|
|
using osu.Game.Overlays;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
|
|
|
{
|
2019-08-21 09:16:30 +00:00
|
|
|
|
[Cached(typeof(IPreviewTrackOwner))]
|
2019-07-02 06:17:35 +00:00
|
|
|
|
public abstract class OsuFocusedOverlayContainer : FocusedOverlayContainer, IPreviewTrackOwner, IKeyBindingHandler<GlobalAction>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
private SampleChannel samplePopIn;
|
|
|
|
|
private SampleChannel samplePopOut;
|
|
|
|
|
|
2018-09-26 05:01:15 +00:00
|
|
|
|
protected override bool BlockNonPositionalInput => true;
|
2018-07-13 11:40:49 +00:00
|
|
|
|
|
2019-03-02 05:48:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Temporary to allow for overlays in the main screen content to not dim theirselves.
|
|
|
|
|
/// Should be eventually replaced by dimming which is aware of the target dim container (traverse parent for certain interface type?).
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected virtual bool DimMainContent => true;
|
|
|
|
|
|
2019-03-01 03:20:31 +00:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2019-09-11 08:34:28 +00:00
|
|
|
|
private OsuGame game { get; set; }
|
2019-03-01 03:20:31 +00:00
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private PreviewTrackManager previewTrackManager { get; set; }
|
2018-06-21 07:19:07 +00:00
|
|
|
|
|
2018-06-06 06:49:27 +00:00
|
|
|
|
protected readonly Bindable<OverlayActivation> OverlayActivationMode = new Bindable<OverlayActivation>(OverlayActivation.All);
|
2018-05-18 05:57:12 +00:00
|
|
|
|
|
2018-05-20 08:57:15 +00:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2019-03-01 03:20:31 +00:00
|
|
|
|
private void load(AudioManager audio)
|
2019-09-11 10:06:31 +00:00
|
|
|
|
{
|
|
|
|
|
samplePopIn = audio.Samples.Get(@"UI/overlay-pop-in");
|
|
|
|
|
samplePopOut = audio.Samples.Get(@"UI/overlay-pop-out");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-11 10:12:55 +00:00
|
|
|
|
if (game != null)
|
|
|
|
|
OverlayActivationMode.BindTo(game.OverlayActivationMode);
|
|
|
|
|
|
|
|
|
|
OverlayActivationMode.BindValueChanged(mode =>
|
2019-09-11 08:34:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (mode.NewValue == OverlayActivation.Disabled)
|
|
|
|
|
State.Value = Visibility.Hidden;
|
2019-09-11 10:12:55 +00:00
|
|
|
|
}, true);
|
2018-05-21 07:42:29 +00:00
|
|
|
|
|
2019-09-11 10:06:31 +00:00
|
|
|
|
base.LoadComplete();
|
2019-07-26 10:00:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether mouse input should be blocked screen-wide while this overlay is visible.
|
2018-06-15 08:07:07 +00:00
|
|
|
|
/// Performing mouse actions outside of the valid extents will hide the overlay.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
/// </summary>
|
2018-09-26 05:01:15 +00:00
|
|
|
|
public virtual bool BlockScreenWideMouse => BlockPositionalInput;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
// receive input outside our bounds so we can trigger a close event on ourselves.
|
2018-09-26 05:01:15 +00:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => BlockScreenWideMouse || base.ReceivePositionalInputAt(screenSpacePos);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-12-01 20:02:47 +00:00
|
|
|
|
private bool closeOnMouseUp;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-12-01 20:02:47 +00:00
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
2019-08-29 03:07:58 +00:00
|
|
|
|
{
|
2019-12-01 20:54:37 +00:00
|
|
|
|
closeOnMouseUp = !base.ReceivePositionalInputAt(e.ScreenSpaceMousePosition);
|
2019-09-06 09:27:54 +00:00
|
|
|
|
|
2019-12-01 20:02:47 +00:00
|
|
|
|
return base.OnMouseDown(e);
|
2019-08-29 03:07:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 09:17:21 +00:00
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
2019-08-29 03:07:58 +00:00
|
|
|
|
{
|
2019-12-01 20:02:47 +00:00
|
|
|
|
if (closeOnMouseUp && !base.ReceivePositionalInputAt(e.ScreenSpaceMousePosition))
|
2019-06-11 05:28:52 +00:00
|
|
|
|
Hide();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-01-20 09:17:21 +00:00
|
|
|
|
base.OnMouseUp(e);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-03 09:37:21 +00:00
|
|
|
|
public virtual bool OnPressed(GlobalAction action)
|
2018-07-01 06:52:47 +00:00
|
|
|
|
{
|
2018-07-13 11:37:49 +00:00
|
|
|
|
switch (action)
|
2018-07-01 06:52:47 +00:00
|
|
|
|
{
|
2018-07-13 11:37:49 +00:00
|
|
|
|
case GlobalAction.Back:
|
2019-06-11 05:28:52 +00:00
|
|
|
|
Hide();
|
2018-07-13 11:37:49 +00:00
|
|
|
|
return true;
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-07-13 11:37:49 +00:00
|
|
|
|
case GlobalAction.Select:
|
|
|
|
|
return true;
|
2018-07-01 06:52:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 04:22:34 +00:00
|
|
|
|
public void OnReleased(GlobalAction action)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-07-01 06:52:47 +00:00
|
|
|
|
|
2019-08-06 05:21:34 +00:00
|
|
|
|
protected override void UpdateState(ValueChangedEvent<Visibility> state)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-06-11 05:28:52 +00:00
|
|
|
|
switch (state.NewValue)
|
2018-05-20 08:57:15 +00:00
|
|
|
|
{
|
2018-06-06 06:10:09 +00:00
|
|
|
|
case Visibility.Visible:
|
2019-09-11 08:34:03 +00:00
|
|
|
|
if (OverlayActivationMode.Value == OverlayActivation.Disabled)
|
2018-06-21 07:47:05 +00:00
|
|
|
|
{
|
2019-09-11 08:34:03 +00:00
|
|
|
|
State.Value = Visibility.Hidden;
|
|
|
|
|
return;
|
2018-06-21 07:47:05 +00:00
|
|
|
|
}
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2019-09-11 22:35:47 +00:00
|
|
|
|
samplePopIn?.Play();
|
2019-09-11 08:34:03 +00:00
|
|
|
|
if (BlockScreenWideMouse && DimMainContent) game?.AddBlockingOverlay(this);
|
2018-06-06 06:10:09 +00:00
|
|
|
|
break;
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-06-06 06:10:09 +00:00
|
|
|
|
case Visibility.Hidden:
|
2019-09-11 22:35:47 +00:00
|
|
|
|
samplePopOut?.Play();
|
2019-09-11 08:34:03 +00:00
|
|
|
|
if (BlockScreenWideMouse) game?.RemoveBlockingOverlay(this);
|
2018-06-06 06:10:09 +00:00
|
|
|
|
break;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
2019-09-11 08:34:03 +00:00
|
|
|
|
|
|
|
|
|
base.UpdateState(state);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
2018-06-21 07:19:07 +00:00
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
base.PopOut();
|
2018-06-22 03:35:43 +00:00
|
|
|
|
previewTrackManager.StopAnyPlaying(this);
|
2018-06-21 07:19:07 +00:00
|
|
|
|
}
|
2019-03-01 03:20:31 +00:00
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
2019-09-11 08:34:28 +00:00
|
|
|
|
game?.RemoveBlockingOverlay(this);
|
2019-03-01 03:20:31 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|