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

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

278 lines
8.5 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
2017-02-10 15:26:43 +08:00
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
2017-02-10 15:26:43 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
namespace osu.Game.Overlays.Notifications
{
public abstract class Notification : Container
{
/// <summary>
/// User requested close.
2017-02-10 15:26:43 +08:00
/// </summary>
public event Action Closed;
2018-04-13 17:19:50 +08:00
public abstract LocalisableString Text { get; set; }
2018-07-13 20:25:08 +08:00
/// <summary>
/// Whether this notification should forcefully display itself.
/// </summary>
2018-07-16 12:00:21 +08:00
public virtual bool IsImportant => true;
2018-07-13 20:25:08 +08:00
2017-02-10 15:26:43 +08:00
/// <summary>
/// Run on user activating the notification. Return true to close.
/// </summary>
public Func<bool> Activated;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
/// <summary>
/// Should we show at the top of our section on display?
/// </summary>
public virtual bool DisplayOnTop => true;
2018-04-13 17:19:50 +08:00
public virtual string PopInSampleName => "UI/notification-pop-in";
2021-01-15 14:21:50 +08:00
2017-02-10 15:26:43 +08:00
protected NotificationLight Light;
private readonly CloseButton closeButton;
2017-02-10 15:26:43 +08:00
protected Container IconContent;
private readonly Container content;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
protected override Container<Drawable> Content => content;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
protected Container NotificationContent;
2018-04-13 17:19:50 +08:00
2017-03-07 09:59:19 +08:00
public virtual bool Read { get; set; }
2018-04-13 17:19:50 +08:00
2017-03-09 13:01:08 +08:00
protected Notification()
2017-02-10 15:26:43 +08:00
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
2018-04-13 17:19:50 +08:00
2017-07-11 21:58:06 +08:00
AddRangeInternal(new Drawable[]
2017-02-10 15:26:43 +08:00
{
Light = new NotificationLight
{
Margin = new MarginPadding { Right = 5 },
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreRight,
},
NotificationContent = new Container
{
CornerRadius = 8,
Masking = true,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
AutoSizeDuration = 400,
AutoSizeEasing = Easing.OutQuint,
2017-02-10 15:26:43 +08:00
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.White,
},
new Container
{
RelativeSizeAxes = Axes.X,
Padding = new MarginPadding(5),
AutoSizeAxes = Axes.Y,
2017-02-10 15:26:43 +08:00
Children = new Drawable[]
{
IconContent = new Container
{
Size = new Vector2(40),
Masking = true,
CornerRadius = 5,
},
content = new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding
{
Left = 45,
Right = 30
},
}
}
},
closeButton = new CloseButton
{
Alpha = 0,
Action = Close,
2017-02-10 15:26:43 +08:00
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Margin = new MarginPadding
{
Right = 5
},
}
}
}
});
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2017-02-10 15:26:43 +08:00
{
closeButton.FadeIn(75);
2018-10-02 11:02:47 +08:00
return base.OnHover(e);
2017-02-10 15:26:43 +08:00
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2017-02-10 15:26:43 +08:00
{
closeButton.FadeOut(75);
2018-10-02 11:02:47 +08:00
base.OnHoverLost(e);
2017-02-10 15:26:43 +08:00
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnClick(ClickEvent e)
2017-02-10 15:26:43 +08:00
{
if (Activated?.Invoke() ?? true)
Close();
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
return true;
}
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2021-01-15 14:21:50 +08:00
this.FadeInFromZero(200);
2017-02-10 15:26:43 +08:00
NotificationContent.MoveToX(DrawSize.X);
2017-07-23 02:50:25 +08:00
NotificationContent.MoveToX(0, 500, Easing.OutQuint);
2017-02-10 15:26:43 +08:00
}
2018-04-13 17:19:50 +08:00
public bool WasClosed;
2018-04-13 17:19:50 +08:00
public virtual void Close()
2017-02-10 15:26:43 +08:00
{
if (WasClosed) return;
2019-02-28 12:31:40 +08:00
WasClosed = true;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
Closed?.Invoke();
this.FadeOut(100);
2017-02-10 15:26:43 +08:00
Expire();
}
2018-04-13 17:19:50 +08:00
private class CloseButton : OsuClickableContainer
2017-02-10 15:26:43 +08:00
{
private Color4 hoverColour;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
public CloseButton()
{
Colour = OsuColour.Gray(0.2f);
AutoSizeAxes = Axes.Both;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
Children = new[]
{
new SpriteIcon
2017-02-10 15:26:43 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Solid.TimesCircle,
Size = new Vector2(20),
2017-02-10 15:26:43 +08:00
}
};
}
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
hoverColour = colours.Yellow;
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2017-02-10 15:26:43 +08:00
{
this.FadeColour(hoverColour, 200);
2018-10-02 11:02:47 +08:00
return base.OnHover(e);
2017-02-10 15:26:43 +08:00
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2017-02-10 15:26:43 +08:00
{
this.FadeColour(OsuColour.Gray(0.2f), 200);
2018-10-02 11:02:47 +08:00
base.OnHoverLost(e);
2017-02-10 15:26:43 +08:00
}
}
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
public class NotificationLight : Container
{
private bool pulsate;
private Container pulsateLayer;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
public bool Pulsate
{
get => pulsate;
2017-02-10 15:26:43 +08:00
set
{
if (pulsate == value) return;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
pulsate = value;
2018-04-13 17:19:50 +08:00
2017-02-25 20:12:39 +08:00
pulsateLayer.ClearTransforms();
2017-02-10 15:26:43 +08:00
pulsateLayer.Alpha = 1;
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
if (pulsate)
{
const float length = 1000;
pulsateLayer.Loop(length / 2,
2017-07-23 02:50:25 +08:00
p => p.FadeTo(0.4f, length, Easing.In).Then().FadeTo(1, length, Easing.Out)
);
2017-02-10 15:26:43 +08:00
}
}
}
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
public new SRGBColour Colour
{
set
{
base.Colour = value;
2017-06-12 11:48:47 +08:00
pulsateLayer.EdgeEffect = new EdgeEffectParameters
2017-02-10 15:26:43 +08:00
{
Colour = ((Color4)value).Opacity(0.5f), //todo: avoid cast
Type = EdgeEffectType.Glow,
Radius = 12,
Roundness = 12,
};
}
}
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
[BackgroundDependencyLoader]
private void load()
2017-02-10 15:26:43 +08:00
{
Size = new Vector2(6, 15);
2018-04-13 17:19:50 +08:00
2017-02-10 15:26:43 +08:00
Children = new[]
{
pulsateLayer = new CircularContainer
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Masking = true,
RelativeSizeAxes = Axes.Both,
Children = new[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
},
}
}
};
}
}
}
2017-12-25 17:31:32 +08:00
}