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

93 lines
2.9 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Containers;
using osu.Game.Online.Chat;
namespace osu.Game.Overlays.Chat
{
public class DrawableChannel : Container
{
public readonly Channel Channel;
2017-05-17 19:26:07 +00:00
private readonly FillFlowContainer<ChatLine> flow;
private readonly ScrollContainer scroll;
public DrawableChannel(Channel channel)
{
Channel = channel;
RelativeSizeAxes = Axes.Both;
Children = new Drawable[]
{
scroll = new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
2017-05-17 19:26:07 +00:00
flow = new FillFlowContainer<ChatLine>
{
2017-03-04 10:00:17 +00:00
Direction = FillDirection.Vertical,
RelativeSizeAxes = Axes.X,
2016-10-22 09:05:46 +00:00
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Left = 20, Right = 20 }
}
}
}
};
channel.NewMessagesArrived += newMessagesArrived;
}
[BackgroundDependencyLoader]
private void load()
{
newMessagesArrived(Channel.Messages);
}
protected override void LoadComplete()
{
base.LoadComplete();
scrollToEnd();
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
Channel.NewMessagesArrived -= newMessagesArrived;
}
2017-02-19 09:02:25 +00:00
private void newMessagesArrived(IEnumerable<Message> newMessages)
{
var displayMessages = newMessages.Skip(Math.Max(0, newMessages.Count() - Channel.MAX_HISTORY));
2017-05-17 19:26:07 +00:00
//up to last Channel.MAX_HISTORY messages
2017-07-11 13:58:06 +00:00
flow.AddRange(displayMessages.Select(m => new ChatLine(m)));
2017-05-17 19:26:07 +00:00
if (!IsLoaded) return;
2017-02-21 06:46:04 +00:00
if (scroll.IsScrolledToEnd(10) || !flow.Children.Any())
scrollToEnd();
2017-05-17 19:26:07 +00:00
var staleMessages = flow.Children.Where(c => c.LifetimeEnd == double.MaxValue).ToArray();
int count = staleMessages.Length - Channel.MAX_HISTORY;
2017-02-19 09:07:35 +00:00
2017-05-17 19:26:07 +00:00
for (int i = 0; i < count; i++)
{
2017-05-17 19:26:07 +00:00
var d = staleMessages[i];
2017-02-21 06:46:04 +00:00
if (!scroll.IsScrolledToEnd(10))
scroll.OffsetScrollPosition(-d.DrawHeight);
d.Expire();
}
}
2017-06-08 05:51:22 +00:00
private void scrollToEnd() => ScheduleAfterChildren(() => scroll.ScrollToEnd());
}
}