2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 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 osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-02-20 20:09:56 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-01-31 17:53:52 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2017-05-12 13:21:57 +08:00
|
|
|
|
using osu.Game.Online.Chat;
|
2016-09-27 19:45:26 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
|
2017-05-12 13:21:57 +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
|
|
|
|
{
|
2016-11-14 16:23:33 +08:00
|
|
|
|
public readonly Message Message;
|
2016-09-28 15:33:20 +08:00
|
|
|
|
|
2017-02-20 20:09:56 +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"),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private Color4 getUsernameColour(Message message)
|
|
|
|
|
{
|
2017-04-19 18:07:38 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(message.Sender?.Colour))
|
|
|
|
|
return OsuColour.FromHex(message.Sender.Colour);
|
|
|
|
|
|
2017-02-20 20:09:56 +08:00
|
|
|
|
//todo: use User instead of Message when user_id is correctly populated.
|
|
|
|
|
return username_colours[message.UserId % username_colours.Length];
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-12 13:21:57 +08:00
|
|
|
|
public const float LEFT_PADDING = message_padding + padding * 2;
|
|
|
|
|
|
|
|
|
|
private const float padding = 15;
|
|
|
|
|
private const float message_padding = 200;
|
2017-03-07 09:59:19 +08:00
|
|
|
|
private const float text_size = 20;
|
2016-10-08 22:25:38 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
public ChatLine(Message message)
|
|
|
|
|
{
|
2017-02-09 21:18:08 +08:00
|
|
|
|
Message = message;
|
2016-11-13 01:34:36 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2016-09-27 19:45:26 +08:00
|
|
|
|
|
2017-05-12 13:21:57 +08:00
|
|
|
|
Padding = new MarginPadding { Left = padding, Right = padding };
|
2017-02-19 16:06:41 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
2016-09-27 19:45:26 +08:00
|
|
|
|
{
|
2017-05-12 13:21:57 +08:00
|
|
|
|
Size = new Vector2(message_padding, text_size),
|
2016-11-14 16:23:33 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-08 22:25:38 +08:00
|
|
|
|
{
|
2017-01-31 17:53:52 +08:00
|
|
|
|
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",
|
2017-04-20 16:10:05 +08:00
|
|
|
|
Text = $@"{Message.Timestamp.LocalDateTime:HH:mm:ss}",
|
2017-02-19 16:06:41 +08:00
|
|
|
|
FixedWidth = true,
|
2017-02-20 20:09:56 +08:00
|
|
|
|
TextSize = text_size * 0.75f,
|
|
|
|
|
Alpha = 0.4f,
|
2016-11-14 16:23:33 +08:00
|
|
|
|
},
|
2017-01-31 17:53:52 +08:00
|
|
|
|
new OsuSpriteText
|
2016-10-08 22:25:38 +08:00
|
|
|
|
{
|
2017-02-19 16:06:41 +08:00
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
2017-04-19 18:07:38 +08:00
|
|
|
|
Text = $@"{Message.Sender.Username}:",
|
2017-02-20 20:09:56 +08:00
|
|
|
|
Colour = getUsernameColour(Message),
|
2016-11-14 16:23:33 +08:00
|
|
|
|
TextSize = text_size,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
2016-10-08 22:25:38 +08:00
|
|
|
|
}
|
2016-11-14 16:23:33 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2017-05-12 13:21:57 +08:00
|
|
|
|
Padding = new MarginPadding { Left = message_padding + padding },
|
2016-11-14 16:23:33 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-08 22:25:38 +08:00
|
|
|
|
{
|
2017-01-31 17:53:52 +08:00
|
|
|
|
new OsuSpriteText
|
2016-10-08 22:25:38 +08:00
|
|
|
|
{
|
2016-11-14 16:23:33 +08:00
|
|
|
|
Text = Message.Content,
|
|
|
|
|
TextSize = text_size,
|
2016-11-16 10:51:39 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2016-11-14 16:23:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2016-10-08 22:25:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-14 16:23:33 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2016-09-27 19:45:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|