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-02-01 14:06:50 +08:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2020-12-20 23:37:13 +08:00
|
|
|
using osu.Framework.Allocation;
|
2020-12-22 15:50:30 +08:00
|
|
|
using osu.Framework.Logging;
|
2020-12-20 23:37:13 +08:00
|
|
|
using osu.Framework.Screens;
|
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;
|
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]
|
|
|
|
private StatefulMultiplayerClient client { get; set; }
|
2020-12-20 23:04:06 +08:00
|
|
|
|
2020-12-22 16:08:02 +08:00
|
|
|
private LoadingLayer loadingLayer;
|
|
|
|
|
|
|
|
[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 14:06:50 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
Mods.Value = Playlist.FirstOrDefault()?.RequiredMods.Select(m => m.CreateCopy()).ToArray() ?? Array.Empty<Mod>();
|
|
|
|
}
|
|
|
|
|
2021-02-01 13:57:39 +08:00
|
|
|
protected override void OnSetItem(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();
|
|
|
|
|
|
|
|
client.ChangeSettings(item: item).ContinueWith(t =>
|
2020-12-22 15:50:30 +08:00
|
|
|
{
|
2020-12-23 16:10:34 +08:00
|
|
|
Schedule(() =>
|
2020-12-22 16:08:02 +08:00
|
|
|
{
|
|
|
|
loadingLayer.Hide();
|
|
|
|
|
|
|
|
if (t.IsCompletedSuccessfully)
|
|
|
|
this.Exit();
|
|
|
|
else
|
2020-12-23 21:18:24 +08:00
|
|
|
{
|
2020-12-22 16:08:02 +08:00
|
|
|
Logger.Log($"Could not use current beatmap ({t.Exception?.Message})", level: LogLevel.Important);
|
2020-12-23 21:18:24 +08:00
|
|
|
Carousel.AllowSelection = true;
|
|
|
|
}
|
2020-12-22 16:08:02 +08:00
|
|
|
});
|
|
|
|
});
|
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
|
|
|
|
|
|
|
protected override bool IsValidFreeMod(Mod mod) => base.IsValidFreeMod(mod) && !(mod is ModTimeRamp) && !(mod is ModRateAdjust);
|
2020-12-20 23:04:06 +08:00
|
|
|
}
|
|
|
|
}
|