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 System.Linq ;
using osu.Framework.Extensions.IEnumerableExtensions ;
using osu.Framework.Graphics ;
using osu.Framework.Graphics.Containers ;
using osu.Game.Overlays.Notifications ;
using osu.Framework.Graphics.Shapes ;
using osu.Game.Graphics.Containers ;
using osu.Framework.Allocation ;
2021-09-05 12:22:37 +08:00
using osu.Framework.Audio ;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables ;
2021-04-21 13:37:11 +08:00
using osu.Framework.Localisation ;
2018-04-13 17:19:50 +08:00
using osu.Framework.Threading ;
2020-11-30 16:18:29 +08:00
using osu.Game.Graphics ;
2021-04-21 13:37:11 +08:00
using osu.Game.Localisation ;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays
{
2020-09-03 14:46:56 +08:00
public class NotificationOverlay : OsuFocusedOverlayContainer , INamedOverlayComponent
2018-04-13 17:19:50 +08:00
{
2020-09-03 16:05:45 +08:00
public string IconTexture = > "Icons/Hexacons/notification" ;
2021-04-21 13:37:11 +08:00
public LocalisableString Title = > NotificationsStrings . HeaderTitle ;
public LocalisableString Description = > NotificationsStrings . HeaderDescription ;
2020-09-03 14:46:56 +08:00
2021-08-07 03:36:40 +08:00
public const float WIDTH = 320 ;
2018-04-13 17:19:50 +08:00
public const float TRANSITION_LENGTH = 600 ;
private FlowContainer < NotificationSection > sections ;
2021-09-05 12:22:37 +08:00
[Resolved]
private AudioManager audio { get ; set ; }
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load ( )
{
2021-08-07 06:27:54 +08:00
X = WIDTH ;
2021-08-07 03:36:40 +08:00
Width = WIDTH ;
2018-04-13 17:19:50 +08:00
RelativeSizeAxes = Axes . Y ;
Children = new Drawable [ ]
{
new Box
{
RelativeSizeAxes = Axes . Both ,
2020-11-30 16:18:29 +08:00
Colour = OsuColour . Gray ( 0.05f ) ,
2018-04-13 17:19:50 +08:00
} ,
new OsuScrollContainer
{
Masking = true ,
RelativeSizeAxes = Axes . Both ,
Children = new [ ]
{
sections = new FillFlowContainer < NotificationSection >
{
Direction = FillDirection . Vertical ,
AutoSizeAxes = Axes . Y ,
RelativeSizeAxes = Axes . X ,
Children = new [ ]
{
2019-06-20 16:41:12 +08:00
new NotificationSection ( @"Notifications" , @"Clear All" )
2018-04-13 17:19:50 +08:00
{
AcceptTypes = new [ ] { typeof ( SimpleNotification ) }
} ,
2019-06-20 16:41:12 +08:00
new NotificationSection ( @"Running Tasks" , @"Cancel All" )
2018-04-13 17:19:50 +08:00
{
AcceptTypes = new [ ] { typeof ( ProgressNotification ) }
}
}
}
}
}
} ;
}
2018-06-06 14:49:58 +08:00
private ScheduledDelegate notificationsEnabler ;
2019-02-28 12:31:40 +08:00
2018-06-06 14:49:58 +08:00
private void updateProcessingMode ( )
{
2019-06-11 13:28:52 +08:00
bool enabled = OverlayActivationMode . Value = = OverlayActivation . All | | State . Value = = Visibility . Visible ;
2018-06-06 14:49:58 +08:00
notificationsEnabler ? . Cancel ( ) ;
if ( enabled )
// we want a slight delay before toggling notifications on to avoid the user becoming overwhelmed.
2019-06-11 13:28:52 +08:00
notificationsEnabler = Scheduler . AddDelayed ( ( ) = > processingPosts = true , State . Value = = Visibility . Visible ? 0 : 1000 ) ;
2018-06-06 14:49:58 +08:00
else
processingPosts = false ;
}
protected override void LoadComplete ( )
{
base . LoadComplete ( ) ;
2019-06-11 13:28:52 +08:00
State . ValueChanged + = _ = > updateProcessingMode ( ) ;
2018-08-23 10:20:20 +08:00
OverlayActivationMode . BindValueChanged ( _ = > updateProcessingMode ( ) , true ) ;
2018-06-06 14:49:58 +08:00
}
2018-04-13 17:19:50 +08:00
public readonly BindableInt UnreadCount = new BindableInt ( ) ;
private int runningDepth ;
private readonly Scheduler postScheduler = new Scheduler ( ) ;
2019-06-20 18:06:21 +08:00
public override bool IsPresent = > base . IsPresent | | postScheduler . HasPendingTasks ;
2018-04-13 17:19:50 +08:00
private bool processingPosts = true ;
2021-09-05 12:22:37 +08:00
private double? lastSamplePlayback ;
2021-09-05 11:54:21 +08:00
/// <summary>
/// Post a new notification for display.
/// </summary>
/// <param name="notification">The notification to display.</param>
2018-04-13 17:19:50 +08:00
public void Post ( Notification notification ) = > postScheduler . Add ( ( ) = >
{
+ + runningDepth ;
notification . Closed + = notificationClosed ;
2019-02-28 13:35:00 +08:00
if ( notification is IHasCompletionTarget hasCompletionTarget )
2018-04-13 17:19:50 +08:00
hasCompletionTarget . CompletionTarget = Post ;
var ourType = notification . GetType ( ) ;
var section = sections . Children . FirstOrDefault ( s = > s . AcceptTypes . Any ( accept = > accept . IsAssignableFrom ( ourType ) ) ) ;
section ? . Add ( notification , notification . DisplayOnTop ? - runningDepth : runningDepth ) ;
2018-07-13 20:25:08 +08:00
if ( notification . IsImportant )
2019-06-11 13:28:52 +08:00
Show ( ) ;
2018-04-13 17:19:50 +08:00
updateCounts ( ) ;
2021-09-05 12:22:37 +08:00
playDebouncedSample ( notification . PopInSampleName ) ;
2018-04-13 17:19:50 +08:00
} ) ;
protected override void Update ( )
{
base . Update ( ) ;
2021-09-05 11:54:21 +08:00
2018-04-13 17:19:50 +08:00
if ( processingPosts )
postScheduler . Update ( ) ;
}
protected override void PopIn ( )
{
base . PopIn ( ) ;
this . MoveToX ( 0 , TRANSITION_LENGTH , Easing . OutQuint ) ;
this . FadeTo ( 1 , TRANSITION_LENGTH , Easing . OutQuint ) ;
}
protected override void PopOut ( )
{
base . PopOut ( ) ;
markAllRead ( ) ;
2021-08-07 03:36:40 +08:00
this . MoveToX ( WIDTH , TRANSITION_LENGTH , Easing . OutQuint ) ;
2018-04-13 17:19:50 +08:00
this . FadeTo ( 0 , TRANSITION_LENGTH , Easing . OutQuint ) ;
}
2021-09-05 12:22:37 +08:00
private void notificationClosed ( )
{
updateCounts ( ) ;
// this debounce is currently shared between popin/popout sounds, which means one could potentially not play when the user is expecting it.
// popout is constant across all notification types, and should therefore be handled using playback concurrency instead, but seems broken at the moment.
playDebouncedSample ( "UI/overlay-pop-out" ) ;
}
private void playDebouncedSample ( string sampleName )
{
2021-09-05 12:25:10 +08:00
if ( lastSamplePlayback = = null | | Time . Current - lastSamplePlayback > OsuGameBase . SAMPLE_DEBOUNCE_TIME )
2021-09-05 12:22:37 +08:00
{
audio . Samples . Get ( sampleName ) ? . Play ( ) ;
lastSamplePlayback = Time . Current ;
}
}
2021-09-05 11:54:21 +08:00
2018-04-13 17:19:50 +08:00
private void updateCounts ( )
{
2019-06-20 18:06:21 +08:00
UnreadCount . Value = sections . Select ( c = > c . UnreadCount ) . Sum ( ) ;
2018-04-13 17:19:50 +08:00
}
private void markAllRead ( )
{
sections . Children . ForEach ( s = > s . MarkAllRead ( ) ) ;
updateCounts ( ) ;
}
}
}