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

330 lines
11 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;
2018-04-13 17:19:50 +08:00
using System.Linq;
using System.Collections.Generic;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
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;
using osu.Framework.Graphics.UserInterface;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
2018-04-13 17:19:50 +08:00
using osu.Game.Online.Chat;
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Chat
{
public class ChatLine : CompositeDrawable
2018-04-13 17:19:50 +08:00
{
protected virtual float TextSize => 20;
protected virtual float Spacing => 15;
2018-04-13 17:19:50 +08:00
protected virtual float TimestampWidth => 60;
2018-04-13 17:19:50 +08:00
protected virtual float UsernameWidth => 130;
2018-04-13 17:19:50 +08:00
2022-03-05 04:21:29 +08:00
private Color4 usernameColour;
2018-04-13 17:19:50 +08:00
private OsuSpriteText timestamp;
public ChatLine(Message message)
{
Message = message;
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
}
[Resolved(CanBeNull = true)]
private ChannelManager chatManager { get; set; }
2018-04-13 17:19:50 +08:00
private Message message;
private OsuSpriteText username;
2019-11-12 17:45:42 +08:00
public LinkFlowContainer ContentFlow { get; private set; }
2018-04-13 17:19:50 +08:00
public Message Message
{
get => message;
set
{
if (message == value) return;
message = MessageFormatter.FormatMessage(value);
if (!IsLoaded)
return;
updateMessageContent();
}
}
2022-03-05 04:21:29 +08:00
private bool senderHasColour => !string.IsNullOrEmpty(message.Sender.Colour);
[Resolved]
private OsuColour colours { get; set; }
[BackgroundDependencyLoader]
2022-03-05 04:21:29 +08:00
private void load()
2018-04-13 17:19:50 +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
InternalChild = new GridContainer
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) },
ColumnDimensions = new[]
2018-04-13 17:19:50 +08:00
{
new Dimension(GridSizeMode.Absolute, TimestampWidth + Spacing + UsernameWidth + Spacing),
new Dimension(),
},
Content = new[]
{
new Drawable[]
2018-04-13 17:19:50 +08:00
{
new Container
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Children = new Drawable[]
2020-07-16 14:05:01 +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),
MaxWidth = TimestampWidth,
},
new MessageSender(message.Sender)
{
Width = UsernameWidth,
AutoSizeAxes = Axes.Y,
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
Child = createUsername(),
Margin = new MarginPadding { Horizontal = Spacing },
},
2020-07-16 14:05:01 +08:00
},
2018-04-13 17:19:50 +08:00
},
2019-11-12 17:45:42 +08:00
ContentFlow = new LinkFlowContainer(t =>
2018-04-13 17:19:50 +08:00
{
2019-07-23 15:01:05 +08:00
t.Shadow = false;
2018-04-13 17:19:50 +08:00
if (Message.IsAction)
{
2019-02-20 15:52:36 +08:00
t.Font = OsuFont.GetFont(italics: true);
2018-04-13 17:19:50 +08:00
2022-03-05 04:21:29 +08:00
if (senderHasColour)
t.Colour = Color4Extensions.FromHex(message.Sender.Colour);
2018-04-13 17:19:50 +08:00
}
t.Font = t.Font.With(size: TextSize);
2018-04-13 17:19:50 +08:00
})
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
}
},
2018-04-13 17:19:50 +08:00
}
};
}
protected override void LoadComplete()
{
base.LoadComplete();
updateMessageContent();
2018-04-13 17:19:50 +08:00
FinishTransforms(true);
}
private Container highlight;
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 = 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
2018-04-13 17:19:50 +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);
timestamp.Text = $@"{message.Timestamp.LocalDateTime:HH:mm:ss}";
username.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
2019-11-12 17:45:42 +08:00
ContentFlow.Clear();
ContentFlow.AddLinks(message.DisplayContent, message.Links);
2018-04-13 17:19:50 +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
}
}
}
};
}
2018-04-13 17:19:50 +08:00
private class MessageSender : OsuClickableContainer, IHasContextMenu
{
private readonly APIUser sender;
2018-04-13 17:19:50 +08:00
private Action startChatAction;
[Resolved]
private IAPIProvider api { get; set; }
public MessageSender(APIUser sender)
2018-04-13 17:19:50 +08:00
{
this.sender = sender;
}
[BackgroundDependencyLoader(true)]
private void load(UserProfileOverlay profile, ChannelManager chatManager)
2018-04-13 17:19:50 +08:00
{
Action = () => profile?.ShowUser(sender);
2018-07-24 11:14:47 +08:00
startChatAction = () => chatManager?.OpenPrivateChannel(sender);
2018-04-13 17:19:50 +08:00
}
public MenuItem[] ContextMenuItems
2018-04-13 17:19:50 +08:00
{
get
{
if (sender.Equals(APIUser.SYSTEM_USER))
return Array.Empty<MenuItem>();
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))
items.Add(new OsuMenuItem("Start Chat", MenuItemType.Standard, startChatAction));
return items.ToArray();
}
}
2018-04-13 17:19:50 +08:00
}
private static readonly Color4[] username_colours =
{
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-04-13 17:19:50 +08:00
}
}