1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Overlays/Chat/ChatLine.cs

257 lines
8.9 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-27 19:45:26 +08:00
using System.Linq;
2017-08-21 16:43:26 +08:00
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
2016-09-27 19:45:26 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-02-20 20:09:56 +08:00
using osu.Game.Graphics;
2017-08-21 16:43:26 +08:00
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Online.Chat;
2017-07-19 17:22:46 +08:00
using osu.Game.Users;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Graphics.UserInterface;
2016-09-27 19:45:26 +08:00
namespace osu.Game.Overlays.Chat
2016-09-27 19:45:26 +08:00
{
2016-11-14 16:23:33 +08:00
public class ChatLine : Container
2016-09-27 19:45:26 +08:00
{
2017-08-21 16:43:26 +08:00
private static readonly Color4[] username_colours =
{
2017-02-20 20:09:56 +08:00
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"),
};
public const float LEFT_PADDING = message_padding + padding * 2;
private const float padding = 15;
private const float message_padding = 200;
2017-09-22 17:30:01 +08:00
private const float action_padding = 3;
2017-03-07 09:59:19 +08:00
private const float text_size = 20;
2017-07-18 17:26:05 +08:00
private Color4 customUsernameColour;
2017-08-21 16:43:26 +08:00
private OsuSpriteText timestamp;
2016-11-14 16:23:33 +08:00
public ChatLine(Message message)
{
Message = message;
2016-11-14 16:23:33 +08:00
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
2016-09-27 19:45:26 +08:00
Padding = new MarginPadding { Left = padding, Right = padding };
2017-07-18 17:26:05 +08:00
}
private ChatManager chatManager;
2017-08-21 16:43:26 +08:00
private Message message;
private OsuSpriteText username;
private LinkFlowContainer contentFlow;
2017-12-29 03:11:21 +08:00
public LinkFlowContainer ContentFlow => contentFlow;
2017-08-21 16:43:26 +08:00
public Message Message
{
get => message;
2017-08-21 16:43:26 +08:00
set
{
if (message == value) return;
message = MessageFormatter.FormatMessage(value);
2017-08-21 16:43:26 +08:00
if (!IsLoaded)
return;
updateMessageContent();
}
}
[BackgroundDependencyLoader(true)]
private void load(OsuColour colours, ChatManager chatManager)
2017-07-18 17:26:05 +08:00
{
this.chatManager = chatManager;
2017-07-18 17:26:05 +08:00
customUsernameColour = colours.ChatBlue;
}
2017-08-21 16:43:26 +08:00
private bool senderHasBackground => !string.IsNullOrEmpty(message.Sender.Colour);
2017-07-18 17:26:05 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2017-08-21 16:43:26 +08:00
bool hasBackground = senderHasBackground;
Drawable effectedUsername = username = new OsuSpriteText
2017-07-18 15:53:41 +08:00
{
Font = @"Exo2.0-BoldItalic",
2017-08-21 16:43:26 +08:00
Colour = hasBackground ? customUsernameColour : username_colours[message.Sender.Id % username_colours.Length],
2017-07-18 15:53:41 +08:00
TextSize = text_size,
};
if (hasBackground)
{
2017-07-18 17:26:05 +08:00
// Background effect
2017-08-21 16:43:26 +08:00
effectedUsername = new Container
2017-07-18 17:26:05 +08:00
{
2017-08-21 16:43:26 +08:00
AutoSizeAxes = Axes.Both,
Masking = true,
2017-07-18 17:26:05 +08:00
CornerRadius = 4,
2017-08-21 16:43:26 +08:00
EdgeEffect = new EdgeEffectParameters
2017-07-18 17:26:05 +08:00
{
Roundness = 1,
Offset = new Vector2(0, 3),
Radius = 3,
Colour = Color4.Black.Opacity(0.3f),
Type = EdgeEffectType.Shadow,
2017-08-21 16:43:26 +08:00
},
// 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,
2017-07-18 17:26:05 +08:00
}
2017-08-21 16:43:26 +08:00
};
2017-07-18 15:53:41 +08:00
}
2016-11-14 16:23:33 +08:00
Children = new Drawable[]
{
new Container
2016-09-27 19:45:26 +08:00
{
Size = new Vector2(message_padding, text_size),
2017-07-19 17:22:46 +08:00
Children = new Drawable[]
{
2017-08-21 16:43:26 +08:00
timestamp = new OsuSpriteText
2016-11-14 16:23:33 +08:00
{
2017-02-20 20:09:56 +08:00
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Font = @"Exo2.0-SemiBold",
FixedWidth = true,
2017-02-20 20:09:56 +08:00
TextSize = text_size * 0.75f,
2016-11-14 16:23:33 +08:00
},
new MessageSender(message.Sender)
{
AutoSizeAxes = Axes.Both,
2016-11-14 16:23:33 +08:00
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
2017-08-21 16:43:26 +08:00
Child = effectedUsername,
},
2016-11-14 16:23:33 +08:00
}
},
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2017-09-22 17:30:01 +08:00
Padding = new MarginPadding { Left = message_padding + padding },
2016-11-14 16:23:33 +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);
}
t.TextSize = text_size;
})
2017-07-24 17:11:25 +08:00
{
2016-11-16 10:51:39 +08:00
AutoSizeAxes = Axes.Y,
2016-11-14 16:23:33 +08:00
RelativeSizeAxes = Axes.X,
}
}
2016-11-14 16:23:33 +08:00
}
};
2017-08-21 16:43:26 +08:00
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 ? "" : ":");
2017-09-22 17:30:01 +08:00
// remove non-existent channels from the link list
message.Links.RemoveAll(link => link.Action == LinkAction.OpenChannel && chatManager?.AvailableChannels.Any(c => c.Name == link.Argument) != true);
2018-01-09 23:11:45 +08:00
contentFlow.Clear();
contentFlow.AddLinks(message.DisplayContent, message.Links);
2016-09-27 19:45:26 +08:00
}
private class MessageSender : OsuClickableContainer, IHasContextMenu
{
private readonly User sender;
public MessageSender(User sender)
{
this.sender = sender;
}
[BackgroundDependencyLoader(true)]
private void load(UserProfileOverlay profile)
{
Action = () => profile?.ShowUser(sender);
}
public MenuItem[] ContextMenuItems => new MenuItem[]
{
new OsuMenuItem("View Profile", MenuItemType.Highlighted, Action),
};
}
2016-09-27 19:45:26 +08:00
}
}