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-01-27 21:27:31 +08:00
|
|
|
using System;
|
2020-12-28 19:32:06 +08:00
|
|
|
using System.Collections.Generic;
|
2020-12-20 23:37:13 +08:00
|
|
|
using System.Linq;
|
|
|
|
using Humanizer;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2021-01-27 21:15:53 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2020-12-22 15:23:06 +08:00
|
|
|
using osu.Framework.Graphics;
|
2021-01-27 21:15:53 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
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-28 19:32:06 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2021-01-27 21:15:53 +08:00
|
|
|
using osu.Game.Graphics;
|
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-01-18 16:50:32 +08:00
|
|
|
using osu.Game.Overlays.Mods;
|
2020-12-28 19:32:06 +08:00
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2021-01-27 21:15:53 +08:00
|
|
|
using osu.Game.Screens.Play.HUD;
|
2020-12-20 23:04:06 +08:00
|
|
|
using osu.Game.Screens.Select;
|
2021-01-27 21:15:53 +08:00
|
|
|
using osuTK;
|
2020-12-20 23:04:06 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-20 23:04:06 +08:00
|
|
|
{
|
2020-12-26 00:05:29 +08:00
|
|
|
public class MultiplayerMatchSongSelect : SongSelect, IOnlinePlaySubScreen
|
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
|
|
|
|
2021-01-27 21:33:03 +08:00
|
|
|
private readonly Bindable<IReadOnlyList<Mod>> freeMods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
|
|
|
|
|
2021-01-27 21:27:31 +08:00
|
|
|
private readonly FreeModSelectOverlay freeModSelectOverlay;
|
2020-12-22 16:08:02 +08:00
|
|
|
private LoadingLayer loadingLayer;
|
|
|
|
|
2020-12-28 19:32:06 +08:00
|
|
|
private WorkingBeatmap initialBeatmap;
|
|
|
|
private RulesetInfo initialRuleset;
|
|
|
|
private IReadOnlyList<Mod> initialMods;
|
|
|
|
|
|
|
|
private bool itemSelected;
|
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
public MultiplayerMatchSongSelect()
|
2020-12-22 15:23:06 +08:00
|
|
|
{
|
|
|
|
Padding = new MarginPadding { Horizontal = HORIZONTAL_OVERFLOW_PADDING };
|
2021-01-27 21:15:53 +08:00
|
|
|
|
2021-01-27 21:33:03 +08:00
|
|
|
freeModSelectOverlay = new FreeModSelectOverlay(isValidMod) { SelectedMods = { BindTarget = freeMods } };
|
2020-12-22 15:23:06 +08:00
|
|
|
}
|
|
|
|
|
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-28 19:32:06 +08:00
|
|
|
initialBeatmap = Beatmap.Value;
|
|
|
|
initialRuleset = Ruleset.Value;
|
|
|
|
initialMods = Mods.Value.ToList();
|
2021-01-27 21:15:53 +08:00
|
|
|
|
2021-01-27 21:33:03 +08:00
|
|
|
freeMods.Value = playlist.FirstOrDefault()?.AllowedMods.Select(m => m.CreateCopy()).ToArray() ?? Array.Empty<Mod>();
|
|
|
|
|
2021-01-27 21:15:53 +08:00
|
|
|
FooterPanels.Add(freeModSelectOverlay);
|
2020-12-22 16:08:02 +08:00
|
|
|
}
|
|
|
|
|
2020-12-20 23:04:06 +08:00
|
|
|
protected override bool OnStart()
|
|
|
|
{
|
2020-12-28 19:32:06 +08:00
|
|
|
itemSelected = true;
|
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()));
|
|
|
|
|
2021-01-27 21:23:38 +08:00
|
|
|
item.AllowedMods.Clear();
|
2021-01-27 21:33:03 +08:00
|
|
|
item.AllowedMods.AddRange(freeMods.Value.Select(m => m.CreateCopy()));
|
2021-01-27 21:23:38 +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
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2020-12-28 19:32:06 +08:00
|
|
|
public override bool OnExiting(IScreen next)
|
|
|
|
{
|
|
|
|
if (!itemSelected)
|
|
|
|
{
|
|
|
|
Beatmap.Value = initialBeatmap;
|
|
|
|
Ruleset.Value = initialRuleset;
|
|
|
|
Mods.Value = initialMods;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.OnExiting(next);
|
|
|
|
}
|
|
|
|
|
2020-12-20 23:37:13 +08:00
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new PlayBeatmapDetailArea();
|
2021-01-18 16:50:32 +08:00
|
|
|
|
2021-01-27 21:15:53 +08:00
|
|
|
protected override ModSelectOverlay CreateModSelectOverlay() => new SoloModSelectOverlay(isValidMod);
|
|
|
|
|
|
|
|
protected override IEnumerable<(FooterButton, OverlayContainer)> CreateFooterButtons()
|
|
|
|
{
|
|
|
|
var buttons = base.CreateFooterButtons().ToList();
|
2021-01-27 21:33:03 +08:00
|
|
|
buttons.Insert(buttons.FindIndex(b => b.Item1 is FooterButtonMods) + 1, (new FooterButtonFreeMods { Current = freeMods }, freeModSelectOverlay));
|
2021-01-27 21:15:53 +08:00
|
|
|
return buttons;
|
|
|
|
}
|
2021-01-18 16:50:32 +08:00
|
|
|
|
|
|
|
private bool isValidMod(Mod mod) => !(mod is ModAutoplay) && (mod as MultiMod)?.Mods.Any(mm => mm is ModAutoplay) != true;
|
2020-12-20 23:04:06 +08:00
|
|
|
}
|
2021-01-27 21:15:53 +08:00
|
|
|
|
|
|
|
public class FooterButtonFreeMods : FooterButton, IHasCurrentValue<IReadOnlyList<Mod>>
|
|
|
|
{
|
|
|
|
public Bindable<IReadOnlyList<Mod>> Current
|
|
|
|
{
|
|
|
|
get => modDisplay.Current;
|
|
|
|
set => modDisplay.Current = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private readonly ModDisplay modDisplay;
|
|
|
|
|
|
|
|
public FooterButtonFreeMods()
|
|
|
|
{
|
|
|
|
ButtonContentContainer.Add(modDisplay = new ModDisplay
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
DisplayUnrankedText = false,
|
|
|
|
Scale = new Vector2(0.8f),
|
|
|
|
ExpansionMode = ExpansionMode.AlwaysContracted,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
SelectedColour = colours.Yellow;
|
|
|
|
DeselectedColour = SelectedColour.Opacity(0.5f);
|
|
|
|
Text = @"freemods";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
Current.BindValueChanged(_ => updateModDisplay(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateModDisplay()
|
|
|
|
{
|
|
|
|
if (Current.Value?.Count > 0)
|
|
|
|
modDisplay.FadeIn();
|
|
|
|
else
|
|
|
|
modDisplay.FadeOut();
|
|
|
|
}
|
|
|
|
}
|
2020-12-20 23:04:06 +08:00
|
|
|
}
|