1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/Overlays/ChatOverlay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

526 lines
20 KiB
C#
Raw Normal View History

// 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 17:19:50 +08:00
using System.Collections.Generic;
2020-09-01 10:56:23 +08:00
using System.Collections.Specialized;
using System.Diagnostics;
using System.Linq;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2016-11-09 07:13:20 +08:00
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2017-02-19 17:02:25 +08:00
using osu.Framework.Graphics.UserInterface;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Game.Configuration;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2017-08-21 16:43:26 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.Chat;
using osu.Game.Overlays.Chat;
using osu.Game.Overlays.Chat.Selection;
using osu.Game.Overlays.Chat.Tabs;
using osuTK.Input;
2019-10-07 01:22:55 +08:00
using osu.Framework.Graphics.Sprites;
2020-09-18 05:56:08 +08:00
using osu.Framework.Graphics.Textures;
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
using osu.Framework.Localisation;
using osu.Game.Localisation;
2021-02-18 16:46:07 +08:00
using osu.Game.Online;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays
{
public class ChatOverlay : OsuFocusedOverlayContainer, INamedOverlayComponent, IKeyBindingHandler<PlatformAction>
{
public string IconTexture => "Icons/Hexacons/messaging";
public LocalisableString Title => ChatStrings.HeaderTitle;
public LocalisableString Description => ChatStrings.HeaderDescription;
private const float text_box_height = 60;
private const float channel_selection_min_height = 0.3f;
2018-04-13 17:19:50 +08:00
2020-02-14 21:14:00 +08:00
[Resolved]
private ChannelManager channelManager { get; set; }
2018-04-13 17:19:50 +08:00
2019-06-20 22:02:02 +08:00
private Container<DrawableChannel> currentChannelContainer;
2018-07-10 00:23:40 +08:00
private readonly List<DrawableChannel> loadedChannels = new List<DrawableChannel>();
2018-04-13 17:19:50 +08:00
private LoadingSpinner loading;
2018-04-13 17:19:50 +08:00
private FocusedTextBox textBox;
2018-04-13 17:19:50 +08:00
2017-04-19 18:15:21 +08:00
private const int transition_length = 500;
2018-04-13 17:19:50 +08:00
public const float DEFAULT_HEIGHT = 0.4f;
2018-04-13 17:19:50 +08:00
2017-05-12 14:32:52 +08:00
public const float TAB_AREA_HEIGHT = 50;
2018-04-13 17:19:50 +08:00
2019-06-25 18:52:31 +08:00
protected ChannelTabControl ChannelTabControl;
protected virtual ChannelTabControl CreateChannelTabControl() => new ChannelTabControl();
2018-04-13 17:19:50 +08:00
2019-06-20 22:02:02 +08:00
private Container chatContainer;
private TabsArea tabsArea;
private Box chatBackground;
private Box tabBackground;
2018-04-13 17:19:50 +08:00
2019-09-03 06:50:52 +08:00
public Bindable<float> ChatHeight { get; set; }
2018-04-13 17:19:50 +08:00
2019-06-20 22:02:02 +08:00
private Container channelSelectionContainer;
2019-06-25 18:52:31 +08:00
protected ChannelSelectionOverlay ChannelSelectionOverlay;
2018-04-13 17:19:50 +08:00
private readonly IBindableList<Channel> availableChannels = new BindableList<Channel>();
private readonly IBindableList<Channel> joinedChannels = new BindableList<Channel>();
private readonly Bindable<Channel> currentChannel = new Bindable<Channel>();
2019-06-25 18:52:31 +08:00
public override bool Contains(Vector2 screenSpacePos) => chatContainer.ReceivePositionalInputAt(screenSpacePos)
|| (ChannelSelectionOverlay.State.Value == Visibility.Visible && ChannelSelectionOverlay.ReceivePositionalInputAt(screenSpacePos));
2018-04-13 17:19:50 +08:00
public ChatOverlay()
{
RelativeSizeAxes = Axes.Both;
RelativePositionAxes = Axes.Both;
Anchor = Anchor.BottomLeft;
Origin = Anchor.BottomLeft;
2019-06-20 22:02:02 +08:00
}
2018-04-13 17:19:50 +08:00
2019-06-20 22:02:02 +08:00
[BackgroundDependencyLoader]
2020-09-18 05:56:08 +08:00
private void load(OsuConfigManager config, OsuColour colours, TextureStore textures)
2019-06-20 22:02:02 +08:00
{
2017-05-12 13:22:11 +08:00
const float padding = 5;
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
channelSelectionContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Height = 1f - DEFAULT_HEIGHT,
Masking = true,
Children = new[]
{
2019-06-25 18:52:31 +08:00
ChannelSelectionOverlay = new ChannelSelectionOverlay
{
RelativeSizeAxes = Axes.Both,
},
},
},
chatContainer = new Container
2017-02-19 17:02:25 +08:00
{
Name = @"chat container",
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
2017-05-12 13:22:11 +08:00
RelativeSizeAxes = Axes.Both,
Height = DEFAULT_HEIGHT,
Children = new[]
2017-02-19 17:02:25 +08:00
{
new Container
2017-02-19 17:02:25 +08:00
{
Name = @"chat area",
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = TAB_AREA_HEIGHT },
Children = new Drawable[]
2017-05-12 13:22:11 +08:00
{
chatBackground = new Box
{
RelativeSizeAxes = Axes.Both,
},
2021-02-18 16:46:07 +08:00
new OnlineViewContainer("Sign in to chat")
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
2021-02-18 16:46:07 +08:00
currentChannelContainer = new Container<DrawableChannel>
{
RelativeSizeAxes = Axes.Both,
2021-02-18 16:46:07 +08:00
Padding = new MarginPadding
{
Bottom = text_box_height
2021-02-18 16:46:07 +08:00
},
},
new Container
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
RelativeSizeAxes = Axes.X,
Height = text_box_height,
2021-02-18 16:46:07 +08:00
Padding = new MarginPadding
{
Top = padding * 2,
Bottom = padding * 2,
Left = ChatLine.LEFT_PADDING + padding * 2,
Right = padding * 2,
},
Children = new Drawable[]
{
textBox = new FocusedTextBox
2021-02-18 16:46:07 +08:00
{
RelativeSizeAxes = Axes.Both,
Height = 1,
PlaceholderText = Resources.Localisation.Web.ChatStrings.InputPlaceholder,
2021-02-18 16:46:07 +08:00
ReleaseFocusOnCommit = false,
HoldFocus = true,
}
}
},
loading = new LoadingSpinner(),
},
}
}
2017-05-12 13:22:11 +08:00
},
tabsArea = new TabsArea
2017-05-12 13:22:11 +08:00
{
Children = new Drawable[]
{
tabBackground = new Box
2017-05-12 13:22:11 +08:00
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
},
2020-09-18 05:56:08 +08:00
new Sprite
2019-10-07 01:22:55 +08:00
{
2020-09-18 05:56:08 +08:00
Texture = textures.Get(IconTexture),
2019-10-07 01:22:55 +08:00
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
2020-09-18 05:56:08 +08:00
Size = new Vector2(OverlayTitle.ICON_SIZE),
Margin = new MarginPadding { Left = 10 },
2019-10-07 01:22:55 +08:00
},
2019-06-25 18:52:31 +08:00
ChannelTabControl = CreateChannelTabControl().With(d =>
{
d.Anchor = Anchor.BottomLeft;
d.Origin = Anchor.BottomLeft;
d.RelativeSizeAxes = Axes.Both;
d.OnRequestLeave = channelManager.LeaveChannel;
2019-12-23 11:47:47 +08:00
d.IsSwitchable = true;
}),
2017-05-12 13:22:11 +08:00
}
2017-05-12 14:32:52 +08:00
},
},
2017-05-12 14:32:52 +08:00
},
};
2018-04-13 17:19:50 +08:00
availableChannels.BindTo(channelManager.AvailableChannels);
joinedChannels.BindTo(channelManager.JoinedChannels);
currentChannel.BindTo(channelManager.CurrentChannel);
textBox.OnCommit += postMessage;
ChannelTabControl.Current.ValueChanged += current => currentChannel.Value = current.NewValue;
2019-06-25 18:52:31 +08:00
ChannelTabControl.ChannelSelectorActive.ValueChanged += active => ChannelSelectionOverlay.State.Value = active.NewValue ? Visibility.Visible : Visibility.Hidden;
ChannelSelectionOverlay.State.ValueChanged += state =>
{
2019-06-25 18:52:31 +08:00
// Propagate the visibility state to ChannelSelectorActive
ChannelTabControl.ChannelSelectorActive.Value = state.NewValue == Visibility.Visible;
2018-04-13 17:19:50 +08:00
if (state.NewValue == Visibility.Visible)
{
textBox.HoldFocus = false;
if (1f - ChatHeight.Value < channel_selection_min_height)
2018-05-02 17:26:23 +08:00
this.TransformBindableTo(ChatHeight, 1f - channel_selection_min_height, 800, Easing.OutQuint);
}
else
textBox.HoldFocus = true;
};
2019-06-25 18:52:31 +08:00
ChannelSelectionOverlay.OnRequestJoin = channel => channelManager.JoinChannel(channel);
ChannelSelectionOverlay.OnRequestLeave = channelManager.LeaveChannel;
2019-06-20 22:02:02 +08:00
2019-09-03 06:50:52 +08:00
ChatHeight = config.GetBindable<float>(OsuSetting.ChatDisplayHeight);
ChatHeight.BindValueChanged(height =>
2019-06-20 22:02:02 +08:00
{
2019-09-03 06:50:52 +08:00
chatContainer.Height = height.NewValue;
channelSelectionContainer.Height = 1f - height.NewValue;
tabBackground.FadeTo(height.NewValue == 1f ? 1f : 0.8f, 200);
}, true);
2019-06-20 22:02:02 +08:00
chatBackground.Colour = colours.ChatBlue;
loading.Show();
// This is a relatively expensive (and blocking) operation.
// Scheduling it ensures that it won't be performed unless the user decides to open chat.
// TODO: Refactor OsuFocusedOverlayContainer / OverlayContainer to support delayed content loading.
Schedule(() =>
{
// TODO: consider scheduling bindable callbacks to not perform when overlay is not present.
joinedChannels.BindCollectionChanged(joinedChannelsChanged, true);
availableChannels.BindCollectionChanged(availableChannelsChanged, true);
2019-06-20 22:02:02 +08:00
currentChannel.BindValueChanged(currentChannelChanged, true);
});
}
2019-02-21 17:56:34 +08:00
private void currentChannelChanged(ValueChangedEvent<Channel> e)
{
2019-02-21 17:56:34 +08:00
if (e.NewValue == null)
{
textBox.Current.Disabled = true;
currentChannelContainer.Clear(false);
2019-06-25 18:52:31 +08:00
ChannelSelectionOverlay.Show();
return;
}
2019-05-12 07:21:12 +08:00
if (e.NewValue is ChannelSelectorTabItem.ChannelSelectorTabChannel)
2019-05-12 07:16:15 +08:00
return;
textBox.Current.Disabled = e.NewValue.ReadOnly;
2019-06-25 18:52:31 +08:00
if (ChannelTabControl.Current.Value != e.NewValue)
Scheduler.Add(() => ChannelTabControl.Current.Value = e.NewValue);
2019-02-21 17:56:34 +08:00
var loaded = loadedChannels.Find(d => d.Channel == e.NewValue);
2019-04-01 11:16:05 +08:00
if (loaded == null)
{
currentChannelContainer.FadeOut(500, Easing.OutQuint);
loading.Show();
2019-02-21 17:56:34 +08:00
loaded = new DrawableChannel(e.NewValue);
loadedChannels.Add(loaded);
LoadComponentAsync(loaded, l =>
{
if (currentChannel.Value != e.NewValue)
return;
2021-10-04 14:35:28 +08:00
// check once more to ensure the channel hasn't since been removed from the loaded channels list (may have been left by some automated means).
if (!loadedChannels.Contains(loaded))
return;
loading.Hide();
currentChannelContainer.Clear(false);
currentChannelContainer.Add(loaded);
currentChannelContainer.FadeIn(500, Easing.OutQuint);
});
}
else
{
currentChannelContainer.Clear(false);
currentChannelContainer.Add(loaded);
}
// mark channel as read when channel switched
if (e.NewValue.Messages.Any())
channelManager.MarkChannelAsRead(e.NewValue);
}
2018-04-13 17:19:50 +08:00
/// <summary>
/// Highlights a certain message in the specified channel.
/// </summary>
/// <param name="message">The message to highlight.</param>
/// <param name="channel">The channel containing the message.</param>
public void HighlightMessage(Message message, Channel channel)
{
Debug.Assert(channel.Id == message.ChannelId);
if (currentChannel.Value?.Id != channel.Id)
{
if (!channel.Joined.Value)
channel = channelManager.JoinChannel(channel);
currentChannel.Value = channel;
}
channel.HighlightedMessage.Value = message;
Show();
}
2019-09-03 06:50:52 +08:00
private float startDragChatHeight;
2017-07-27 21:33:10 +08:00
private bool isDragging;
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnDragStart(DragStartEvent e)
{
2017-07-27 21:33:10 +08:00
isDragging = tabsArea.IsHovered;
2018-04-13 17:19:50 +08:00
2017-07-27 21:33:10 +08:00
if (!isDragging)
2018-10-02 11:02:47 +08:00
return base.OnDragStart(e);
2018-04-13 17:19:50 +08:00
startDragChatHeight = ChatHeight.Value;
return true;
}
2018-04-13 17:19:50 +08:00
protected override void OnDrag(DragEvent e)
{
2017-07-27 21:33:10 +08:00
if (isDragging)
{
2019-09-03 06:50:52 +08:00
float targetChatHeight = startDragChatHeight - (e.MousePosition.Y - e.MouseDownPosition.Y) / Parent.DrawSize.Y;
2018-04-13 17:19:50 +08:00
// If the channel selection screen is shown, mind its minimum height
2019-06-25 18:52:31 +08:00
if (ChannelSelectionOverlay.State.Value == Visibility.Visible && targetChatHeight > 1f - channel_selection_min_height)
targetChatHeight = 1f - channel_selection_min_height;
2018-04-13 17:19:50 +08:00
ChatHeight.Value = targetChatHeight;
}
}
2018-04-13 17:19:50 +08:00
protected override void OnDragEnd(DragEndEvent e)
{
2017-07-27 21:33:10 +08:00
isDragging = false;
base.OnDragEnd(e);
}
2018-04-13 17:19:50 +08:00
private void selectTab(int index)
{
var channel = ChannelTabControl.Items
.Where(tab => !(tab is ChannelSelectorTabItem.ChannelSelectorTabChannel))
2020-02-01 00:19:04 +08:00
.ElementAtOrDefault(index);
if (channel != null)
2019-06-25 18:52:31 +08:00
ChannelTabControl.Current.Value = channel;
}
2020-12-13 10:11:57 +08:00
protected override bool OnKeyDown(KeyDownEvent e)
{
if (e.AltPressed)
{
switch (e.Key)
{
case Key.Number1:
case Key.Number2:
case Key.Number3:
case Key.Number4:
case Key.Number5:
case Key.Number6:
case Key.Number7:
case Key.Number8:
case Key.Number9:
selectTab((int)e.Key - (int)Key.Number1);
return true;
2019-04-01 11:16:05 +08:00
case Key.Number0:
selectTab(9);
return true;
}
}
return base.OnKeyDown(e);
}
2021-09-16 17:26:12 +08:00
public bool OnPressed(KeyBindingPressEvent<PlatformAction> e)
{
2021-09-16 17:26:12 +08:00
switch (e.Action)
{
2021-07-20 13:23:34 +08:00
case PlatformAction.TabNew:
ChannelTabControl.SelectChannelSelectorTab();
return true;
2021-07-20 13:23:34 +08:00
case PlatformAction.TabRestore:
channelManager.JoinLastClosedChannel();
return true;
2021-07-20 13:23:34 +08:00
case PlatformAction.DocumentClose:
channelManager.LeaveChannel(currentChannel.Value);
return true;
}
return false;
}
2021-09-16 17:26:12 +08:00
public void OnReleased(KeyBindingReleaseEvent<PlatformAction> e)
{
}
2017-05-30 15:33:26 +08:00
public override bool AcceptsFocus => true;
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override void OnFocus(FocusEvent e)
{
2020-05-05 09:31:11 +08:00
// this is necessary as textbox is masked away and therefore can't get focus :(
textBox.TakeFocus();
2018-10-02 11:02:47 +08:00
base.OnFocus(e);
}
2018-04-13 17:19:50 +08:00
2017-04-19 18:15:21 +08:00
protected override void PopIn()
2017-02-19 17:02:25 +08:00
{
2017-07-23 02:50:25 +08:00
this.MoveToY(0, transition_length, Easing.OutQuint);
this.FadeIn(transition_length, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
textBox.HoldFocus = true;
2019-06-25 18:52:31 +08:00
base.PopIn();
2017-04-19 18:15:21 +08:00
}
2018-04-13 17:19:50 +08:00
2017-04-19 18:15:21 +08:00
protected override void PopOut()
{
2017-07-23 02:50:25 +08:00
this.MoveToY(Height, transition_length, Easing.InSine);
this.FadeOut(transition_length, Easing.InSine);
2018-04-13 17:19:50 +08:00
2019-06-25 18:52:31 +08:00
ChannelSelectionOverlay.Hide();
textBox.HoldFocus = false;
base.PopOut();
2017-02-19 17:02:25 +08:00
}
2018-04-13 17:19:50 +08:00
private void joinedChannelsChanged(object sender, NotifyCollectionChangedEventArgs args)
{
2020-09-01 10:56:23 +08:00
switch (args.Action)
{
2020-09-01 10:56:23 +08:00
case NotifyCollectionChangedAction.Add:
foreach (Channel channel in args.NewItems.Cast<Channel>())
{
if (channel.Type != ChannelType.Multiplayer)
ChannelTabControl.AddChannel(channel);
}
2020-09-01 10:56:23 +08:00
break;
2020-09-01 10:56:23 +08:00
case NotifyCollectionChangedAction.Remove:
foreach (Channel channel in args.OldItems.Cast<Channel>())
{
if (!ChannelTabControl.Items.Contains(channel))
continue;
2020-09-01 10:56:23 +08:00
ChannelTabControl.RemoveChannel(channel);
2020-09-01 10:56:23 +08:00
var loaded = loadedChannels.Find(c => c.Channel == channel);
2020-09-01 10:56:23 +08:00
if (loaded != null)
{
// Because the container is only cleared in the async load callback of a new channel, it is forcefully cleared
// to ensure that the previous channel doesn't get updated after it's disposed
loadedChannels.Remove(loaded);
2020-09-01 10:56:23 +08:00
currentChannelContainer.Remove(loaded);
loaded.Dispose();
}
}
break;
}
}
2020-09-01 10:56:23 +08:00
private void availableChannelsChanged(object sender, NotifyCollectionChangedEventArgs args)
{
ChannelSelectionOverlay.UpdateAvailableChannels(availableChannels);
}
private void postMessage(TextBox textBox, bool newText)
2016-10-13 22:57:05 +08:00
{
string text = textBox.Text.Trim();
2018-04-13 17:19:50 +08:00
if (string.IsNullOrWhiteSpace(text))
2017-05-16 18:55:45 +08:00
return;
2018-04-13 17:19:50 +08:00
if (text[0] == '/')
channelManager.PostCommand(text.Substring(1));
else
channelManager.PostMessage(text);
2018-04-13 17:19:50 +08:00
textBox.Text = string.Empty;
}
private class TabsArea : Container
{
// IsHovered is used
public override bool HandlePositionalInput => true;
public TabsArea()
{
Name = @"tabs area";
RelativeSizeAxes = Axes.X;
Height = TAB_AREA_HEIGHT;
}
}
}
}