2020-12-24 05:02:37 +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.
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Match.Components;
|
2020-12-24 05:02:37 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-24 05:02:37 +08:00
|
|
|
{
|
2020-12-25 12:38:11 +08:00
|
|
|
public class CreateMultiplayerMatchButton : PurpleTriangleButton
|
2020-12-24 05:02:37 +08:00
|
|
|
{
|
2020-12-29 04:39:11 +08:00
|
|
|
private IBindable<bool> isConnected;
|
|
|
|
private IBindable<bool> joiningRoom;
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private StatefulMultiplayerClient multiplayerClient { get; set; }
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private OngoingOperationTracker joiningRoomTracker { get; set; }
|
|
|
|
|
2020-12-24 05:02:37 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2020-12-29 04:39:11 +08:00
|
|
|
private void load()
|
2020-12-24 05:02:37 +08:00
|
|
|
{
|
|
|
|
Triangles.TriangleScale = 1.5f;
|
|
|
|
|
2020-12-24 23:10:29 +08:00
|
|
|
Text = "Create room";
|
2020-12-24 05:02:37 +08:00
|
|
|
|
2020-12-29 04:39:11 +08:00
|
|
|
isConnected = multiplayerClient.IsConnected.GetBoundCopy();
|
|
|
|
isConnected.BindValueChanged(_ => updateState());
|
|
|
|
|
|
|
|
joiningRoom = joiningRoomTracker.InProgress.GetBoundCopy();
|
|
|
|
joiningRoom.BindValueChanged(_ => updateState(), true);
|
2020-12-24 05:02:37 +08:00
|
|
|
}
|
2020-12-29 04:39:11 +08:00
|
|
|
|
|
|
|
private void updateState() => Enabled.Value = isConnected.Value && !joiningRoom.Value;
|
2020-12-24 05:02:37 +08:00
|
|
|
}
|
|
|
|
}
|