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.
|
|
|
|
|
2020-12-20 23:37:13 +08:00
|
|
|
using System.Linq;
|
|
|
|
using Humanizer;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2020-12-22 15:23:06 +08:00
|
|
|
using osu.Framework.Graphics;
|
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;
|
|
|
|
using osu.Game.Online.RealtimeMultiplayer;
|
2020-12-20 23:04:06 +08:00
|
|
|
using osu.Game.Screens.Select;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi.RealtimeMultiplayer
|
|
|
|
{
|
2020-12-20 23:37:13 +08:00
|
|
|
public class RealtimeMatchSongSelect : SongSelect, IMultiplayerSubScreen
|
2020-12-20 23:04:06 +08:00
|
|
|
{
|
2020-12-20 23:37:13 +08:00
|
|
|
public string ShortTitle => "song selection";
|
|
|
|
|
|
|
|
public override string Title => ShortTitle.Humanize();
|
|
|
|
|
|
|
|
[Resolved(typeof(Room), nameof(Room.Playlist))]
|
|
|
|
private BindableList<PlaylistItem> playlist { get; set; }
|
|
|
|
|
|
|
|
[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;
|
|
|
|
|
2020-12-22 15:23:06 +08:00
|
|
|
public RealtimeMatchSongSelect()
|
|
|
|
{
|
|
|
|
Padding = new MarginPadding { Horizontal = HORIZONTAL_OVERFLOW_PADDING };
|
|
|
|
}
|
|
|
|
|
2020-12-22 16:08:02 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
AddInternal(loadingLayer = new LoadingLayer(Carousel));
|
|
|
|
}
|
|
|
|
|
2020-12-20 23:04:06 +08:00
|
|
|
protected override bool OnStart()
|
|
|
|
{
|
2020-12-20 23:37:13 +08:00
|
|
|
var item = new PlaylistItem();
|
|
|
|
|
|
|
|
item.Beatmap.Value = Beatmap.Value.BeatmapInfo;
|
|
|
|
item.Ruleset.Value = Ruleset.Value;
|
|
|
|
|
|
|
|
item.RequiredMods.Clear();
|
|
|
|
item.RequiredMods.AddRange(Mods.Value.Select(m => m.CreateCopy()));
|
|
|
|
|
|
|
|
// 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-22 16:08:02 +08:00
|
|
|
return Schedule(() =>
|
|
|
|
{
|
|
|
|
loadingLayer.Hide();
|
|
|
|
|
|
|
|
if (t.IsCompletedSuccessfully)
|
|
|
|
this.Exit();
|
|
|
|
else
|
|
|
|
Logger.Log($"Could not use current beatmap ({t.Exception?.Message})", level: LogLevel.Important);
|
|
|
|
});
|
|
|
|
});
|
2020-12-22 15:50:30 +08:00
|
|
|
}
|
2020-12-20 23:37:13 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
playlist.Clear();
|
|
|
|
playlist.Add(item);
|
2020-12-22 15:50:30 +08:00
|
|
|
this.Exit();
|
2020-12-20 23:37:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2020-12-20 23:04:06 +08:00
|
|
|
}
|
2020-12-20 23:37:13 +08:00
|
|
|
|
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new PlayBeatmapDetailArea();
|
2020-12-20 23:04:06 +08:00
|
|
|
}
|
|
|
|
}
|