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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

183 lines
6.3 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System.Linq;
using System.Collections.Generic;
2017-08-21 16:43:26 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2017-08-21 16:43:26 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Extensions.LocalisationExtensions;
2016-09-27 19:45:26 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2020-07-16 14:05:01 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Game.Configuration;
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;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Chat
2016-09-27 19:45:26 +08:00
{
public partial class ChatLine : CompositeDrawable
2016-09-27 19:45:26 +08:00
{
private Message message = null!;
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;
2018-04-13 17:19:50 +08:00
message = MessageFormatter.FormatMessage(value);
2018-04-13 17:19:50 +08:00
2017-08-21 16:43:26 +08:00
if (!IsLoaded)
return;
2018-04-13 17:19:50 +08:00
2017-08-21 16:43:26 +08:00
updateMessageContent();
}
}
2018-04-13 17:19:50 +08:00
public IReadOnlyCollection<Drawable> DrawableContentFlow => drawableContentFlow;
2022-06-08 20:42:30 +08:00
protected virtual float FontSize => 20;
2022-06-08 20:42:30 +08:00
protected virtual float Spacing => 15;
protected virtual float UsernameWidth => 130;
[Resolved]
private ChannelManager? chatManager { get; set; }
2022-06-08 20:42:30 +08:00
[Resolved]
private OverlayColourProvider? colourProvider { get; set; }
2022-06-08 20:42:30 +08:00
private readonly OsuSpriteText drawableTimestamp;
2022-06-08 20:42:30 +08:00
private readonly DrawableUsername drawableUsername;
private readonly LinkFlowContainer drawableContentFlow;
2022-06-08 20:42:30 +08:00
private readonly Bindable<bool> prefer24HourTime = new Bindable<bool>();
private Container? highlight;
2022-06-08 20:42:30 +08:00
public ChatLine(Message message)
{
Message = message;
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
InternalChild = new GridContainer
2017-07-18 15:53:41 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) },
ColumnDimensions = new[]
2017-07-18 17:26:05 +08:00
{
new Dimension(GridSizeMode.AutoSize),
new Dimension(GridSizeMode.Absolute, Spacing + UsernameWidth + Spacing),
new Dimension(),
},
Content = new[]
{
new Drawable[]
2017-08-21 16:43:26 +08:00
{
drawableTimestamp = new OsuSpriteText
{
Shadow = false,
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Font = OsuFont.GetFont(size: FontSize * 0.75f, weight: FontWeight.SemiBold, fixedWidth: true),
AlwaysPresent = true,
},
drawableUsername = new DrawableUsername(message.Sender)
2017-08-21 16:43:26 +08:00
{
Width = UsernameWidth,
FontSize = FontSize,
AutoSizeAxes = Axes.Y,
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
Margin = new MarginPadding { Horizontal = Spacing },
2016-11-14 16:23:33 +08:00
},
drawableContentFlow = new LinkFlowContainer(styleMessageContent)
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
}
};
}
[BackgroundDependencyLoader]
private void load(OsuConfigManager configManager)
{
configManager.BindWith(OsuSetting.Prefer24HourTime, prefer24HourTime);
prefer24HourTime.BindValueChanged(_ => updateTimestamp());
}
protected override void LoadComplete()
{
base.LoadComplete();
drawableTimestamp.Colour = colourProvider?.Background1 ?? Colour4.White;
updateMessageContent();
2017-08-21 16:43:26 +08:00
FinishTransforms(true);
}
2018-04-13 17:19:50 +08:00
2022-03-05 04:21:29 +08:00
/// <summary>
/// Performs a highlight animation on this <see cref="ChatLine"/>.
2022-03-05 04:21:29 +08:00
/// </summary>
public void Highlight()
{
if (highlight?.IsAlive != true)
{
AddInternal(highlight = new Container
{
CornerRadius = 2f,
Masking = true,
RelativeSizeAxes = Axes.Both,
Colour = drawableUsername.AccentColour.Darken(1f),
Depth = float.MaxValue,
Child = new Box { RelativeSizeAxes = Axes.Both }
});
}
highlight.FadeTo(0.5f).FadeOut(1500, Easing.InQuint);
highlight.Expire();
}
2022-03-05 04:21:29 +08:00
private void styleMessageContent(SpriteText text)
{
text.Shadow = false;
text.Font = text.Font.With(size: FontSize, italics: Message.IsAction);
bool messageHasColour = Message.IsAction && !string.IsNullOrEmpty(message.Sender.Colour);
text.Colour = messageHasColour ? Color4Extensions.FromHex(message.Sender.Colour) : colourProvider?.Content1 ?? Colour4.White;
}
2017-08-21 16:43:26 +08:00
private void updateMessageContent()
{
this.FadeTo(message is LocalEchoMessage ? 0.4f : 1.0f, 500, Easing.OutQuint);
drawableTimestamp.FadeTo(message is LocalEchoMessage ? 0 : 1, 500, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
updateTimestamp();
drawableUsername.Text = $@"{message.Sender.Username}";
2018-04-13 17:19:50 +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.ToString()) != true);
2018-04-13 17:19:50 +08:00
drawableContentFlow.Clear();
drawableContentFlow.AddLinks(message.DisplayContent, message.Links);
2016-09-27 19:45:26 +08:00
}
2018-04-13 17:19:50 +08:00
private void updateTimestamp()
{
drawableTimestamp.Text = message.Timestamp.LocalDateTime.ToLocalisableString(prefer24HourTime.Value ? @"HH:mm:ss" : @"hh:mm:ss tt");
}
2016-09-27 19:45:26 +08:00
}
}