2020-12-23 21:02:37 +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.
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-23 21:02:37 +00:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2020-12-25 04:38:11 +00:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2020-12-25 15:50:00 +00:00
|
|
|
using osu.Game.Screens.OnlinePlay.Match.Components;
|
2020-12-23 21:02:37 +00:00
|
|
|
|
2020-12-25 15:50:00 +00:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-23 21:02:37 +00:00
|
|
|
{
|
2021-08-03 09:05:43 +00:00
|
|
|
public partial class CreateMultiplayerMatchButton : CreateRoomButton
|
2020-12-23 21:02:37 +00:00
|
|
|
{
|
2020-12-28 20:39:11 +00:00
|
|
|
private IBindable<bool> isConnected;
|
2020-12-29 07:20:43 +00:00
|
|
|
private IBindable<bool> operationInProgress;
|
2020-12-28 20:39:11 +00:00
|
|
|
|
|
|
|
[Resolved]
|
2021-05-20 06:39:45 +00:00
|
|
|
private MultiplayerClient multiplayerClient { get; set; }
|
2020-12-28 20:39:11 +00:00
|
|
|
|
|
|
|
[Resolved]
|
2020-12-29 07:20:43 +00:00
|
|
|
private OngoingOperationTracker ongoingOperationTracker { get; set; }
|
2020-12-28 20:39:11 +00:00
|
|
|
|
2020-12-23 21:02:37 +00:00
|
|
|
[BackgroundDependencyLoader]
|
2020-12-28 20:39:11 +00:00
|
|
|
private void load()
|
2020-12-23 21:02:37 +00:00
|
|
|
{
|
2020-12-24 15:10:29 +00:00
|
|
|
Text = "Create room";
|
2020-12-23 21:02:37 +00:00
|
|
|
|
2020-12-28 20:39:11 +00:00
|
|
|
isConnected = multiplayerClient.IsConnected.GetBoundCopy();
|
2020-12-29 07:20:43 +00:00
|
|
|
operationInProgress = ongoingOperationTracker.InProgress.GetBoundCopy();
|
2020-12-30 15:22:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2021-01-12 10:04:16 +00:00
|
|
|
isConnected.BindValueChanged(_ => Scheduler.AddOnce(updateState));
|
|
|
|
operationInProgress.BindValueChanged(_ => Scheduler.AddOnce(updateState), true);
|
2020-12-23 21:02:37 +00:00
|
|
|
}
|
2020-12-28 20:39:11 +00:00
|
|
|
|
2020-12-29 07:20:43 +00:00
|
|
|
private void updateState() => Enabled.Value = isConnected.Value && !operationInProgress.Value;
|
2020-12-23 21:02:37 +00:00
|
|
|
}
|
|
|
|
}
|