mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
96 lines
3.2 KiB
C#
96 lines
3.2 KiB
C#
// 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;
|
|
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,
|
|
// 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 },
|
|
Children = new Drawable[]
|
|
{
|
|
flow = new FillFlowContainer<ChatLine>
|
|
{
|
|
Direction = FillDirection.Vertical,
|
|
RelativeSizeAxes = Axes.X,
|
|
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;
|
|
}
|
|
|
|
private void newMessagesArrived(IEnumerable<Message> newMessages)
|
|
{
|
|
var displayMessages = newMessages.Skip(Math.Max(0, newMessages.Count() - Channel.MAX_HISTORY));
|
|
|
|
//up to last Channel.MAX_HISTORY messages
|
|
flow.AddRange(displayMessages.Select(m => new ChatLine(m)));
|
|
|
|
if (!IsLoaded) return;
|
|
|
|
if (scroll.IsScrolledToEnd(10) || !flow.Children.Any())
|
|
scrollToEnd();
|
|
|
|
var staleMessages = flow.Children.Where(c => c.LifetimeEnd == double.MaxValue).ToArray();
|
|
int count = staleMessages.Length - Channel.MAX_HISTORY;
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
var d = staleMessages[i];
|
|
if (!scroll.IsScrolledToEnd(10))
|
|
scroll.OffsetScrollPosition(-d.DrawHeight);
|
|
d.Expire();
|
|
}
|
|
}
|
|
|
|
private void scrollToEnd() => ScheduleAfterChildren(() => scroll.ScrollToEnd());
|
|
}
|
|
}
|