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
|
|
|
|
2018-04-14 19:31:03 +08:00
|
|
|
using System;
|
2018-04-13 17:19:50 +08:00
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-12-21 16:54:12 +08:00
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-12-21 16:54:12 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Online.Chat;
|
|
|
|
using osu.Game.Users;
|
2018-12-21 16:54:12 +08:00
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Chat
|
|
|
|
{
|
2018-12-21 16:54:12 +08:00
|
|
|
public class ChatLine : CompositeDrawable
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2018-12-21 16:54:12 +08:00
|
|
|
public const float LEFT_PADDING = default_message_padding + default_horizontal_padding * 2;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
private const float default_message_padding = 200;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
protected virtual float MessagePadding => default_message_padding;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
private const float default_horizontal_padding = 15;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
protected virtual float HorizontalPadding => default_horizontal_padding;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
protected virtual float TextSize => 20;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
private Color4 customUsernameColour;
|
|
|
|
|
|
|
|
private OsuSpriteText timestamp;
|
|
|
|
|
|
|
|
public ChatLine(Message message)
|
|
|
|
{
|
|
|
|
Message = message;
|
2018-12-21 16:54:12 +08:00
|
|
|
Padding = new MarginPadding { Left = HorizontalPadding, Right = HorizontalPadding };
|
2018-04-13 17:19:50 +08:00
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
}
|
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
private ChannelManager chatManager { get; set; }
|
2018-04-14 19:31:03 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private Message message;
|
|
|
|
private OsuSpriteText username;
|
|
|
|
private LinkFlowContainer contentFlow;
|
|
|
|
|
|
|
|
public LinkFlowContainer ContentFlow => contentFlow;
|
|
|
|
|
|
|
|
public Message Message
|
|
|
|
{
|
|
|
|
get => message;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
if (message == value) return;
|
|
|
|
|
|
|
|
message = MessageFormatter.FormatMessage(value);
|
|
|
|
|
|
|
|
if (!IsLoaded)
|
|
|
|
return;
|
|
|
|
|
|
|
|
updateMessageContent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
customUsernameColour = colours.ChatBlue;
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool senderHasBackground => !string.IsNullOrEmpty(message.Sender.Colour);
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
bool hasBackground = senderHasBackground;
|
|
|
|
|
|
|
|
Drawable effectedUsername = username = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
Colour = hasBackground ? customUsernameColour : username_colours[message.Sender.Id % username_colours.Length],
|
2018-12-21 16:54:12 +08:00
|
|
|
TextSize = TextSize,
|
2018-04-13 17:19:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
if (hasBackground)
|
|
|
|
{
|
|
|
|
// Background effect
|
|
|
|
effectedUsername = new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 4,
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Roundness = 1,
|
|
|
|
Offset = new Vector2(0, 3),
|
|
|
|
Radius = 3,
|
|
|
|
Colour = Color4.Black.Opacity(0.3f),
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
},
|
|
|
|
// Drop shadow effect
|
|
|
|
Child = new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 4,
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Radius = 1,
|
|
|
|
Colour = OsuColour.FromHex(message.Sender.Colour),
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
},
|
|
|
|
Padding = new MarginPadding { Left = 3, Right = 3, Bottom = 1, Top = -3 },
|
|
|
|
Y = 3,
|
|
|
|
Child = username,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
InternalChildren = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
new Container
|
|
|
|
{
|
2018-12-21 16:54:12 +08:00
|
|
|
Size = new Vector2(MessagePadding, TextSize),
|
2018-04-13 17:19:50 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
timestamp = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
Font = @"Exo2.0-SemiBold",
|
|
|
|
FixedWidth = true,
|
2018-12-21 16:54:12 +08:00
|
|
|
TextSize = TextSize * 0.75f,
|
2018-04-13 17:19:50 +08:00
|
|
|
},
|
|
|
|
new MessageSender(message.Sender)
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Child = effectedUsername,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2018-12-21 16:54:12 +08:00
|
|
|
Padding = new MarginPadding { Left = MessagePadding + HorizontalPadding },
|
2018-04-13 17:19:50 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
contentFlow = new LinkFlowContainer(t =>
|
|
|
|
{
|
|
|
|
if (Message.IsAction)
|
|
|
|
{
|
|
|
|
t.Font = @"Exo2.0-MediumItalic";
|
|
|
|
|
|
|
|
if (senderHasBackground)
|
|
|
|
t.Colour = OsuColour.FromHex(message.Sender.Colour);
|
|
|
|
}
|
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
t.TextSize = TextSize;
|
2018-04-13 17:19:50 +08:00
|
|
|
})
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
updateMessageContent();
|
|
|
|
FinishTransforms(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateMessageContent()
|
|
|
|
{
|
|
|
|
this.FadeTo(message is LocalEchoMessage ? 0.4f : 1.0f, 500, Easing.OutQuint);
|
|
|
|
timestamp.FadeTo(message is LocalEchoMessage ? 0 : 1, 500, Easing.OutQuint);
|
|
|
|
|
|
|
|
timestamp.Text = $@"{message.Timestamp.LocalDateTime:HH:mm:ss}";
|
|
|
|
username.Text = $@"{message.Sender.Username}" + (senderHasBackground || message.IsAction ? "" : ":");
|
|
|
|
|
|
|
|
// remove non-existent channels from the link list
|
2018-04-14 19:31:03 +08:00
|
|
|
message.Links.RemoveAll(link => link.Action == LinkAction.OpenChannel && chatManager?.AvailableChannels.Any(c => c.Name == link.Argument) != true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
contentFlow.Clear();
|
|
|
|
contentFlow.AddLinks(message.DisplayContent, message.Links);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class MessageSender : OsuClickableContainer, IHasContextMenu
|
|
|
|
{
|
|
|
|
private readonly User sender;
|
|
|
|
|
2018-04-14 19:31:03 +08:00
|
|
|
private Action startChatAction;
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
public MessageSender(User sender)
|
|
|
|
{
|
|
|
|
this.sender = sender;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2018-04-14 19:31:03 +08:00
|
|
|
private void load(UserProfileOverlay profile, ChannelManager chatManager)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Action = () => profile?.ShowUser(sender);
|
2018-07-24 11:14:47 +08:00
|
|
|
startChatAction = () => chatManager?.OpenPrivateChannel(sender);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public MenuItem[] ContextMenuItems => new MenuItem[]
|
|
|
|
{
|
|
|
|
new OsuMenuItem("View Profile", MenuItemType.Highlighted, Action),
|
2018-07-10 00:58:10 +08:00
|
|
|
new OsuMenuItem("Start Chat", MenuItemType.Standard, startChatAction),
|
2018-04-13 17:19:50 +08:00
|
|
|
};
|
|
|
|
}
|
2018-12-21 16:54:12 +08:00
|
|
|
|
|
|
|
private static readonly Color4[] username_colours =
|
|
|
|
{
|
|
|
|
OsuColour.FromHex("588c7e"),
|
|
|
|
OsuColour.FromHex("b2a367"),
|
|
|
|
OsuColour.FromHex("c98f65"),
|
|
|
|
OsuColour.FromHex("bc5151"),
|
|
|
|
OsuColour.FromHex("5c8bd6"),
|
|
|
|
OsuColour.FromHex("7f6ab7"),
|
|
|
|
OsuColour.FromHex("a368ad"),
|
|
|
|
OsuColour.FromHex("aa6880"),
|
|
|
|
|
|
|
|
OsuColour.FromHex("6fad9b"),
|
|
|
|
OsuColour.FromHex("f2e394"),
|
|
|
|
OsuColour.FromHex("f2ae72"),
|
|
|
|
OsuColour.FromHex("f98f8a"),
|
|
|
|
OsuColour.FromHex("7daef4"),
|
|
|
|
OsuColour.FromHex("a691f2"),
|
|
|
|
OsuColour.FromHex("c894d3"),
|
|
|
|
OsuColour.FromHex("d895b0"),
|
|
|
|
|
|
|
|
OsuColour.FromHex("53c4a1"),
|
|
|
|
OsuColour.FromHex("eace5c"),
|
|
|
|
OsuColour.FromHex("ea8c47"),
|
|
|
|
OsuColour.FromHex("fc4f4f"),
|
|
|
|
OsuColour.FromHex("3d94ea"),
|
|
|
|
OsuColour.FromHex("7760ea"),
|
|
|
|
OsuColour.FromHex("af52c6"),
|
|
|
|
OsuColour.FromHex("e25696"),
|
|
|
|
|
|
|
|
OsuColour.FromHex("677c66"),
|
|
|
|
OsuColour.FromHex("9b8732"),
|
|
|
|
OsuColour.FromHex("8c5129"),
|
|
|
|
OsuColour.FromHex("8c3030"),
|
|
|
|
OsuColour.FromHex("1f5d91"),
|
|
|
|
OsuColour.FromHex("4335a5"),
|
|
|
|
OsuColour.FromHex("812a96"),
|
|
|
|
OsuColour.FromHex("992861"),
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|