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

180 lines
6.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
2017-07-19 17:22:46 +08:00
using System;
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;
using osu.Game.Graphics.Sprites;
using osu.Game.Online.Chat;
2016-09-27 19:45:26 +08:00
using OpenTK;
using OpenTK.Graphics;
2017-07-18 15:53:41 +08:00
using osu.Framework.Graphics.Effects;
2017-07-18 17:26:05 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Allocation;
2017-07-19 17:22:46 +08:00
using osu.Game.Users;
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
{
2016-11-14 16:23:33 +08:00
public readonly Message Message;
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"),
};
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;
2017-07-19 17:22:46 +08:00
private Action<User> loadProfile;
2017-07-18 17:26:05 +08:00
private Color4 customUsernameColour;
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 = padding, Right = padding };
2017-07-18 17:26:05 +08:00
}
[BackgroundDependencyLoader]
2017-07-19 17:22:46 +08:00
private void load(OsuColour colours, UserProfileOverlay profile)
2017-07-18 17:26:05 +08:00
{
customUsernameColour = colours.ChatBlue;
2017-07-19 17:22:46 +08:00
loadProfile = u => profile?.ShowUser(u);
2017-07-18 17:26:05 +08:00
}
2017-07-18 17:26:05 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2017-07-18 17:35:36 +08:00
bool hasBackground = !string.IsNullOrEmpty(Message.Sender.Colour);
2017-07-18 15:53:41 +08:00
Drawable username = new OsuSpriteText
{
Font = @"Exo2.0-BoldItalic",
2017-07-18 17:26:05 +08:00
Text = $@"{Message.Sender.Username}" + (hasBackground ? "" : ":"),
Colour = hasBackground ? customUsernameColour : username_colours[Message.UserId % 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-07-18 15:53:41 +08:00
username = username.WithEffect(new EdgeEffect
{
CornerRadius = 4,
Parameters = new EdgeEffectParameters
{
Radius = 1,
2017-07-18 17:26:05 +08:00
Colour = OsuColour.FromHex(Message.Sender.Colour),
2017-07-18 15:53:41 +08:00
Type = EdgeEffectType.Shadow,
}
}, d =>
{
2017-07-18 17:26:05 +08:00
d.Padding = new MarginPadding { Left = 3, Right = 3, Bottom = 1, Top = -3 };
d.Y = 3;
})
// Drop shadow effect
.WithEffect(new EdgeEffect
{
CornerRadius = 4,
Parameters = new EdgeEffectParameters
{
Roundness = 1,
Offset = new Vector2(0, 3),
Radius = 3,
Colour = Color4.Black.Opacity(0.3f),
Type = EdgeEffectType.Shadow,
}
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[]
{
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}",
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
},
new ClickableContainer
{
AutoSizeAxes = Axes.Both,
2016-11-14 16:23:33 +08:00
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
2017-07-19 17:22:46 +08:00
Child = username,
Action = () => loadProfile(Message.Sender),
},
2016-11-14 16:23:33 +08:00
}
},
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Left = message_padding + padding },
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
}
}
}