// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Framework.Graphics.Sprites; using osu.Framework.Input.Events; using osu.Framework.Localisation; using osu.Game.Graphics; using osu.Game.Graphics.Containers; using osu.Game.Graphics.Sprites; using osu.Game.Graphics.UserInterface; using osu.Game.Online.Chat; using osuTK; namespace osu.Game.Overlays.Chat.Listing { public partial class ChannelListingItem : OsuClickableContainer, IFilterable { public event Action? OnRequestJoin; public event Action? OnRequestLeave; public readonly Channel Channel; public bool FilteringActive { get; set; } public IEnumerable FilterTerms => new LocalisableString[] { Channel.Name, Channel.Topic ?? string.Empty }; public bool MatchingFilter { set => this.FadeTo(value ? 1f : 0f, 100); } protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new HoverSounds(); private Box hoverBox = null!; private SpriteIcon checkbox = null!; private OsuSpriteText channelText = null!; private OsuTextFlowContainer topicText = null!; private IBindable channelJoined = null!; [Resolved] private OverlayColourProvider colourProvider { get; set; } = null!; private const float text_size = 18; private const float icon_size = 14; private const float vertical_margin = 1.5f; private Sample? sampleJoin; private Sample? sampleLeave; public ChannelListingItem(Channel channel) { Channel = channel; } [BackgroundDependencyLoader] private void load(AudioManager audio) { sampleJoin = audio.Samples.Get(@"UI/check-on"); sampleLeave = audio.Samples.Get(@"UI/check-off"); Masking = true; CornerRadius = 5; RelativeSizeAxes = Content.RelativeSizeAxes = Axes.X; AutoSizeAxes = Content.AutoSizeAxes = Axes.Y; Children = new Drawable[] { hoverBox = new Box { RelativeSizeAxes = Axes.Both, Colour = colourProvider.Background3, Margin = new MarginPadding { Vertical = vertical_margin }, Alpha = 0f, }, new GridContainer { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, ColumnDimensions = new[] { new Dimension(GridSizeMode.Absolute, 40), new Dimension(GridSizeMode.Absolute, 200), new Dimension(maxSize: 400), new Dimension(GridSizeMode.AutoSize), new Dimension(GridSizeMode.Absolute, 50), // enough for any 5 digit user count }, RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize, minSize: 20 + (vertical_margin * 2)), }, Content = new[] { new Drawable[] { checkbox = new SpriteIcon { Alpha = 0, Anchor = Anchor.Centre, Origin = Anchor.Centre, Icon = FontAwesome.Solid.Check, Size = new Vector2(icon_size), }, channelText = new OsuSpriteText { Anchor = Anchor.CentreLeft, Origin = Anchor.CentreLeft, Text = Channel.Name, Font = OsuFont.Torus.With(size: text_size, weight: FontWeight.SemiBold), Margin = new MarginPadding { Bottom = 2 }, }, topicText = new OsuTextFlowContainer(t => t.Font = OsuFont.Torus.With(size: text_size)) { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, Anchor = Anchor.CentreLeft, Origin = Anchor.CentreLeft, Text = Channel.Topic, Margin = new MarginPadding { Bottom = 2 }, }, new SpriteIcon { Anchor = Anchor.CentreLeft, Origin = Anchor.CentreLeft, Icon = FontAwesome.Solid.User, Size = new Vector2(icon_size), Margin = new MarginPadding { Right = 5 }, Colour = colourProvider.Light3, }, new OsuSpriteText { Anchor = Anchor.CentreLeft, Origin = Anchor.CentreLeft, Text = "0", Font = OsuFont.Torus.With(size: text_size), Margin = new MarginPadding { Bottom = 2 }, Colour = colourProvider.Light3, }, }, }, }, }; } protected override void LoadComplete() { base.LoadComplete(); channelJoined = Channel.Joined.GetBoundCopy(); channelJoined.BindValueChanged(change => { const double duration = 500; if (change.NewValue) { checkbox.FadeIn(duration, Easing.OutQuint); checkbox.ScaleTo(1f, duration, Easing.OutElastic); channelText.Colour = Colour4.White; topicText.Colour = Colour4.White; } else { checkbox.FadeOut(duration, Easing.OutQuint); checkbox.ScaleTo(0.8f, duration, Easing.OutQuint); channelText.Colour = colourProvider.Light3; topicText.Colour = colourProvider.Content2; } }, true); Action = () => { if (channelJoined.Value) { OnRequestLeave?.Invoke(Channel); sampleLeave?.Play(); } else { OnRequestJoin?.Invoke(Channel); sampleJoin?.Play(); } }; } protected override bool OnHover(HoverEvent e) { hoverBox.Show(); return base.OnHover(e); } protected override void OnHoverLost(HoverLostEvent e) { hoverBox.FadeOut(300, Easing.OutQuint); base.OnHoverLost(e); } } }