2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-01-03 03:04:36 +00:00
|
|
|
|
using System;
|
2017-05-20 21:29:57 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-02-12 04:04:46 +00:00
|
|
|
|
using osu.Game.Graphics;
|
2017-05-20 21:29:57 +00:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Online.Chat;
|
2021-02-22 08:14:00 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-07-09 17:42:57 +00:00
|
|
|
|
namespace osu.Game.Overlays.Chat.Selection
|
2017-05-20 21:29:57 +00:00
|
|
|
|
{
|
2017-05-20 23:22:55 +00:00
|
|
|
|
public class ChannelSection : Container, IHasFilterableChildren
|
2017-05-20 21:29:57 +00:00
|
|
|
|
{
|
2017-05-21 00:26:39 +00:00
|
|
|
|
public readonly FillFlowContainer<ChannelListItem> ChannelFlow;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-05-26 07:11:45 +00:00
|
|
|
|
public IEnumerable<IFilterable> FilterableChildren => ChannelFlow.Children;
|
2019-01-03 03:04:36 +00:00
|
|
|
|
public IEnumerable<string> FilterTerms => Array.Empty<string>();
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2017-06-01 01:39:03 +00:00
|
|
|
|
public bool MatchingFilter
|
2017-05-26 06:46:50 +00:00
|
|
|
|
{
|
2019-02-28 04:58:19 +00:00
|
|
|
|
set => this.FadeTo(value ? 1f : 0f, 100);
|
2017-05-20 23:22:55 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-28 15:29:07 +00:00
|
|
|
|
public bool FilteringActive { get; set; }
|
|
|
|
|
|
2017-05-20 21:29:57 +00:00
|
|
|
|
public IEnumerable<Channel> Channels
|
|
|
|
|
{
|
2019-02-28 04:58:19 +00:00
|
|
|
|
set => ChannelFlow.ChildrenEnumerable = value.Select(c => new ChannelListItem(c));
|
2017-05-20 21:29:57 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-05-20 21:29:57 +00:00
|
|
|
|
public ChannelSection()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-05-20 21:29:57 +00:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2021-02-25 05:08:01 +00:00
|
|
|
|
new OsuSpriteText
|
2017-05-20 21:29:57 +00:00
|
|
|
|
{
|
2019-02-12 04:04:46 +00:00
|
|
|
|
Font = OsuFont.GetFont(size: 15, weight: FontWeight.Bold),
|
2021-02-22 08:14:00 +00:00
|
|
|
|
Text = "All Channels".ToUpperInvariant()
|
2017-05-20 21:29:57 +00:00
|
|
|
|
},
|
2017-05-21 00:26:39 +00:00
|
|
|
|
ChannelFlow = new FillFlowContainer<ChannelListItem>
|
2017-05-20 21:29:57 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Margin = new MarginPadding { Top = 25 },
|
|
|
|
|
Spacing = new Vector2(0f, 5f),
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|