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

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

205 lines
7.5 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
2022-06-17 15:37:17 +08:00
#nullable disable
using System;
using System.Collections.Generic;
2017-08-21 16:43:26 +08:00
using System.Diagnostics;
using System.Linq;
2019-06-20 22:01:39 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Cursor;
using osu.Game.Online.Chat;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Chat
{
2018-07-10 00:30:41 +08:00
public class DrawableChannel : Container
{
2018-07-10 00:30:41 +08:00
public readonly Channel Channel;
2019-10-22 08:11:19 +08:00
protected FillFlowContainer ChatLineFlow;
private ChannelScrollContainer scroll;
2018-04-13 17:19:50 +08:00
private bool scrollbarVisible = true;
public bool ScrollbarVisible
{
set
{
if (scrollbarVisible == value) return;
scrollbarVisible = value;
if (scroll != null)
scroll.ScrollbarVisible = value;
}
}
2018-07-10 00:30:41 +08:00
public DrawableChannel(Channel channel)
{
2018-07-10 00:30:41 +08:00
Channel = channel;
RelativeSizeAxes = Axes.Both;
2019-06-20 22:01:39 +08:00
}
2018-04-13 17:19:50 +08:00
private Bindable<Message> highlightedMessage;
2019-06-20 22:01:39 +08:00
[BackgroundDependencyLoader]
2020-01-20 00:56:01 +08:00
private void load()
2019-06-20 22:01:39 +08:00
{
2019-08-14 09:53:47 +08:00
Child = new OsuContextMenuContainer
{
2019-08-14 09:53:47 +08:00
RelativeSizeAxes = Axes.Both,
Masking = true,
Child = scroll = new ChannelScrollContainer
{
ScrollbarVisible = scrollbarVisible,
RelativeSizeAxes = Axes.Both,
2019-08-14 09:53:47 +08:00
// Some chat lines have effects that slightly protrude to the bottom,
// which we do not want to mask away, hence the padding.
Padding = new MarginPadding { Bottom = 5 },
2019-10-22 08:11:19 +08:00
Child = ChatLineFlow = new FillFlowContainer
{
Padding = new MarginPadding { Horizontal = 10 },
2019-08-14 09:53:47 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
}
},
};
newMessagesArrived(Channel.Messages);
Channel.NewMessagesArrived += newMessagesArrived;
Channel.MessageRemoved += messageRemoved;
Channel.PendingMessageResolved += pendingMessageResolved;
}
protected override void LoadComplete()
{
base.LoadComplete();
highlightedMessage = Channel.HighlightedMessage.GetBoundCopy();
highlightedMessage.BindValueChanged(_ => processMessageHighlighting(), true);
}
2022-03-05 04:21:29 +08:00
/// <summary>
/// Processes any pending message in <see cref="highlightedMessage"/>.
/// </summary>
// ScheduleAfterChildren is for ensuring the scroll flow has updated with any new chat lines.
private void processMessageHighlighting() => SchedulerAfterChildren.AddOnce(() =>
{
if (highlightedMessage.Value == null)
return;
var chatLine = chatLines.FirstOrDefault(c => c.Message.Equals(highlightedMessage.Value));
if (chatLine == null)
return;
float center = scroll.GetChildPosInContent(chatLine, chatLine.DrawSize / 2) - scroll.DisplayableContent / 2;
scroll.ScrollTo(Math.Clamp(center, 0, scroll.ScrollableExtent));
chatLine.Highlight();
highlightedMessage.Value = null;
});
2022-03-05 04:21:29 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
2018-04-13 17:19:50 +08:00
2018-07-10 00:30:41 +08:00
Channel.NewMessagesArrived -= newMessagesArrived;
Channel.MessageRemoved -= messageRemoved;
Channel.PendingMessageResolved -= pendingMessageResolved;
}
2018-04-13 17:19:50 +08:00
protected virtual ChatLine CreateChatLine(Message m) => new ChatLine(m);
protected virtual DaySeparator CreateDaySeparator(DateTimeOffset time) => new DaySeparator(time);
2019-10-22 05:44:58 +08:00
private void newMessagesArrived(IEnumerable<Message> newMessages) => Schedule(() =>
{
if (newMessages.Min(m => m.Id) < chatLines.Max(c => c.Message.Id))
{
// there is a case (on initial population) that we may receive past messages and need to reorder.
// easiest way is to just combine messages and recreate drawables (less worrying about day separators etc.)
newMessages = newMessages.Concat(chatLines.Select(c => c.Message)).OrderBy(m => m.Id).ToList();
ChatLineFlow.Clear();
}
2019-10-29 13:33:05 +08:00
2018-07-10 00:30:41 +08:00
// Add up to last Channel.MAX_HISTORY messages
var displayMessages = newMessages.Skip(Math.Max(0, newMessages.Count() - Channel.MAX_HISTORY));
2018-04-13 17:19:50 +08:00
2019-10-22 23:14:22 +08:00
Message lastMessage = chatLines.LastOrDefault()?.Message;
2018-04-13 17:19:50 +08:00
2019-10-22 23:16:17 +08:00
foreach (var message in displayMessages)
2019-10-22 05:44:58 +08:00
{
addDaySeparatorIfRequired(lastMessage, message);
2019-10-22 05:44:58 +08:00
2019-10-22 23:16:17 +08:00
ChatLineFlow.Add(CreateChatLine(message));
lastMessage = message;
}
2018-04-13 17:19:50 +08:00
2019-10-22 23:14:22 +08:00
var staleMessages = chatLines.Where(c => c.LifetimeEnd == double.MaxValue).ToArray();
int count = staleMessages.Length - Channel.MAX_HISTORY;
2018-04-13 17:19:50 +08:00
2019-10-29 14:45:41 +08:00
if (count > 0)
{
2019-10-29 14:45:41 +08:00
void expireAndAdjustScroll(Drawable d)
{
scroll.OffsetScrollPosition(-d.DrawHeight);
2019-10-29 14:45:41 +08:00
d.Expire();
}
for (int i = 0; i < count; i++)
expireAndAdjustScroll(staleMessages[i]);
// remove all adjacent day separators after stale message removal
for (int i = 0; i < ChatLineFlow.Count - 1; i++)
{
if (!(ChatLineFlow[i] is DaySeparator)) break;
if (!(ChatLineFlow[i + 1] is DaySeparator)) break;
expireAndAdjustScroll(ChatLineFlow[i]);
}
}
2019-10-29 13:33:05 +08:00
// due to the scroll adjusts from old messages removal above, a scroll-to-end must be enforced,
// to avoid making the container think the user has scrolled back up and unwantedly disable auto-scrolling.
if (newMessages.Any(m => m is LocalMessage))
scroll.ScrollToEnd();
processMessageHighlighting();
});
private void pendingMessageResolved(Message existing, Message updated) => Schedule(() =>
{
var found = chatLines.LastOrDefault(c => c.Message == existing);
if (found != null)
{
Trace.Assert(updated.Id.HasValue, "An updated message was returned with no ID.");
ChatLineFlow.Remove(found, false);
found.Message = updated;
addDaySeparatorIfRequired(chatLines.LastOrDefault()?.Message, updated);
ChatLineFlow.Add(found);
}
});
private void addDaySeparatorIfRequired(Message lastMessage, Message message)
{
if (lastMessage == null || lastMessage.Timestamp.ToLocalTime().Date != message.Timestamp.ToLocalTime().Date)
ChatLineFlow.Add(CreateDaySeparator(message.Timestamp));
}
private void messageRemoved(Message removed) => Schedule(() =>
{
chatLines.FirstOrDefault(c => c.Message == removed)?.FadeColour(Color4.Red, 400).FadeOut(600).Expire();
});
2018-04-13 17:19:50 +08:00
2019-10-22 23:14:22 +08:00
private IEnumerable<ChatLine> chatLines => ChatLineFlow.Children.OfType<ChatLine>();
}
}