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-04-14 19:31:03 +08:00
|
|
|
using System;
|
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;
|
2018-12-21 16:54:12 +08:00
|
|
|
using osu.Framework.Graphics.Cursor;
|
2019-04-02 13:51:28 +08:00
|
|
|
using osu.Framework.Graphics.Effects;
|
2020-07-16 14:05:01 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-12-21 16:54:12 +08:00
|
|
|
using osu.Framework.Graphics.UserInterface;
|
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;
|
2018-12-21 16:54:12 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2019-06-03 18:54:29 +08:00
|
|
|
using osu.Game.Online.API;
|
2021-11-04 17:02:44 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2017-05-12 13:21:57 +08:00
|
|
|
using osu.Game.Online.Chat;
|
2018-12-21 16:54:12 +08:00
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
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 class ChatLine : CompositeDrawable
|
2016-09-27 19:45:26 +08:00
|
|
|
{
|
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-06-08 20:42:30 +08:00
|
|
|
public LinkFlowContainer ContentFlow { get; private set; } = null!;
|
|
|
|
|
|
|
|
protected virtual float TextSize => 20;
|
|
|
|
|
|
|
|
protected virtual float Spacing => 15;
|
|
|
|
|
|
|
|
protected virtual float UsernameWidth => 130;
|
|
|
|
|
|
|
|
private Color4 usernameColour;
|
|
|
|
|
|
|
|
private OsuSpriteText timestamp = null!;
|
|
|
|
|
|
|
|
private Message message = null!;
|
|
|
|
|
|
|
|
private OsuSpriteText username = null!;
|
|
|
|
|
|
|
|
private Container? highlight;
|
|
|
|
|
2022-11-07 10:32:13 +08:00
|
|
|
private readonly Bindable<bool> prefer24HourTime = new Bindable<bool>();
|
|
|
|
|
2022-03-05 04:21:29 +08:00
|
|
|
private bool senderHasColour => !string.IsNullOrEmpty(message.Sender.Colour);
|
|
|
|
|
2022-06-08 20:51:16 +08:00
|
|
|
private bool messageHasColour => Message.IsAction && senderHasColour;
|
|
|
|
|
2022-06-08 22:10:19 +08:00
|
|
|
[Resolved]
|
2022-06-08 20:42:30 +08:00
|
|
|
private ChannelManager? chatManager { get; set; }
|
|
|
|
|
2022-03-05 04:21:29 +08:00
|
|
|
[Resolved]
|
2022-06-08 20:42:30 +08:00
|
|
|
private OsuColour colours { get; set; } = null!;
|
|
|
|
|
|
|
|
public ChatLine(Message message)
|
|
|
|
{
|
|
|
|
Message = message;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
}
|
2019-06-20 21:37:05 +08:00
|
|
|
|
2018-12-21 16:54:12 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2022-11-07 10:32:13 +08:00
|
|
|
private void load(OverlayColourProvider? colourProvider, OsuConfigManager configManager)
|
2017-07-18 17:26:05 +08:00
|
|
|
{
|
2022-03-05 04:21:29 +08:00
|
|
|
usernameColour = senderHasColour
|
|
|
|
? Color4Extensions.FromHex(message.Sender.Colour)
|
|
|
|
: username_colours[message.Sender.Id % username_colours.Length];
|
2018-04-13 17:19:50 +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-07 10:24:54 +08:00
|
|
|
timestamp = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Shadow = false,
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
Font = OsuFont.GetFont(size: TextSize * 0.75f, weight: FontWeight.SemiBold, fixedWidth: true),
|
|
|
|
Colour = colourProvider?.Background1 ?? Colour4.White,
|
|
|
|
AlwaysPresent = true,
|
|
|
|
},
|
|
|
|
new MessageSender(message.Sender)
|
2017-08-21 16:43:26 +08:00
|
|
|
{
|
2022-11-07 10:24:54 +08:00
|
|
|
Width = UsernameWidth,
|
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,
|
|
|
|
Child = createUsername(),
|
|
|
|
Margin = new MarginPadding { Horizontal = Spacing },
|
2016-11-14 16:23:33 +08:00
|
|
|
},
|
2019-11-12 17:45:42 +08:00
|
|
|
ContentFlow = new LinkFlowContainer(t =>
|
2017-12-27 09:14:45 +08:00
|
|
|
{
|
2019-07-23 15:01:05 +08:00
|
|
|
t.Shadow = false;
|
2022-06-08 20:51:16 +08:00
|
|
|
t.Font = t.Font.With(size: TextSize, italics: Message.IsAction);
|
|
|
|
t.Colour = messageHasColour ? Color4Extensions.FromHex(message.Sender.Colour) : colourProvider?.Content1 ?? Colour4.White;
|
2017-12-27 09:14:45 +08:00
|
|
|
})
|
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-07 10:32:13 +08:00
|
|
|
|
|
|
|
configManager.BindWith(OsuSetting.Prefer24HourTime, prefer24HourTime);
|
2019-06-20 21:37:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2021-01-22 15:05:45 +08:00
|
|
|
|
|
|
|
updateMessageContent();
|
2017-08-21 16:43:26 +08:00
|
|
|
FinishTransforms(true);
|
2022-11-07 10:32:13 +08:00
|
|
|
|
2022-11-07 11:45:59 +08:00
|
|
|
prefer24HourTime.BindValueChanged(_ => updateTimestamp());
|
2017-08-21 16:43:26 +08:00
|
|
|
}
|
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,
|
|
|
|
Colour = usernameColour.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
|
|
|
|
2017-08-21 16:43:26 +08:00
|
|
|
private void updateMessageContent()
|
|
|
|
{
|
|
|
|
this.FadeTo(message is LocalEchoMessage ? 0.4f : 1.0f, 500, Easing.OutQuint);
|
|
|
|
timestamp.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-06-07 08:37:46 +08:00
|
|
|
username.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
|
|
|
|
2019-11-12 17:45:42 +08:00
|
|
|
ContentFlow.Clear();
|
|
|
|
ContentFlow.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()
|
|
|
|
{
|
|
|
|
timestamp.Text = prefer24HourTime.Value
|
|
|
|
? $@"{message.Timestamp.LocalDateTime:HH:mm:ss}"
|
|
|
|
: $@"{message.Timestamp.LocalDateTime:hh:mm:ss tt}";
|
|
|
|
}
|
|
|
|
|
2022-06-07 08:37:46 +08:00
|
|
|
private Drawable createUsername()
|
|
|
|
{
|
|
|
|
username = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Shadow = false,
|
|
|
|
Colour = senderHasColour ? colours.ChatBlue : usernameColour,
|
|
|
|
Truncate = true,
|
|
|
|
EllipsisString = "…",
|
|
|
|
Font = OsuFont.GetFont(size: TextSize, weight: FontWeight.Bold, italics: true),
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
MaxWidth = UsernameWidth,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!senderHasColour)
|
|
|
|
return username;
|
|
|
|
|
|
|
|
// Background effect
|
|
|
|
return new Container
|
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 4,
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Roundness = 1,
|
|
|
|
Radius = 1,
|
|
|
|
Colour = Color4.Black.Opacity(0.3f),
|
|
|
|
Offset = new Vector2(0, 1),
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
},
|
|
|
|
Child = new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 4,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = usernameColour,
|
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Padding = new MarginPadding { Left = 4, Right = 4, Bottom = 1, Top = -2 },
|
|
|
|
Child = username
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-11-26 01:41:18 +08:00
|
|
|
private class MessageSender : OsuClickableContainer, IHasContextMenu
|
2017-09-14 14:43:47 +08:00
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
private readonly APIUser sender;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-06-08 20:42:30 +08:00
|
|
|
private Action startChatAction = null!;
|
2018-04-14 19:31:03 +08:00
|
|
|
|
2019-06-03 18:54:29 +08:00
|
|
|
[Resolved]
|
2022-06-08 20:42:30 +08:00
|
|
|
private IAPIProvider api { get; set; } = null!;
|
2019-06-03 18:54:29 +08:00
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
public MessageSender(APIUser sender)
|
2017-09-14 14:43:47 +08:00
|
|
|
{
|
|
|
|
this.sender = sender;
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-06-08 22:10:19 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2022-07-18 11:45:00 +08:00
|
|
|
private void load(UserProfileOverlay? profile, ChannelManager? chatManager, ChatOverlay? chatOverlay)
|
2017-09-14 14:43:47 +08:00
|
|
|
{
|
|
|
|
Action = () => profile?.ShowUser(sender);
|
2022-07-18 11:45:00 +08:00
|
|
|
startChatAction = () =>
|
|
|
|
{
|
|
|
|
chatManager?.OpenPrivateChannel(sender);
|
|
|
|
chatOverlay?.Show();
|
|
|
|
};
|
2017-09-14 14:43:47 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-06-03 18:54:29 +08:00
|
|
|
public MenuItem[] ContextMenuItems
|
2017-09-14 14:43:47 +08:00
|
|
|
{
|
2019-06-03 18:54:29 +08:00
|
|
|
get
|
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
if (sender.Equals(APIUser.SYSTEM_USER))
|
2021-06-24 07:20:31 +08:00
|
|
|
return Array.Empty<MenuItem>();
|
|
|
|
|
2019-06-03 18:54:29 +08:00
|
|
|
List<MenuItem> items = new List<MenuItem>
|
|
|
|
{
|
|
|
|
new OsuMenuItem("View Profile", MenuItemType.Highlighted, Action)
|
|
|
|
};
|
|
|
|
|
2021-06-24 10:45:20 +08:00
|
|
|
if (!sender.Equals(api.LocalUser.Value))
|
2019-06-03 18:54:29 +08:00
|
|
|
items.Add(new OsuMenuItem("Start Chat", MenuItemType.Standard, startChatAction));
|
|
|
|
|
|
|
|
return items.ToArray();
|
|
|
|
}
|
|
|
|
}
|
2017-09-14 14:43:47 +08:00
|
|
|
}
|
2018-12-21 16:54:12 +08:00
|
|
|
|
|
|
|
private static readonly Color4[] username_colours =
|
|
|
|
{
|
2020-03-11 09:18:41 +08:00
|
|
|
Color4Extensions.FromHex("588c7e"),
|
|
|
|
Color4Extensions.FromHex("b2a367"),
|
|
|
|
Color4Extensions.FromHex("c98f65"),
|
|
|
|
Color4Extensions.FromHex("bc5151"),
|
|
|
|
Color4Extensions.FromHex("5c8bd6"),
|
|
|
|
Color4Extensions.FromHex("7f6ab7"),
|
|
|
|
Color4Extensions.FromHex("a368ad"),
|
|
|
|
Color4Extensions.FromHex("aa6880"),
|
|
|
|
|
|
|
|
Color4Extensions.FromHex("6fad9b"),
|
|
|
|
Color4Extensions.FromHex("f2e394"),
|
|
|
|
Color4Extensions.FromHex("f2ae72"),
|
|
|
|
Color4Extensions.FromHex("f98f8a"),
|
|
|
|
Color4Extensions.FromHex("7daef4"),
|
|
|
|
Color4Extensions.FromHex("a691f2"),
|
|
|
|
Color4Extensions.FromHex("c894d3"),
|
|
|
|
Color4Extensions.FromHex("d895b0"),
|
|
|
|
|
|
|
|
Color4Extensions.FromHex("53c4a1"),
|
|
|
|
Color4Extensions.FromHex("eace5c"),
|
|
|
|
Color4Extensions.FromHex("ea8c47"),
|
|
|
|
Color4Extensions.FromHex("fc4f4f"),
|
|
|
|
Color4Extensions.FromHex("3d94ea"),
|
|
|
|
Color4Extensions.FromHex("7760ea"),
|
|
|
|
Color4Extensions.FromHex("af52c6"),
|
|
|
|
Color4Extensions.FromHex("e25696"),
|
|
|
|
|
|
|
|
Color4Extensions.FromHex("677c66"),
|
|
|
|
Color4Extensions.FromHex("9b8732"),
|
|
|
|
Color4Extensions.FromHex("8c5129"),
|
|
|
|
Color4Extensions.FromHex("8c3030"),
|
|
|
|
Color4Extensions.FromHex("1f5d91"),
|
|
|
|
Color4Extensions.FromHex("4335a5"),
|
|
|
|
Color4Extensions.FromHex("812a96"),
|
|
|
|
Color4Extensions.FromHex("992861"),
|
2018-12-21 16:54:12 +08:00
|
|
|
};
|
2016-09-27 19:45:26 +08:00
|
|
|
}
|
|
|
|
}
|