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;
|
2022-09-07 19:01:17 +08:00
|
|
|
using System.Diagnostics;
|
2021-02-01 13:57:39 +08:00
|
|
|
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;
|
2022-02-15 15:01:14 +08:00
|
|
|
using osu.Game.Online.API;
|
2021-02-01 13:57:39 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2022-05-05 04:17:40 +08:00
|
|
|
using osu.Game.Overlays;
|
2021-02-01 13:57:39 +08:00
|
|
|
using osu.Game.Overlays.Mods;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osu.Game.Screens.Select;
|
2021-08-14 22:39:12 +08:00
|
|
|
using osu.Game.Users;
|
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))]
|
2022-09-07 19:01:17 +08:00
|
|
|
protected BindableList<PlaylistItem> Playlist { get; private set; } = null!;
|
2021-02-01 13:57:39 +08:00
|
|
|
|
2022-09-07 19:01:17 +08:00
|
|
|
[Resolved]
|
|
|
|
private RulesetStore rulesets { get; set; } = null!;
|
2021-12-10 00:15:15 +08:00
|
|
|
|
2022-02-15 15:01:14 +08:00
|
|
|
[Resolved]
|
2022-09-07 19:01:17 +08:00
|
|
|
private BeatmapManager beatmapManager { get; set; } = null!;
|
2022-02-15 15:01:14 +08:00
|
|
|
|
2021-08-14 22:39:12 +08:00
|
|
|
protected override UserActivity InitialActivity => new UserActivity.InLobby(room);
|
|
|
|
|
2021-02-16 14:14:19 +08:00
|
|
|
protected readonly Bindable<IReadOnlyList<Mod>> FreeMods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
|
|
|
|
|
2021-08-24 12:29:19 +08:00
|
|
|
private readonly Room room;
|
2022-09-07 19:01:17 +08:00
|
|
|
private readonly PlaylistItem? initialItem;
|
|
|
|
private readonly FreeModSelectOverlay freeModSelectOverlay;
|
2021-02-01 13:57:39 +08:00
|
|
|
|
2022-09-07 19:01:17 +08:00
|
|
|
private IDisposable? freeModSelectOverlayRegistration;
|
2022-05-05 04:25:13 +08:00
|
|
|
|
2022-09-07 19:01:17 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Creates a new <see cref="OnlinePlaySongSelect"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="room">The room.</param>
|
|
|
|
/// <param name="initialItem">An optional initial <see cref="PlaylistItem"/> to use for the initial beatmap/ruleset/mods.
|
|
|
|
/// If <c>null</c>, the last <see cref="PlaylistItem"/> in the room will be used.</param>
|
|
|
|
protected OnlinePlaySongSelect(Room room, PlaylistItem? initialItem = null)
|
2021-02-01 13:57:39 +08:00
|
|
|
{
|
2021-08-24 12:29:19 +08:00
|
|
|
this.room = room;
|
2022-09-07 19:01:17 +08:00
|
|
|
this.initialItem = initialItem ?? room.Playlist.LastOrDefault();
|
2021-08-24 12:29:19 +08:00
|
|
|
|
2021-02-01 13:57:39 +08:00
|
|
|
Padding = new MarginPadding { Horizontal = HORIZONTAL_OVERFLOW_PADDING };
|
|
|
|
|
2022-05-11 04:29:57 +08:00
|
|
|
freeModSelectOverlay = new FreeModSelectOverlay
|
2021-02-01 13:57:39 +08:00
|
|
|
{
|
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()
|
|
|
|
{
|
2021-08-12 17:02:00 +08:00
|
|
|
LeftArea.Padding = new MarginPadding { Top = Header.HEIGHT };
|
2022-05-05 04:25:13 +08:00
|
|
|
LoadComponent(freeModSelectOverlay);
|
2021-02-02 17:56:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2022-09-07 19:01:17 +08:00
|
|
|
if (initialItem != null)
|
2022-02-15 15:01:14 +08:00
|
|
|
{
|
2022-09-07 19:01:17 +08:00
|
|
|
// Prefer using a local databased beatmap lookup since OnlineId may be -1 for an invalid beatmap selection.
|
|
|
|
BeatmapInfo? beatmapInfo = initialItem.Beatmap as BeatmapInfo;
|
|
|
|
|
|
|
|
// And in the case that this isn't a local databased beatmap, query by online ID.
|
|
|
|
if (beatmapInfo == null)
|
|
|
|
{
|
|
|
|
int onlineId = initialItem.Beatmap.OnlineID;
|
|
|
|
beatmapInfo = beatmapManager.QueryBeatmap(b => b.OnlineID == onlineId);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (beatmapInfo != null)
|
|
|
|
Beatmap.Value = beatmapManager.GetWorkingBeatmap(beatmapInfo);
|
|
|
|
|
|
|
|
RulesetInfo? ruleset = rulesets.GetRuleset(initialItem.RulesetID);
|
|
|
|
|
|
|
|
if (ruleset != null)
|
|
|
|
{
|
|
|
|
Ruleset.Value = ruleset;
|
|
|
|
|
|
|
|
var rulesetInstance = ruleset.CreateInstance();
|
|
|
|
Debug.Assert(rulesetInstance != null);
|
|
|
|
|
|
|
|
// 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 = initialItem.RequiredMods.Select(m => m.ToMod(rulesetInstance)).ToArray();
|
|
|
|
FreeMods.Value = initialItem.AllowedMods.Select(m => m.ToMod(rulesetInstance)).ToArray();
|
|
|
|
}
|
2022-02-15 15:01:14 +08:00
|
|
|
}
|
2021-02-02 12:54:27 +08:00
|
|
|
|
2021-02-22 12:21:50 +08:00
|
|
|
Mods.BindValueChanged(onModsChanged);
|
2021-02-02 12:54:27 +08:00
|
|
|
Ruleset.BindValueChanged(onRulesetChanged);
|
2022-05-05 04:25:13 +08:00
|
|
|
|
2022-05-05 21:47:10 +08:00
|
|
|
freeModSelectOverlayRegistration = OverlayManager?.RegisterBlockingOverlay(freeModSelectOverlay);
|
2021-02-02 12:54:27 +08:00
|
|
|
}
|
|
|
|
|
2021-02-22 12:21:50 +08:00
|
|
|
private void onModsChanged(ValueChangedEvent<IReadOnlyList<Mod>> mods)
|
|
|
|
{
|
|
|
|
FreeMods.Value = FreeMods.Value.Where(checkCompatibleFreeMod).ToList();
|
|
|
|
|
|
|
|
// Reset the validity delegate to update the overlay's display.
|
|
|
|
freeModSelectOverlay.IsValidMod = IsValidFreeMod;
|
|
|
|
}
|
|
|
|
|
2021-02-02 12:54:27 +08:00
|
|
|
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()
|
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
var item = new PlaylistItem(Beatmap.Value.BeatmapInfo)
|
2021-06-01 13:33:21 +08:00
|
|
|
{
|
2022-02-15 15:01:14 +08:00
|
|
|
RulesetID = Ruleset.Value.OnlineID,
|
|
|
|
RequiredMods = Mods.Value.Select(m => new APIMod(m)).ToArray(),
|
|
|
|
AllowedMods = FreeMods.Value.Select(m => new APIMod(m)).ToArray()
|
2021-06-01 13:33:21 +08:00
|
|
|
};
|
2021-02-01 13:57:39 +08:00
|
|
|
|
2022-09-07 20:21:19 +08:00
|
|
|
return SelectItem(item);
|
2021-02-01 13:57:39 +08:00
|
|
|
}
|
|
|
|
|
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>
|
2022-06-18 13:28:25 +08:00
|
|
|
/// <returns><c>true</c> if a selection occurred.</returns>
|
|
|
|
protected abstract bool 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();
|
|
|
|
}
|
|
|
|
|
2022-04-21 23:52:44 +08:00
|
|
|
public override bool OnExiting(ScreenExitEvent e)
|
2021-02-01 13:57:39 +08:00
|
|
|
{
|
2022-05-05 23:27:21 +08:00
|
|
|
freeModSelectOverlay.Hide();
|
2022-04-21 23:52:44 +08:00
|
|
|
return base.OnExiting(e);
|
2021-02-01 13:57:39 +08:00
|
|
|
}
|
|
|
|
|
2022-05-11 04:29:57 +08:00
|
|
|
protected override ModSelectOverlay CreateModSelectOverlay() => new UserModSelectOverlay(OverlayColourScheme.Plum)
|
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-06-09 13:32:48 +08:00
|
|
|
protected virtual bool IsValidMod(Mod mod) => mod.HasImplementation && ModUtils.FlattenMod(mod).All(m => m.UserPlayable);
|
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-22 12:21:50 +08:00
|
|
|
protected virtual bool IsValidFreeMod(Mod mod) => IsValidMod(mod) && checkCompatibleFreeMod(mod);
|
|
|
|
|
|
|
|
private bool checkCompatibleFreeMod(Mod mod)
|
|
|
|
=> Mods.Value.All(m => m.Acronym != mod.Acronym) // Mod must not be contained in the required mods.
|
|
|
|
&& ModUtils.CheckCompatibleSet(Mods.Value.Append(mod).ToArray()); // Mod must be compatible with all the required mods.
|
2022-05-05 04:25:13 +08:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
freeModSelectOverlayRegistration?.Dispose();
|
|
|
|
}
|
2021-02-01 13:57:39 +08:00
|
|
|
}
|
|
|
|
}
|