mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
98 lines
3.3 KiB
C#
98 lines
3.3 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Online.Chat;
|
|
using osu.Game.Users;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.Chat.Tabs
|
|
{
|
|
public class PrivateChannelTabItem : ChannelTabItem
|
|
{
|
|
private readonly OsuSpriteText username;
|
|
private readonly Avatar avatarContainer;
|
|
|
|
protected override FontAwesome DisplayIcon => FontAwesome.fa_at;
|
|
|
|
public PrivateChannelTabItem(Channel value)
|
|
: base(value)
|
|
{
|
|
if (value.Type != ChannelType.PM)
|
|
throw new ArgumentException("Argument value needs to have the targettype user!");
|
|
|
|
AddRange(new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Y,
|
|
AutoSizeAxes = Axes.X,
|
|
Margin = new MarginPadding
|
|
{
|
|
Horizontal = 3
|
|
},
|
|
Origin = Anchor.BottomLeft,
|
|
Anchor = Anchor.BottomLeft,
|
|
Children = new Drawable[]
|
|
{
|
|
new CircularContainer
|
|
{
|
|
Scale = new Vector2(0.95f),
|
|
Size = new Vector2(ChatOverlay.TAB_AREA_HEIGHT),
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Masking = true,
|
|
Child = new DelayedLoadWrapper(new Avatar(value.Users.First())
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
OnLoadComplete = d => d.FadeInFromZero(300, Easing.OutQuint),
|
|
})
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
}
|
|
},
|
|
}
|
|
},
|
|
});
|
|
|
|
Text.X = ChatOverlay.TAB_AREA_HEIGHT;
|
|
TextBold.X = ChatOverlay.TAB_AREA_HEIGHT;
|
|
}
|
|
|
|
protected override bool ShowCloseOnHover => false;
|
|
|
|
protected override void FadeActive()
|
|
{
|
|
base.FadeActive();
|
|
|
|
this.ResizeWidthTo(200, TRANSITION_LENGTH, Easing.OutQuint);
|
|
CloseButton.FadeIn(TRANSITION_LENGTH, Easing.OutQuint);
|
|
}
|
|
|
|
|
|
protected override void FadeInactive()
|
|
{
|
|
base.FadeInactive();
|
|
|
|
this.ResizeWidthTo(ChatOverlay.TAB_AREA_HEIGHT + 10, TRANSITION_LENGTH, Easing.OutQuint);
|
|
CloseButton.FadeOut(TRANSITION_LENGTH, Easing.OutQuint);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
var user = Value.Users.First();
|
|
|
|
BackgroundActive = user.Colour != null ? OsuColour.FromHex(user.Colour) : colours.BlueDark;
|
|
BackgroundInactive = BackgroundActive.Darken(0.5f);
|
|
}
|
|
}
|
|
}
|