2019-01-24 16:43:03 +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.
|
2018-12-21 13:01:06 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-12-21 13:01:06 +08:00
|
|
|
using osu.Game.Online.Chat;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2018-12-21 13:01:06 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Match.Components
|
2018-12-21 13:01:06 +08:00
|
|
|
{
|
|
|
|
public class MatchChatDisplay : StandAloneChatDisplay
|
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
[Resolved(typeof(Room), nameof(Room.RoomID))]
|
2021-02-16 18:29:40 +08:00
|
|
|
private Bindable<long?> roomId { get; set; }
|
2019-02-05 18:00:01 +08:00
|
|
|
|
|
|
|
[Resolved(typeof(Room), nameof(Room.ChannelId))]
|
|
|
|
private Bindable<int> channelId { get; set; }
|
2018-12-21 13:01:06 +08:00
|
|
|
|
2018-12-22 13:38:46 +08:00
|
|
|
[Resolved(CanBeNull = true)]
|
2018-12-21 13:01:06 +08:00
|
|
|
private ChannelManager channelManager { get; set; }
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
public MatchChatDisplay()
|
2018-12-21 13:01:06 +08:00
|
|
|
: base(true)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2019-03-07 14:35:57 +08:00
|
|
|
channelId.BindValueChanged(_ => updateChannel(), true);
|
2018-12-21 13:37:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updateChannel()
|
|
|
|
{
|
2019-03-07 14:35:57 +08:00
|
|
|
if (roomId.Value == null || channelId.Value == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Channel.Value = channelManager?.JoinChannel(new Channel { Id = channelId.Value, Type = ChannelType.Multiplayer, Name = $"#lazermp_{roomId.Value}" });
|
2018-12-21 13:01:06 +08:00
|
|
|
}
|
2021-01-21 14:42:23 +08:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
channelManager?.LeaveChannel(Channel.Value);
|
|
|
|
}
|
2018-12-21 13:01:06 +08:00
|
|
|
}
|
|
|
|
}
|