2020-12-20 23:04:06 +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.
|
|
|
|
|
2021-10-20 20:08:58 +08:00
|
|
|
using System.Linq;
|
2021-12-10 13:44:35 +08:00
|
|
|
using System.Threading.Tasks;
|
2020-12-20 23:37:13 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Screens;
|
2021-03-03 13:04:00 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2020-12-22 16:08:02 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2020-12-20 23:37:13 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2021-03-03 13:04:00 +08:00
|
|
|
using osu.Game.Rulesets;
|
2020-12-28 19:32:06 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2020-12-20 23:04:06 +08:00
|
|
|
using osu.Game.Screens.Select;
|
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-20 23:04:06 +08:00
|
|
|
{
|
2021-02-01 13:57:39 +08:00
|
|
|
public class MultiplayerMatchSongSelect : OnlinePlaySongSelect
|
2020-12-20 23:04:06 +08:00
|
|
|
{
|
2020-12-20 23:37:13 +08:00
|
|
|
[Resolved]
|
2021-08-15 18:56:24 +08:00
|
|
|
private MultiplayerClient client { get; set; }
|
2021-08-14 13:20:36 +08:00
|
|
|
|
2021-12-10 19:08:59 +08:00
|
|
|
private readonly long? itemToEdit;
|
2021-12-10 00:15:15 +08:00
|
|
|
|
2020-12-22 16:08:02 +08:00
|
|
|
private LoadingLayer loadingLayer;
|
|
|
|
|
2021-03-03 13:04:00 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Construct a new instance of multiplayer song select.
|
|
|
|
/// </summary>
|
2021-08-24 12:29:19 +08:00
|
|
|
/// <param name="room">The room.</param>
|
2021-12-10 00:15:15 +08: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 13:04:00 +08:00
|
|
|
/// <param name="beatmap">An optional initial beatmap selection to perform.</param>
|
|
|
|
/// <param name="ruleset">An optional initial ruleset selection to perform.</param>
|
2021-12-10 19:08:59 +08:00
|
|
|
public MultiplayerMatchSongSelect(Room room, long? itemToEdit = null, WorkingBeatmap beatmap = null, RulesetInfo ruleset = null)
|
2021-08-24 12:29:19 +08:00
|
|
|
: base(room)
|
2021-03-03 13:04:00 +08:00
|
|
|
{
|
2021-12-10 00:15:15 +08:00
|
|
|
this.itemToEdit = itemToEdit;
|
|
|
|
|
2021-03-03 13:04:00 +08:00
|
|
|
if (beatmap != null || ruleset != null)
|
|
|
|
{
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
if (beatmap != null) Beatmap.Value = beatmap;
|
|
|
|
if (ruleset != null) Ruleset.Value = ruleset;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-22 16:08:02 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
AddInternal(loadingLayer = new LoadingLayer(true));
|
2020-12-22 16:08:02 +08:00
|
|
|
}
|
|
|
|
|
2021-02-01 17:50:32 +08:00
|
|
|
protected override void SelectItem(PlaylistItem item)
|
2020-12-20 23:04:06 +08:00
|
|
|
{
|
2020-12-20 23:37:13 +08: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 15:50:30 +08:00
|
|
|
{
|
2020-12-22 16:08:02 +08:00
|
|
|
loadingLayer.Show();
|
|
|
|
|
2021-12-10 13:44:35 +08:00
|
|
|
var multiplayerItem = new MultiplayerPlaylistItem
|
2021-10-20 20:08:58 +08:00
|
|
|
{
|
2021-12-10 19:08:59 +08:00
|
|
|
ID = itemToEdit ?? 0,
|
2022-02-15 22:33:26 +08:00
|
|
|
BeatmapID = item.Beatmap.OnlineID,
|
|
|
|
BeatmapChecksum = item.Beatmap.MD5Hash,
|
2021-10-20 20:08:58 +08:00
|
|
|
RulesetID = item.RulesetID,
|
2022-02-15 15:01:14 +08:00
|
|
|
RequiredMods = item.RequiredMods.ToArray(),
|
|
|
|
AllowedMods = item.AllowedMods.ToArray()
|
2021-12-10 13:44:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
Task task = itemToEdit != null ? client.EditPlaylistItem(multiplayerItem) : client.AddPlaylistItem(multiplayerItem);
|
|
|
|
|
2022-03-30 22:57:19 +08:00
|
|
|
task.FireAndForget(onSuccess: () => Schedule(() =>
|
2020-12-22 15:50:30 +08:00
|
|
|
{
|
2022-04-06 10:32:35 +08:00
|
|
|
loadingLayer.Hide();
|
2021-11-19 12:58:03 +08:00
|
|
|
|
2022-03-30 22:57:19 +08:00
|
|
|
// If an error or server side trigger occurred this screen may have already exited by external means.
|
2022-04-06 14:13:02 +08:00
|
|
|
if (this.IsCurrentScreen())
|
2021-11-19 12:58:03 +08:00
|
|
|
this.Exit();
|
2022-03-30 22:57:19 +08:00
|
|
|
}), onError: _ => Schedule(() =>
|
|
|
|
{
|
|
|
|
loadingLayer.Hide();
|
|
|
|
Carousel.AllowSelection = true;
|
|
|
|
}));
|
2020-12-22 15:50:30 +08:00
|
|
|
}
|
2020-12-20 23:37:13 +08:00
|
|
|
else
|
|
|
|
{
|
2021-02-01 13:57:39 +08:00
|
|
|
Playlist.Clear();
|
|
|
|
Playlist.Add(item);
|
2020-12-22 15:50:30 +08:00
|
|
|
this.Exit();
|
2020-12-20 23:37:13 +08:00
|
|
|
}
|
2020-12-28 19:32:06 +08:00
|
|
|
}
|
|
|
|
|
2020-12-20 23:37:13 +08:00
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new PlayBeatmapDetailArea();
|
2021-02-01 14:07:56 +08:00
|
|
|
|
2022-05-04 22:08:41 +08:00
|
|
|
protected override bool IsValidMod(Mod mod) => base.IsValidMod(mod) && mod.IsPlayable(ModUsage.MultiplayerGlobal);
|
2022-03-16 16:54:18 +08:00
|
|
|
|
2022-05-04 22:08:41 +08:00
|
|
|
protected override bool IsValidFreeMod(Mod mod) => base.IsValidFreeMod(mod) && mod.IsPlayable(ModUsage.MultiplayerLocal);
|
2020-12-20 23:04:06 +08:00
|
|
|
}
|
|
|
|
}
|