osu/osu.Game/Overlays/Chat/DrawableChannel.cs

163 lines
5.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 09:19:50 +00:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
2019-06-20 14:01:39 +00:00
using osu.Framework.Allocation;
2018-11-20 07:51:59 +00:00
using osuTK.Graphics;
2018-04-13 09:19:50 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Cursor;
using osu.Game.Online.Chat;
2019-10-21 21:44:58 +00:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.Extensions.IEnumerableExtensions;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Overlays.Chat
{
2018-07-09 16:30:41 +00:00
public class DrawableChannel : Container
2018-04-13 09:19:50 +00:00
{
2018-07-09 16:30:41 +00:00
public readonly Channel Channel;
2019-06-20 14:01:39 +00:00
protected ChatLineContainer ChatLineFlow;
private OsuScrollContainer scroll;
2018-04-13 09:19:50 +00:00
2018-07-09 16:30:41 +00:00
public DrawableChannel(Channel channel)
2018-04-13 09:19:50 +00:00
{
2018-07-09 16:30:41 +00:00
Channel = channel;
2018-04-13 09:19:50 +00:00
RelativeSizeAxes = Axes.Both;
2019-06-20 14:01:39 +00:00
}
2018-04-13 09:19:50 +00:00
2019-06-20 14:01:39 +00:00
[BackgroundDependencyLoader]
private void load()
{
2019-08-14 01:53:47 +00:00
Child = new OsuContextMenuContainer
2018-04-13 09:19:50 +00:00
{
2019-08-14 01:53:47 +00:00
RelativeSizeAxes = Axes.Both,
Masking = true,
Child = scroll = new OsuScrollContainer
2018-04-13 09:19:50 +00:00
{
RelativeSizeAxes = Axes.Both,
2019-08-14 01:53:47 +00: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 },
Child = ChatLineFlow = new ChatLineContainer
2018-04-13 09:19:50 +00:00
{
2019-08-14 01:53:47 +00:00
Padding = new MarginPadding { Left = 20, Right = 20 },
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
}
},
2018-04-13 09:19:50 +00:00
};
newMessagesArrived(Channel.Messages);
Channel.NewMessagesArrived += newMessagesArrived;
Channel.MessageRemoved += messageRemoved;
Channel.PendingMessageResolved += pendingMessageResolved;
2019-06-20 14:01:39 +00:00
}
2019-06-20 14:01:39 +00:00
protected override void LoadComplete()
{
base.LoadComplete();
2018-04-13 09:19:50 +00:00
scrollToEnd();
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
2018-07-09 16:30:41 +00:00
Channel.NewMessagesArrived -= newMessagesArrived;
Channel.MessageRemoved -= messageRemoved;
Channel.PendingMessageResolved -= pendingMessageResolved;
2018-04-13 09:19:50 +00:00
}
protected virtual ChatLine CreateChatLine(Message m) => new ChatLine(m);
2019-10-21 21:44:58 +00:00
protected virtual Drawable CreateDaySeparator(DateTimeOffset time) => new Container
{
Margin = new MarginPadding { Vertical = 5 },
RelativeSizeAxes = Axes.X,
Height = 2,
Child = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
}
};
2018-04-13 09:19:50 +00:00
private void newMessagesArrived(IEnumerable<Message> newMessages)
{
2018-07-09 16:30:41 +00:00
// Add up to last Channel.MAX_HISTORY messages
var displayMessages = newMessages.Skip(Math.Max(0, newMessages.Count() - Channel.MaxHistory));
2018-04-13 09:19:50 +00:00
2019-10-21 21:44:58 +00:00
var existingChatLines = getChatLines();
Message lastMessage = existingChatLines.Any() ? existingChatLines.First().Message : null;
2018-04-13 09:19:50 +00:00
2019-10-21 21:44:58 +00:00
displayMessages.ForEach(m =>
{
if (lastMessage == null || lastMessage.Timestamp.ToLocalTime().Date != m.Timestamp.ToLocalTime().Date)
ChatLineFlow.Add(CreateDaySeparator(m.Timestamp));
ChatLineFlow.Add(CreateChatLine(m));
lastMessage = m;
});
if (scroll.IsScrolledToEnd(10) || !existingChatLines.Any() || newMessages.Any(m => m is LocalMessage))
2018-04-13 09:19:50 +00:00
scrollToEnd();
2019-10-21 21:44:58 +00:00
var staleMessages = existingChatLines.Where(c => c.LifetimeEnd == double.MaxValue).ToArray();
int count = staleMessages.Length - Channel.MaxHistory;
2018-04-13 09:19:50 +00:00
for (int i = 0; i < count; i++)
{
var d = staleMessages[i];
if (!scroll.IsScrolledToEnd(10))
scroll.OffsetScrollPosition(-d.DrawHeight);
d.Expire();
}
}
private void pendingMessageResolved(Message existing, Message updated)
{
2019-10-21 21:44:58 +00:00
var found = getChatLines().LastOrDefault(c => c.Message == existing);
2019-04-01 03:16:05 +00:00
2018-04-13 09:19:50 +00:00
if (found != null)
{
Trace.Assert(updated.Id.HasValue, "An updated message was returned with no ID.");
ChatLineFlow.Remove(found);
2018-04-13 09:19:50 +00:00
found.Message = updated;
ChatLineFlow.Add(found);
2018-04-13 09:19:50 +00:00
}
}
private void messageRemoved(Message removed)
{
2019-10-21 21:44:58 +00:00
getChatLines().FirstOrDefault(c => c.Message == removed)?.FadeColour(Color4.Red, 400).FadeOut(600).Expire();
2018-04-13 09:19:50 +00:00
}
2019-10-21 21:44:58 +00:00
private IEnumerable<ChatLine> getChatLines() => ChatLineFlow.Children.OfType<ChatLine>();
2018-04-13 09:19:50 +00:00
private void scrollToEnd() => ScheduleAfterChildren(() => scroll.ScrollToEnd());
2019-10-21 21:44:58 +00:00
protected class ChatLineContainer : FillFlowContainer
2018-04-13 09:19:50 +00:00
{
protected override int Compare(Drawable x, Drawable y)
{
2019-10-21 21:44:58 +00:00
if (x is ChatLine && y is ChatLine)
{
var xC = (ChatLine)x;
var yC = (ChatLine)y;
2018-04-13 09:19:50 +00:00
2019-10-21 21:44:58 +00:00
return xC.Message.CompareTo(yC.Message);
}
return base.Compare(x, y);
2018-04-13 09:19:50 +00:00
}
}
}
}