2019-01-24 16:43:03 +08:00
|
|
|
// 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
|
|
|
|
2018-01-30 16:43:19 +08:00
|
|
|
using System.Linq;
|
2019-06-03 18:54:29 +08:00
|
|
|
using System.Collections.Generic;
|
2017-08-21 16:43:26 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-11-07 10:32:13 +08:00
|
|
|
using osu.Framework.Bindables;
|
2017-08-21 16:43:26 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
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;
|
2022-11-07 10:32:13 +08:00
|
|
|
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;
|
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;
|
2022-11-29 09:50:12 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-05-12 13:21:57 +08:00
|
|
|
namespace osu.Game.Overlays.Chat
|
2016-09-27 19:45:26 +08:00
|
|
|
{
|
2018-12-21 16:54:12 +08:00
|
|
|
public partial class ChatLine : CompositeDrawable
|
2016-09-27 19:45:26 +08:00
|
|
|
{
|
2022-11-29 09:50:12 +08:00
|
|
|
private Message message = null!;
|
|
|
|
|
2017-08-21 16:43:26 +08:00
|
|
|
public Message Message
|
|
|
|
{
|
2017-12-31 07:51:47 +08:00
|
|
|
get => message;
|
2017-08-21 16:43:26 +08:00
|
|
|
set
|
|
|
|
{
|
|
|
|
if (message == value) return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-12-05 02:31:48 +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
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
public IReadOnlyCollection<Drawable> DrawableContentFlow => drawableContentFlow;
|
2022-06-08 20:42:30 +08:00
|
|
|
|
2022-11-29 09:50:12 +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;
|
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
[Resolved]
|
|
|
|
private ChannelManager? chatManager { get; set; }
|
2022-06-08 20:42:30 +08:00
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
[Resolved]
|
|
|
|
private OverlayColourProvider? colourProvider { get; set; }
|
2022-06-08 20:42:30 +08:00
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
private readonly OsuSpriteText drawableTimestamp;
|
2022-06-08 20:42:30 +08:00
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
private readonly DrawableUsername drawableUsername;
|
2022-11-22 16:31:22 +08:00
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
private readonly LinkFlowContainer drawableContentFlow;
|
2022-06-08 20:42:30 +08:00
|
|
|
|
2022-11-07 10:32:13 +08:00
|
|
|
private readonly Bindable<bool> prefer24HourTime = new Bindable<bool>();
|
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
private Container? highlight;
|
2022-06-08 20:42:30 +08:00
|
|
|
|
|
|
|
public ChatLine(Message message)
|
|
|
|
{
|
|
|
|
Message = message;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2022-11-22 16:31:22 +08:00
|
|
|
|
2022-06-07 08:37:46 +08:00
|
|
|
InternalChild = new GridContainer
|
2017-07-18 15:53:41 +08:00
|
|
|
{
|
2022-06-07 08:37:46 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) },
|
|
|
|
ColumnDimensions = new[]
|
2017-07-18 17:26:05 +08:00
|
|
|
{
|
2022-11-07 10:24:54 +08:00
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
new Dimension(GridSizeMode.Absolute, Spacing + UsernameWidth + Spacing),
|
2022-06-07 08:37:46 +08:00
|
|
|
new Dimension(),
|
|
|
|
},
|
|
|
|
Content = new[]
|
|
|
|
{
|
|
|
|
new Drawable[]
|
2017-08-21 16:43:26 +08:00
|
|
|
{
|
2022-11-29 09:50:12 +08:00
|
|
|
drawableTimestamp = new OsuSpriteText
|
2022-11-07 10:24:54 +08:00
|
|
|
{
|
|
|
|
Shadow = false,
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
2022-11-29 09:50:12 +08:00
|
|
|
Font = OsuFont.GetFont(size: FontSize * 0.75f, weight: FontWeight.SemiBold, fixedWidth: true),
|
2022-11-07 10:24:54 +08:00
|
|
|
AlwaysPresent = true,
|
|
|
|
},
|
2022-11-29 09:50:12 +08:00
|
|
|
drawableUsername = new DrawableUsername(message.Sender)
|
2017-08-21 16:43:26 +08:00
|
|
|
{
|
2022-11-07 10:24:54 +08:00
|
|
|
Width = UsernameWidth,
|
2022-11-29 09:50:12 +08:00
|
|
|
FontSize = FontSize,
|
2022-06-07 08:37:46 +08:00
|
|
|
AutoSizeAxes = Axes.Y,
|
2022-11-07 10:24:54 +08:00
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Margin = new MarginPadding { Horizontal = Spacing },
|
2016-11-14 16:23:33 +08:00
|
|
|
},
|
2022-11-29 09:50:12 +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-10-08 22:25:38 +08:00
|
|
|
}
|
2022-06-07 08:37:46 +08:00
|
|
|
},
|
2016-11-14 16:23:33 +08:00
|
|
|
}
|
|
|
|
};
|
2022-11-29 09:50:12 +08:00
|
|
|
}
|
2022-11-07 10:32:13 +08:00
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuConfigManager configManager)
|
|
|
|
{
|
2022-11-07 10:32:13 +08:00
|
|
|
configManager.BindWith(OsuSetting.Prefer24HourTime, prefer24HourTime);
|
2022-11-29 09:50:12 +08:00
|
|
|
prefer24HourTime.BindValueChanged(_ => updateTimestamp());
|
2019-06-20 21:37:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2021-01-22 15:05:45 +08:00
|
|
|
|
2022-11-29 09:50:12 +08:00
|
|
|
drawableTimestamp.Colour = colourProvider?.Background1 ?? Colour4.White;
|
|
|
|
|
2021-01-22 15:05:45 +08:00
|
|
|
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>
|
2022-03-10 08:47:48 +08:00
|
|
|
/// Performs a highlight animation on this <see cref="ChatLine"/>.
|
2022-03-05 04:21:29 +08:00
|
|
|
/// </summary>
|
2022-03-10 08:47:48 +08:00
|
|
|
public void Highlight()
|
|
|
|
{
|
|
|
|
if (highlight?.IsAlive != true)
|
|
|
|
{
|
|
|
|
AddInternal(highlight = new Container
|
|
|
|
{
|
|
|
|
CornerRadius = 2f,
|
|
|
|
Masking = true,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2022-11-30 15:07:21 +08:00
|
|
|
Colour = drawableUsername.AccentColour.Darken(1f),
|
2022-03-10 08:47:48 +08:00
|
|
|
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
|
|
|
|
2022-11-29 09:50:12 +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);
|
2022-11-29 09:50:12 +08:00
|
|
|
drawableTimestamp.FadeTo(message is LocalEchoMessage ? 0 : 1, 500, Easing.OutQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-11-07 10:32:13 +08:00
|
|
|
updateTimestamp();
|
2022-11-29 09:50:12 +08:00
|
|
|
drawableUsername.Text = $@"{message.Sender.Username}";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-01-12 01:51:20 +08:00
|
|
|
// remove non-existent channels from the link list
|
2021-11-08 13:17:47 +08:00
|
|
|
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
|
|
|
|
2022-11-29 09:50:12 +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
|
|
|
|
2022-11-07 10:32:13 +08:00
|
|
|
private void updateTimestamp()
|
|
|
|
{
|
2022-11-29 09:50:12 +08:00
|
|
|
drawableTimestamp.Text = prefer24HourTime.Value
|
2022-11-07 10:32:13 +08:00
|
|
|
? $@"{message.Timestamp.LocalDateTime:HH:mm:ss}"
|
|
|
|
: $@"{message.Timestamp.LocalDateTime:hh:mm:ss tt}";
|
|
|
|
}
|
2016-09-27 19:45:26 +08:00
|
|
|
}
|
|
|
|
}
|