2021-02-01 13:57:39 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using Humanizer;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Online.Rooms;
|
|
|
|
using osu.Game.Overlays.Mods;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osu.Game.Screens.Select;
|
2021-02-02 11:49:49 +08:00
|
|
|
using osu.Game.Utils;
|
2021-02-01 13:57:39 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
|
|
|
{
|
|
|
|
public abstract class OnlinePlaySongSelect : SongSelect, IOnlinePlaySubScreen
|
|
|
|
{
|
|
|
|
public string ShortTitle => "song selection";
|
|
|
|
|
|
|
|
public override string Title => ShortTitle.Humanize();
|
|
|
|
|
|
|
|
public override bool AllowEditing => false;
|
|
|
|
|
|
|
|
[Resolved(typeof(Room), nameof(Room.Playlist))]
|
|
|
|
protected BindableList<PlaylistItem> Playlist { get; private set; }
|
|
|
|
|
2021-02-16 14:14:19 +08:00
|
|
|
protected readonly Bindable<IReadOnlyList<Mod>> FreeMods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
|
|
|
|
|
2021-02-01 13:57:39 +08:00
|
|
|
private readonly FreeModSelectOverlay freeModSelectOverlay;
|
|
|
|
|
|
|
|
private WorkingBeatmap initialBeatmap;
|
|
|
|
private RulesetInfo initialRuleset;
|
|
|
|
private IReadOnlyList<Mod> initialMods;
|
|
|
|
private bool itemSelected;
|
|
|
|
|
|
|
|
protected OnlinePlaySongSelect()
|
|
|
|
{
|
|
|
|
Padding = new MarginPadding { Horizontal = HORIZONTAL_OVERFLOW_PADDING };
|
|
|
|
|
|
|
|
freeModSelectOverlay = new FreeModSelectOverlay
|
|
|
|
{
|
2021-02-16 14:14:19 +08:00
|
|
|
SelectedMods = { BindTarget = FreeMods },
|
2021-02-01 13:57:39 +08:00
|
|
|
IsValidMod = IsValidFreeMod,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
initialBeatmap = Beatmap.Value;
|
|
|
|
initialRuleset = Ruleset.Value;
|
|
|
|
initialMods = Mods.Value.ToList();
|
|
|
|
|
|
|
|
FooterPanels.Add(freeModSelectOverlay);
|
2021-02-02 17:56:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
// At this point, Mods contains both the required and allowed mods. For selection purposes, it should only contain the required mods.
|
|
|
|
// Similarly, freeMods is currently empty but should only contain the allowed mods.
|
|
|
|
Mods.Value = Playlist.FirstOrDefault()?.RequiredMods.Select(m => m.CreateCopy()).ToArray() ?? Array.Empty<Mod>();
|
2021-02-16 14:14:19 +08:00
|
|
|
FreeMods.Value = Playlist.FirstOrDefault()?.AllowedMods.Select(m => m.CreateCopy()).ToArray() ?? Array.Empty<Mod>();
|
2021-02-02 12:54:27 +08:00
|
|
|
|
|
|
|
Ruleset.BindValueChanged(onRulesetChanged);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onRulesetChanged(ValueChangedEvent<RulesetInfo> ruleset)
|
|
|
|
{
|
2021-02-16 14:14:19 +08:00
|
|
|
FreeMods.Value = Array.Empty<Mod>();
|
2021-02-01 13:57:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected sealed override bool OnStart()
|
|
|
|
{
|
|
|
|
itemSelected = true;
|
|
|
|
|
|
|
|
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()));
|
|
|
|
|
|
|
|
item.AllowedMods.Clear();
|
2021-02-16 14:14:19 +08:00
|
|
|
item.AllowedMods.AddRange(FreeMods.Value.Select(m => m.CreateCopy()));
|
2021-02-01 13:57:39 +08:00
|
|
|
|
2021-02-01 17:50:32 +08:00
|
|
|
SelectItem(item);
|
2021-02-01 13:57:39 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-02-01 17:50:32 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Invoked when the user has requested a selection of a beatmap.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="item">The resultant <see cref="PlaylistItem"/>. This item has not yet been added to the <see cref="Room"/>'s.</param>
|
|
|
|
protected abstract void SelectItem(PlaylistItem item);
|
2021-02-01 13:57:39 +08:00
|
|
|
|
|
|
|
public override bool OnBackButton()
|
|
|
|
{
|
|
|
|
if (freeModSelectOverlay.State.Value == Visibility.Visible)
|
|
|
|
{
|
|
|
|
freeModSelectOverlay.Hide();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.OnBackButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool OnExiting(IScreen next)
|
|
|
|
{
|
|
|
|
if (!itemSelected)
|
|
|
|
{
|
|
|
|
Beatmap.Value = initialBeatmap;
|
|
|
|
Ruleset.Value = initialRuleset;
|
|
|
|
Mods.Value = initialMods;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.OnExiting(next);
|
|
|
|
}
|
|
|
|
|
2021-02-05 15:42:35 +08:00
|
|
|
protected override ModSelectOverlay CreateModSelectOverlay() => new LocalPlayerModSelectOverlay
|
2021-02-01 13:57:39 +08:00
|
|
|
{
|
|
|
|
IsValidMod = IsValidMod
|
|
|
|
};
|
|
|
|
|
|
|
|
protected override IEnumerable<(FooterButton, OverlayContainer)> CreateFooterButtons()
|
|
|
|
{
|
|
|
|
var buttons = base.CreateFooterButtons().ToList();
|
2021-02-16 14:14:19 +08:00
|
|
|
buttons.Insert(buttons.FindIndex(b => b.Item1 is FooterButtonMods) + 1, (new FooterButtonFreeMods { Current = FreeMods }, freeModSelectOverlay));
|
2021-02-01 13:57:39 +08:00
|
|
|
return buttons;
|
|
|
|
}
|
|
|
|
|
2021-02-01 17:50:32 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Checks whether a given <see cref="Mod"/> is valid for global selection.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="mod">The <see cref="Mod"/> to check.</param>
|
|
|
|
/// <returns>Whether <paramref name="mod"/> is a valid mod for online play.</returns>
|
2021-02-02 11:49:49 +08:00
|
|
|
protected virtual bool IsValidMod(Mod mod) => mod.HasImplementation && !ModUtils.FlattenMod(mod).Any(m => m is ModAutoplay);
|
2021-02-01 13:57:39 +08:00
|
|
|
|
2021-02-01 17:50:32 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Checks whether a given <see cref="Mod"/> is valid for per-player free-mod selection.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="mod">The <see cref="Mod"/> to check.</param>
|
|
|
|
/// <returns>Whether <paramref name="mod"/> is a selectable free-mod.</returns>
|
2021-02-01 13:57:39 +08:00
|
|
|
protected virtual bool IsValidFreeMod(Mod mod) => IsValidMod(mod);
|
|
|
|
}
|
|
|
|
}
|