2017-02-10 15:26:43 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Overlays.Notifications;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
|
|
|
|
public class NotificationManager : FocusedOverlayContainer
|
|
|
|
|
{
|
|
|
|
|
private const float width = 320;
|
|
|
|
|
|
|
|
|
|
public const float TRANSITION_LENGTH = 600;
|
|
|
|
|
|
|
|
|
|
private ScrollContainer scrollContainer;
|
|
|
|
|
private FlowContainer<NotificationSection> sections;
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
2017-02-27 22:32:32 +08:00
|
|
|
|
private void load()
|
2017-02-10 15:26:43 +08:00
|
|
|
|
{
|
|
|
|
|
Width = width;
|
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Alpha = 0.6f,
|
|
|
|
|
},
|
2017-02-18 03:08:28 +08:00
|
|
|
|
scrollContainer = new ScrollContainer
|
2017-02-10 15:26:43 +08:00
|
|
|
|
{
|
2017-02-18 03:08:28 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-02-10 15:26:43 +08:00
|
|
|
|
Margin = new MarginPadding { Top = Toolbar.Toolbar.HEIGHT },
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2017-03-02 02:33:01 +08:00
|
|
|
|
sections = new FillFlowContainer<NotificationSection>
|
2017-02-10 15:26:43 +08:00
|
|
|
|
{
|
2017-03-04 18:00:17 +08:00
|
|
|
|
Direction = FillDirection.Vertical,
|
2017-02-10 15:26:43 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Children = new []
|
|
|
|
|
{
|
|
|
|
|
new NotificationSection
|
|
|
|
|
{
|
|
|
|
|
Title = @"Notifications",
|
|
|
|
|
ClearText = @"Clear All",
|
|
|
|
|
AcceptTypes = new [] { typeof(SimpleNotification) },
|
|
|
|
|
},
|
|
|
|
|
new NotificationSection
|
|
|
|
|
{
|
|
|
|
|
Title = @"Running Tasks",
|
|
|
|
|
ClearText = @"Cancel All",
|
|
|
|
|
AcceptTypes = new [] { typeof(ProgressNotification) },
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
private int runningDepth;
|
2017-02-10 15:26:43 +08:00
|
|
|
|
|
|
|
|
|
public void Post(Notification notification)
|
|
|
|
|
{
|
2017-02-12 13:50:02 +08:00
|
|
|
|
State = Visibility.Visible;
|
|
|
|
|
|
2017-02-10 15:26:43 +08:00
|
|
|
|
++runningDepth;
|
|
|
|
|
notification.Depth = notification.DisplayOnTop ? runningDepth : -runningDepth;
|
|
|
|
|
|
|
|
|
|
var hasCompletionTarget = notification as IHasCompletionTarget;
|
|
|
|
|
if (hasCompletionTarget != null)
|
|
|
|
|
hasCompletionTarget.CompletionTarget = Post;
|
|
|
|
|
|
|
|
|
|
var ourType = notification.GetType();
|
2017-05-13 21:28:53 +08:00
|
|
|
|
sections.Children.FirstOrDefault(s => s.AcceptTypes.Any(accept => accept.IsAssignableFrom(ourType)))?.Add(notification);
|
2017-02-10 15:26:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
base.PopIn();
|
|
|
|
|
|
|
|
|
|
scrollContainer.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
FadeTo(1, TRANSITION_LENGTH / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void markAllRead()
|
|
|
|
|
{
|
|
|
|
|
sections.Children.ForEach(s => s.MarkAllRead());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
base.PopOut();
|
|
|
|
|
|
|
|
|
|
markAllRead();
|
|
|
|
|
|
|
|
|
|
MoveToX(width, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
FadeTo(0, TRANSITION_LENGTH / 2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|