1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 22:27:25 +08:00
osu-lazer/osu.Game/Online/Chat/Drawables/ChatLine.cs

73 lines
2.4 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 19:45:26 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2016-11-14 16:23:33 +08:00
using osu.Framework.Graphics.Primitives;
using osu.Game.Graphics.Sprites;
2016-09-27 19:45:26 +08:00
using OpenTK;
using OpenTK.Graphics;
namespace osu.Game.Online.Chat.Drawables
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;
const float padding = 250;
2016-11-14 16:23:33 +08:00
const float text_size = 20;
2016-11-14 16:23:33 +08:00
public ChatLine(Message message)
{
2017-02-09 21:18:08 +08:00
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 = 15, Right = 15 };
2016-11-14 16:23:33 +08:00
Children = new Drawable[]
{
new Container
2016-09-27 19:45:26 +08:00
{
2016-11-14 16:23:33 +08:00
Size = new Vector2(padding, text_size),
Children = new Drawable[]
{
new OsuSpriteText
2016-11-14 16:23:33 +08:00
{
Text = $@"{Message.Timestamp.LocalDateTime:hh:mm:ss}",
FixedWidth = true,
2016-11-14 16:23:33 +08:00
TextSize = text_size,
Colour = Color4.Gray
2016-11-14 16:23:33 +08:00
},
new OsuSpriteText
{
Font = @"Exo2.0-BoldItalic",
Text = $@"{Message.User.Name}:",
2016-11-14 16:23:33 +08:00
TextSize = text_size,
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
}
2016-11-14 16:23:33 +08:00
}
},
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Left = padding + 15 },
2016-11-14 16:23:33 +08:00
Children = new Drawable[]
{
new OsuSpriteText
{
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-11-14 16:23:33 +08:00
}
};
2016-09-27 19:45:26 +08:00
}
}
}