2020-12-21 00:04:06 +09: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-15 18:44:15 +09:00
|
|
|
using System;
|
2021-10-20 21:08:58 +09:00
|
|
|
using System.Linq;
|
2021-12-10 14:44:35 +09:00
|
|
|
using System.Threading.Tasks;
|
2020-12-21 00:37:13 +09:00
|
|
|
using osu.Framework.Allocation;
|
2022-06-17 16:55:35 +09:00
|
|
|
using osu.Framework.Bindables;
|
2022-06-27 20:10:15 +09:00
|
|
|
using osu.Framework.Logging;
|
2020-12-21 00:37:13 +09:00
|
|
|
using osu.Framework.Screens;
|
2021-03-03 14:04:00 +09:00
|
|
|
using osu.Game.Beatmaps;
|
2020-12-22 17:08:02 +09:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2020-12-21 00:37:13 +09:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2020-12-25 13:38:11 +09:00
|
|
|
using osu.Game.Online.Rooms;
|
2021-03-03 14:04:00 +09:00
|
|
|
using osu.Game.Rulesets;
|
2020-12-28 12:32:06 +01:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2020-12-21 00:04:06 +09:00
|
|
|
using osu.Game.Screens.Select;
|
|
|
|
|
2020-12-25 16:50:00 +01:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-21 00:04:06 +09:00
|
|
|
{
|
2021-02-01 14:57:39 +09:00
|
|
|
public class MultiplayerMatchSongSelect : OnlinePlaySongSelect
|
2020-12-21 00:04:06 +09:00
|
|
|
{
|
2020-12-21 00:37:13 +09:00
|
|
|
[Resolved]
|
2022-06-15 18:44:15 +09:00
|
|
|
private MultiplayerClient client { get; set; } = null!;
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private OngoingOperationTracker operationTracker { get; set; } = null!;
|
2021-08-14 13:20:36 +08:00
|
|
|
|
2022-06-17 16:55:35 +09:00
|
|
|
private readonly IBindable<bool> operationInProgress = new Bindable<bool>();
|
2021-12-10 20:08:59 +09:00
|
|
|
private readonly long? itemToEdit;
|
2021-12-10 01:15:15 +09:00
|
|
|
|
2022-06-15 18:44:15 +09:00
|
|
|
private LoadingLayer loadingLayer = null!;
|
|
|
|
private IDisposable? selectionOperation;
|
2020-12-22 17:08:02 +09:00
|
|
|
|
2021-03-03 14:04:00 +09:00
|
|
|
/// <summary>
|
|
|
|
/// Construct a new instance of multiplayer song select.
|
|
|
|
/// </summary>
|
2021-08-24 13:29:19 +09:00
|
|
|
/// <param name="room">The room.</param>
|
2021-12-10 01:15:15 +09:00
|
|
|
/// <param name="itemToEdit">The item to be edited. May be null, in which case a new item will be added to the playlist.</param>
|
2021-03-03 14:04:00 +09:00
|
|
|
/// <param name="beatmap">An optional initial beatmap selection to perform.</param>
|
|
|
|
/// <param name="ruleset">An optional initial ruleset selection to perform.</param>
|
2022-06-15 18:44:15 +09:00
|
|
|
public MultiplayerMatchSongSelect(Room room, long? itemToEdit = null, WorkingBeatmap? beatmap = null, RulesetInfo? ruleset = null)
|
2021-08-24 13:29:19 +09:00
|
|
|
: base(room)
|
2021-03-03 14:04:00 +09:00
|
|
|
{
|
2021-12-10 01:15:15 +09:00
|
|
|
this.itemToEdit = itemToEdit;
|
|
|
|
|
2021-03-03 14:04:00 +09:00
|
|
|
if (beatmap != null || ruleset != null)
|
|
|
|
{
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
if (beatmap != null) Beatmap.Value = beatmap;
|
|
|
|
if (ruleset != null) Ruleset.Value = ruleset;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-22 17:08:02 +09:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2021-01-04 22:42:39 +09:00
|
|
|
AddInternal(loadingLayer = new LoadingLayer(true));
|
2020-12-22 17:08:02 +09:00
|
|
|
}
|
|
|
|
|
2022-06-17 16:55:35 +09:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
operationInProgress.BindTo(operationTracker.InProgress);
|
|
|
|
operationInProgress.BindValueChanged(_ => updateLoadingLayer(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateLoadingLayer()
|
|
|
|
{
|
|
|
|
if (operationInProgress.Value)
|
|
|
|
loadingLayer.Show();
|
|
|
|
else
|
|
|
|
loadingLayer.Hide();
|
|
|
|
}
|
|
|
|
|
2022-06-18 14:28:25 +09:00
|
|
|
protected override bool SelectItem(PlaylistItem item)
|
2020-12-21 00:04:06 +09:00
|
|
|
{
|
2022-06-17 16:55:35 +09:00
|
|
|
if (operationInProgress.Value)
|
2022-06-27 20:10:15 +09:00
|
|
|
{
|
|
|
|
Logger.Log($"{nameof(SelectedItem)} aborted due to {nameof(operationInProgress)}");
|
2022-06-18 14:28:25 +09:00
|
|
|
return false;
|
2022-06-27 20:10:15 +09:00
|
|
|
}
|
2022-06-17 16:55:35 +09:00
|
|
|
|
2020-12-21 00:37:13 +09:00
|
|
|
// If the client is already in a room, update via the client.
|
|
|
|
// Otherwise, update the playlist directly in preparation for it to be submitted to the API on match creation.
|
|
|
|
if (client.Room != null)
|
2020-12-22 16:50:30 +09:00
|
|
|
{
|
2022-06-15 18:44:15 +09:00
|
|
|
selectionOperation = operationTracker.BeginOperation();
|
|
|
|
|
2021-12-10 14:44:35 +09:00
|
|
|
var multiplayerItem = new MultiplayerPlaylistItem
|
2021-10-20 21:08:58 +09:00
|
|
|
{
|
2021-12-10 20:08:59 +09:00
|
|
|
ID = itemToEdit ?? 0,
|
2022-02-15 23:33:26 +09:00
|
|
|
BeatmapID = item.Beatmap.OnlineID,
|
|
|
|
BeatmapChecksum = item.Beatmap.MD5Hash,
|
2021-10-20 21:08:58 +09:00
|
|
|
RulesetID = item.RulesetID,
|
2022-02-15 16:01:14 +09:00
|
|
|
RequiredMods = item.RequiredMods.ToArray(),
|
|
|
|
AllowedMods = item.AllowedMods.ToArray()
|
2021-12-10 14:44:35 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
Task task = itemToEdit != null ? client.EditPlaylistItem(multiplayerItem) : client.AddPlaylistItem(multiplayerItem);
|
|
|
|
|
2022-06-15 18:44:15 +09:00
|
|
|
task.FireAndForget(onSuccess: () =>
|
2020-12-22 16:50:30 +09:00
|
|
|
{
|
2022-06-15 18:44:15 +09:00
|
|
|
selectionOperation.Dispose();
|
2021-11-19 13:58:03 +09:00
|
|
|
|
2022-06-15 18:44:15 +09:00
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
// If an error or server side trigger occurred this screen may have already exited by external means.
|
|
|
|
if (this.IsCurrentScreen())
|
|
|
|
this.Exit();
|
|
|
|
});
|
|
|
|
}, onError: _ =>
|
2022-03-30 23:57:19 +09:00
|
|
|
{
|
2022-06-15 18:44:15 +09:00
|
|
|
selectionOperation.Dispose();
|
|
|
|
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
Carousel.AllowSelection = true;
|
|
|
|
});
|
|
|
|
});
|
2020-12-22 16:50:30 +09:00
|
|
|
}
|
2020-12-21 00:37:13 +09:00
|
|
|
else
|
|
|
|
{
|
2021-02-01 14:57:39 +09:00
|
|
|
Playlist.Clear();
|
|
|
|
Playlist.Add(item);
|
2020-12-22 16:50:30 +09:00
|
|
|
this.Exit();
|
2020-12-21 00:37:13 +09:00
|
|
|
}
|
2022-06-18 14:28:25 +09:00
|
|
|
|
|
|
|
return true;
|
2020-12-28 12:32:06 +01:00
|
|
|
}
|
|
|
|
|
2020-12-21 00:37:13 +09:00
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new PlayBeatmapDetailArea();
|
2021-02-01 15:07:56 +09:00
|
|
|
|
2022-05-05 14:37:38 +03:00
|
|
|
protected override bool IsValidMod(Mod mod) => base.IsValidMod(mod) && mod.ValidForMultiplayer;
|
2022-03-16 11:54:18 +03:00
|
|
|
|
2022-05-05 14:37:38 +03:00
|
|
|
protected override bool IsValidFreeMod(Mod mod) => base.IsValidFreeMod(mod) && mod.ValidForMultiplayerAsFreeMod;
|
2020-12-21 00:04:06 +09:00
|
|
|
}
|
|
|
|
}
|