2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-07 21:51:10 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2016-11-30 14:15:43 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-10-07 21:51:10 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-01-31 17:53:52 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2016-10-07 21:51:10 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
|
2016-11-30 14:15:43 +08:00
|
|
|
|
namespace osu.Game.Online.Chat.Drawables
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
2017-02-19 16:06:41 +08:00
|
|
|
|
public class DrawableChannel : Container
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly Channel channel;
|
|
|
|
|
private FlowContainer flow;
|
2017-02-19 17:07:35 +08:00
|
|
|
|
private ScrollContainer scroll;
|
2016-10-07 21:51:10 +08:00
|
|
|
|
|
2017-02-19 16:06:41 +08:00
|
|
|
|
public DrawableChannel(Channel channel)
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
|
|
|
|
this.channel = channel;
|
2017-02-19 17:02:25 +08:00
|
|
|
|
newMessagesArrived(channel.Messages);
|
|
|
|
|
channel.NewMessagesArrived += newMessagesArrived;
|
2016-10-07 21:51:10 +08:00
|
|
|
|
|
2016-10-07 23:43:06 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2016-10-07 21:51:10 +08:00
|
|
|
|
|
2016-10-07 23:43:06 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
2017-01-31 17:53:52 +08:00
|
|
|
|
new OsuSpriteText
|
2016-10-07 23:43:06 +08:00
|
|
|
|
{
|
|
|
|
|
Text = channel.Name,
|
|
|
|
|
TextSize = 50,
|
|
|
|
|
Alpha = 0.3f,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre
|
|
|
|
|
},
|
2017-02-19 17:07:35 +08:00
|
|
|
|
scroll = new ScrollContainer
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
2017-02-18 03:08:28 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-10-07 23:43:06 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
2016-10-07 23:43:06 +08:00
|
|
|
|
flow = new FlowContainer
|
|
|
|
|
{
|
2017-02-13 15:02:14 +08:00
|
|
|
|
Direction = FlowDirections.Vertical,
|
2016-10-07 23:43:06 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2016-10-22 17:05:46 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2016-10-12 11:22:19 +08:00
|
|
|
|
Spacing = new Vector2(1, 1)
|
2016-10-07 23:43:06 +08:00
|
|
|
|
}
|
2016-10-07 21:51:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-07 23:43:06 +08:00
|
|
|
|
};
|
2016-10-07 21:51:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
2017-02-19 17:02:25 +08:00
|
|
|
|
channel.NewMessagesArrived -= newMessagesArrived;
|
2016-10-07 21:51:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
2017-02-19 17:02:25 +08:00
|
|
|
|
newMessagesArrived(channel.Messages);
|
2016-10-07 21:51:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-19 17:02:25 +08:00
|
|
|
|
private void newMessagesArrived(IEnumerable<Message> newMessages)
|
2016-10-07 21:51:10 +08:00
|
|
|
|
{
|
|
|
|
|
if (!IsLoaded) return;
|
|
|
|
|
|
2016-10-12 14:25:07 +08:00
|
|
|
|
var displayMessages = newMessages.Skip(Math.Max(0, newMessages.Count() - Channel.MAX_HISTORY));
|
2016-10-07 21:51:10 +08:00
|
|
|
|
|
2016-10-12 14:25:07 +08:00
|
|
|
|
//up to last Channel.MAX_HISTORY messages
|
2016-10-07 21:51:10 +08:00
|
|
|
|
foreach (Message m in displayMessages)
|
|
|
|
|
flow.Add(new ChatLine(m));
|
|
|
|
|
|
2016-10-12 14:25:07 +08:00
|
|
|
|
while (flow.Children.Count() > Channel.MAX_HISTORY)
|
2016-10-07 21:51:10 +08:00
|
|
|
|
flow.Remove(flow.Children.First());
|
2017-02-19 17:07:35 +08:00
|
|
|
|
|
|
|
|
|
scroll.ScrollTo(flow.DrawHeight, false);
|
2016-10-07 21:51:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|