osu/osu.Game/Online/Chat/Drawables/ChatLine.cs

122 lines
4.3 KiB
C#
Raw Normal View History

// 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 11:45:26 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2016-11-14 08:23:33 +00:00
using osu.Framework.Graphics.Primitives;
2017-02-20 12:09:56 +00:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2016-09-27 11:45:26 +00:00
using OpenTK;
using OpenTK.Graphics;
namespace osu.Game.Online.Chat.Drawables
2016-09-27 11:45:26 +00:00
{
2016-11-14 08:23:33 +00:00
public class ChatLine : Container
2016-09-27 11:45:26 +00:00
{
2016-11-14 08:23:33 +00:00
public readonly Message Message;
2017-02-20 12:09:56 +00: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)
{
//todo: use User instead of Message when user_id is correctly populated.
return username_colours[message.UserId % username_colours.Length];
}
const float padding = 200;
2016-11-14 08:23:33 +00:00
const float text_size = 20;
2016-11-14 08:23:33 +00:00
public ChatLine(Message message)
{
2017-02-09 13:18:08 +00:00
Message = message;
2016-11-14 08:23:33 +00:00
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
2016-09-27 11:45:26 +00:00
Padding = new MarginPadding { Left = 15, Right = 15 };
2016-11-14 08:23:33 +00:00
Children = new Drawable[]
{
new Container
2016-09-27 11:45:26 +00:00
{
2016-11-14 08:23:33 +00:00
Size = new Vector2(padding, text_size),
Children = new Drawable[]
{
new OsuSpriteText
2016-11-14 08:23:33 +00:00
{
2017-02-20 12:09:56 +00:00
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Font = @"Exo2.0-SemiBold",
Text = $@"{Message.Timestamp.LocalDateTime:hh:mm:ss}",
FixedWidth = true,
2017-02-20 12:09:56 +00:00
TextSize = text_size * 0.75f,
Alpha = 0.4f,
2016-11-14 08:23:33 +00:00
},
new OsuSpriteText
{
Font = @"Exo2.0-BoldItalic",
Text = $@"{Message.User.Name}:",
2017-02-20 12:09:56 +00:00
Colour = getUsernameColour(Message),
2016-11-14 08:23:33 +00:00
TextSize = text_size,
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
}
2016-11-14 08:23:33 +00:00
}
},
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Left = padding + 15 },
2016-11-14 08:23:33 +00:00
Children = new Drawable[]
{
new OsuSpriteText
{
2016-11-14 08:23:33 +00:00
Text = Message.Content,
TextSize = text_size,
2016-11-16 02:51:39 +00:00
AutoSizeAxes = Axes.Y,
2016-11-14 08:23:33 +00:00
RelativeSizeAxes = Axes.X,
}
}
2016-11-14 08:23:33 +00:00
}
};
2016-09-27 11:45:26 +00:00
}
}
}