mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
220 lines
7.3 KiB
C#
220 lines
7.3 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using JetBrains.Annotations;
|
|
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.Threading;
|
|
using osu.Game.Online.Multiplayer;
|
|
using osu.Game.Online.Multiplayer.Countdown;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
|
|
{
|
|
public class MatchStartControl : MultiplayerRoomComposite
|
|
{
|
|
[Resolved]
|
|
private OngoingOperationTracker ongoingOperationTracker { get; set; }
|
|
|
|
[CanBeNull]
|
|
private IDisposable clickOperation;
|
|
|
|
private Sample sampleReady;
|
|
private Sample sampleReadyAll;
|
|
private Sample sampleUnready;
|
|
|
|
private readonly MultiplayerReadyButton readyButton;
|
|
private readonly MultiplayerCountdownButton countdownButton;
|
|
private int countReady;
|
|
private ScheduledDelegate readySampleDelegate;
|
|
private IBindable<bool> operationInProgress;
|
|
|
|
public MatchStartControl()
|
|
{
|
|
InternalChild = new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.AutoSize)
|
|
},
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
readyButton = new MultiplayerReadyButton
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Size = Vector2.One,
|
|
Action = onReadyClick,
|
|
},
|
|
countdownButton = new MultiplayerCountdownButton
|
|
{
|
|
RelativeSizeAxes = Axes.Y,
|
|
Size = new Vector2(40, 1),
|
|
Alpha = 0,
|
|
Action = startCountdown,
|
|
CancelAction = cancelCountdown
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(AudioManager audio)
|
|
{
|
|
operationInProgress = ongoingOperationTracker.InProgress.GetBoundCopy();
|
|
operationInProgress.BindValueChanged(_ => updateState());
|
|
|
|
sampleReady = audio.Samples.Get(@"Multiplayer/player-ready");
|
|
sampleReadyAll = audio.Samples.Get(@"Multiplayer/player-ready-all");
|
|
sampleUnready = audio.Samples.Get(@"Multiplayer/player-unready");
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
CurrentPlaylistItem.BindValueChanged(_ => updateState());
|
|
}
|
|
|
|
protected override void OnRoomUpdated()
|
|
{
|
|
base.OnRoomUpdated();
|
|
updateState();
|
|
}
|
|
|
|
protected override void OnRoomLoadRequested()
|
|
{
|
|
base.OnRoomLoadRequested();
|
|
endOperation();
|
|
}
|
|
|
|
private void onReadyClick()
|
|
{
|
|
if (Room == null)
|
|
return;
|
|
|
|
Debug.Assert(clickOperation == null);
|
|
clickOperation = ongoingOperationTracker.BeginOperation();
|
|
|
|
if (isReady() && Client.IsHost && Room.Countdown == null)
|
|
startMatch();
|
|
else
|
|
toggleReady();
|
|
|
|
bool isReady() => Client.LocalUser?.State == MultiplayerUserState.Ready || Client.LocalUser?.State == MultiplayerUserState.Spectating;
|
|
|
|
void toggleReady() => Client.ToggleReady().FireAndForget(
|
|
onSuccess: endOperation,
|
|
onError: _ => endOperation());
|
|
|
|
void startMatch() => Client.StartMatch().FireAndForget(onSuccess: () =>
|
|
{
|
|
// gameplay is starting, the button will be unblocked on load requested.
|
|
}, onError: _ =>
|
|
{
|
|
// gameplay was not started due to an exception; unblock button.
|
|
endOperation();
|
|
});
|
|
}
|
|
|
|
private void startCountdown(TimeSpan duration)
|
|
{
|
|
Debug.Assert(clickOperation == null);
|
|
clickOperation = ongoingOperationTracker.BeginOperation();
|
|
|
|
Client.SendMatchRequest(new StartMatchCountdownRequest { Duration = duration }).ContinueWith(_ => endOperation());
|
|
}
|
|
|
|
private void cancelCountdown()
|
|
{
|
|
Debug.Assert(clickOperation == null);
|
|
clickOperation = ongoingOperationTracker.BeginOperation();
|
|
|
|
Client.SendMatchRequest(new StopCountdownRequest()).ContinueWith(_ => endOperation());
|
|
}
|
|
|
|
private void endOperation()
|
|
{
|
|
clickOperation?.Dispose();
|
|
clickOperation = null;
|
|
}
|
|
|
|
private void updateState()
|
|
{
|
|
if (Room == null)
|
|
{
|
|
readyButton.Enabled.Value = false;
|
|
countdownButton.Enabled.Value = false;
|
|
return;
|
|
}
|
|
|
|
var localUser = Client.LocalUser;
|
|
|
|
int newCountReady = Room.Users.Count(u => u.State == MultiplayerUserState.Ready);
|
|
int newCountTotal = Room.Users.Count(u => u.State != MultiplayerUserState.Spectating);
|
|
|
|
if (!Client.IsHost || Room.Settings.AutoStartEnabled)
|
|
countdownButton.Hide();
|
|
else
|
|
{
|
|
switch (localUser?.State)
|
|
{
|
|
default:
|
|
countdownButton.Hide();
|
|
break;
|
|
|
|
case MultiplayerUserState.Idle:
|
|
case MultiplayerUserState.Spectating:
|
|
case MultiplayerUserState.Ready:
|
|
countdownButton.Show();
|
|
break;
|
|
}
|
|
}
|
|
|
|
readyButton.Enabled.Value = countdownButton.Enabled.Value =
|
|
Room.State == MultiplayerRoomState.Open
|
|
&& CurrentPlaylistItem.Value?.ID == Room.Settings.PlaylistItemId
|
|
&& !Room.Playlist.Single(i => i.ID == Room.Settings.PlaylistItemId).Expired
|
|
&& !operationInProgress.Value;
|
|
|
|
// When the local user is the host and spectating the match, the ready button should be enabled only if any users are ready.
|
|
if (localUser?.State == MultiplayerUserState.Spectating)
|
|
readyButton.Enabled.Value &= Client.IsHost && newCountReady > 0 && Room.Countdown == null;
|
|
|
|
if (newCountReady == countReady)
|
|
return;
|
|
|
|
readySampleDelegate?.Cancel();
|
|
readySampleDelegate = Schedule(() =>
|
|
{
|
|
if (newCountReady > countReady)
|
|
{
|
|
if (newCountReady == newCountTotal)
|
|
sampleReadyAll?.Play();
|
|
else
|
|
sampleReady?.Play();
|
|
}
|
|
else if (newCountReady < countReady)
|
|
{
|
|
sampleUnready?.Play();
|
|
}
|
|
|
|
countReady = newCountReady;
|
|
});
|
|
}
|
|
}
|
|
}
|