2022-04-15 22:38:47 +08:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#nullable enable
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
using osu.Game.Online.Chat;
|
2022-05-19 18:26:14 +08:00
|
|
|
using osu.Game.Overlays.Chat.Listing;
|
2022-04-15 22:38:47 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Chat.ChannelList
|
|
|
|
{
|
|
|
|
public class ChannelList : Container
|
|
|
|
{
|
2022-05-16 02:38:37 +08:00
|
|
|
public Action<Channel>? OnRequestSelect;
|
2022-04-15 22:38:47 +08:00
|
|
|
public Action<Channel>? OnRequestLeave;
|
|
|
|
|
2022-05-19 18:45:39 +08:00
|
|
|
public readonly ChannelListing.ChannelListingChannel ChannelListingChannel = new ChannelListing.ChannelListingChannel();
|
2022-04-15 22:38:47 +08:00
|
|
|
|
2022-05-19 18:45:39 +08:00
|
|
|
private readonly Dictionary<Channel, ChannelListItem> channelMap = new Dictionary<Channel, ChannelListItem>();
|
2022-05-16 02:38:37 +08:00
|
|
|
|
2022-04-15 22:38:47 +08:00
|
|
|
private ChannelListItemFlow publicChannelFlow = null!;
|
|
|
|
private ChannelListItemFlow privateChannelFlow = null!;
|
2022-05-16 02:38:37 +08:00
|
|
|
private ChannelListItem selector = null!;
|
2022-04-15 22:38:47 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = colourProvider.Background6,
|
|
|
|
},
|
2022-04-19 23:56:55 +08:00
|
|
|
new OsuScrollContainer
|
2022-04-15 22:38:47 +08:00
|
|
|
{
|
|
|
|
Padding = new MarginPadding { Vertical = 7 },
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2022-04-17 02:19:18 +08:00
|
|
|
ScrollbarAnchor = Anchor.TopRight,
|
2022-04-15 22:38:47 +08:00
|
|
|
ScrollDistance = 35f,
|
|
|
|
Child = new FillFlowContainer
|
|
|
|
{
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
publicChannelFlow = new ChannelListItemFlow("CHANNELS"),
|
2022-05-19 18:45:39 +08:00
|
|
|
selector = new ChannelListItem(ChannelListingChannel)
|
2022-04-15 22:38:47 +08:00
|
|
|
{
|
|
|
|
Margin = new MarginPadding { Bottom = 10 },
|
|
|
|
},
|
|
|
|
privateChannelFlow = new ChannelListItemFlow("DIRECT MESSAGES"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2022-05-16 02:38:37 +08:00
|
|
|
|
|
|
|
selector.OnRequestSelect += chan => OnRequestSelect?.Invoke(chan);
|
2022-04-15 22:38:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void AddChannel(Channel channel)
|
|
|
|
{
|
|
|
|
if (channelMap.ContainsKey(channel))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ChannelListItem item = new ChannelListItem(channel);
|
2022-04-16 05:05:20 +08:00
|
|
|
item.OnRequestSelect += chan => OnRequestSelect?.Invoke(chan);
|
|
|
|
item.OnRequestLeave += chan => OnRequestLeave?.Invoke(chan);
|
2022-04-15 22:38:47 +08:00
|
|
|
|
|
|
|
ChannelListItemFlow flow = getFlowForChannel(channel);
|
|
|
|
channelMap.Add(channel, item);
|
|
|
|
flow.Add(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void RemoveChannel(Channel channel)
|
|
|
|
{
|
|
|
|
if (!channelMap.ContainsKey(channel))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ChannelListItem item = channelMap[channel];
|
|
|
|
ChannelListItemFlow flow = getFlowForChannel(channel);
|
|
|
|
|
|
|
|
channelMap.Remove(channel);
|
|
|
|
flow.Remove(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ChannelListItem GetItem(Channel channel)
|
|
|
|
{
|
|
|
|
if (!channelMap.ContainsKey(channel))
|
|
|
|
throw new ArgumentOutOfRangeException();
|
|
|
|
|
|
|
|
return channelMap[channel];
|
|
|
|
}
|
|
|
|
|
|
|
|
private ChannelListItemFlow getFlowForChannel(Channel channel)
|
|
|
|
{
|
|
|
|
switch (channel.Type)
|
|
|
|
{
|
|
|
|
case ChannelType.Public:
|
|
|
|
return publicChannelFlow;
|
|
|
|
|
|
|
|
case ChannelType.PM:
|
|
|
|
return privateChannelFlow;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw new ArgumentOutOfRangeException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class ChannelListItemFlow : FillFlowContainer
|
|
|
|
{
|
|
|
|
public ChannelListItemFlow(string label)
|
|
|
|
{
|
|
|
|
Direction = FillDirection.Vertical;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
Add(new OsuSpriteText
|
|
|
|
{
|
|
|
|
Text = label,
|
|
|
|
Margin = new MarginPadding { Left = 18, Bottom = 5 },
|
2022-04-17 02:30:03 +08:00
|
|
|
Font = OsuFont.Torus.With(size: 12, weight: FontWeight.SemiBold),
|
2022-04-15 22:38:47 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|