mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:17:29 +08:00
70 lines
2.1 KiB
C#
70 lines
2.1 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Chat.ChannelList
|
|
{
|
|
public partial class ChannelListItemMentionPill : CircularContainer
|
|
{
|
|
public readonly BindableInt Mentions = new BindableInt();
|
|
|
|
private OsuSpriteText countText = null!;
|
|
|
|
private Box box = null!;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour osuColour, OverlayColourProvider colourProvider)
|
|
{
|
|
Masking = true;
|
|
Size = new Vector2(20, 12);
|
|
Alpha = 0f;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
box = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = osuColour.Orange1,
|
|
},
|
|
countText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Font = OsuFont.Torus.With(size: 11, weight: FontWeight.Bold),
|
|
Margin = new MarginPadding { Bottom = 1 },
|
|
Colour = colourProvider.Background5,
|
|
},
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Mentions.BindValueChanged(change =>
|
|
{
|
|
int mentionCount = change.NewValue;
|
|
|
|
countText.Text = mentionCount > 99 ? "99+" : mentionCount.ToString();
|
|
|
|
if (mentionCount > 0)
|
|
{
|
|
this.FadeIn(1000, Easing.OutQuint);
|
|
box.FlashColour(Color4.White, 500, Easing.OutQuint);
|
|
}
|
|
else
|
|
this.FadeOut(100, Easing.OutQuint);
|
|
}, true);
|
|
}
|
|
}
|
|
}
|