2020-12-20 22:36:56 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-06-23 23:36:08 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2021-08-13 16:39:09 +08:00
|
|
|
using System.Threading.Tasks;
|
2020-12-23 15:17:55 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-08-13 16:39:09 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-12-23 15:17:55 +08:00
|
|
|
using osu.Framework.Logging;
|
2021-08-13 16:39:09 +08:00
|
|
|
using osu.Framework.Screens;
|
2022-06-23 23:36:08 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2021-07-14 17:55:01 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
using osu.Game.Online.API;
|
2020-12-20 23:21:30 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2021-08-13 16:39:09 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge;
|
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge.Components;
|
|
|
|
using osu.Game.Screens.OnlinePlay.Match;
|
2020-12-20 22:36:56 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-20 22:36:56 +08:00
|
|
|
{
|
2020-12-25 12:38:11 +08:00
|
|
|
public class MultiplayerLoungeSubScreen : LoungeSubScreen
|
2020-12-20 22:36:56 +08:00
|
|
|
{
|
2021-07-14 17:55:01 +08:00
|
|
|
[Resolved]
|
|
|
|
private IAPIProvider api { get; set; }
|
2020-12-23 15:17:55 +08:00
|
|
|
|
|
|
|
[Resolved]
|
2021-05-20 14:39:45 +08:00
|
|
|
private MultiplayerClient client { get; set; }
|
2020-12-23 15:17:55 +08:00
|
|
|
|
2022-07-01 16:26:40 +08:00
|
|
|
private Dropdown<RoomPermissionsFilter> roomAccessTypeDropdown;
|
2022-06-23 23:36:08 +08:00
|
|
|
|
2022-04-21 23:52:44 +08:00
|
|
|
public override void OnResuming(ScreenTransitionEvent e)
|
2021-08-13 16:39:09 +08:00
|
|
|
{
|
2022-04-21 23:52:44 +08:00
|
|
|
base.OnResuming(e);
|
2021-08-13 17:24:19 +08:00
|
|
|
|
|
|
|
// Upon having left a room, we don't know whether we were the only participant, and whether the room is now closed as a result of leaving it.
|
2021-08-13 21:08:34 +08:00
|
|
|
// To work around this, temporarily remove the room and trigger an immediate listing poll.
|
2022-04-21 23:52:44 +08:00
|
|
|
if (e.Last is MultiplayerMatchSubScreen match)
|
2021-08-13 17:24:19 +08:00
|
|
|
{
|
|
|
|
RoomManager.RemoveRoom(match.Room);
|
2021-08-17 16:16:21 +08:00
|
|
|
ListingPollingComponent.PollImmediately();
|
2021-08-13 17:24:19 +08:00
|
|
|
}
|
2021-08-13 16:39:09 +08:00
|
|
|
}
|
|
|
|
|
2022-06-23 23:36:08 +08:00
|
|
|
protected override IEnumerable<Drawable> CreateFilterControls()
|
|
|
|
{
|
2022-07-01 16:26:40 +08:00
|
|
|
roomAccessTypeDropdown = new SlimEnumDropdown<RoomPermissionsFilter>
|
2022-06-23 23:36:08 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
Width = 160,
|
|
|
|
};
|
|
|
|
|
2022-06-23 23:40:25 +08:00
|
|
|
roomAccessTypeDropdown.Current.BindValueChanged(_ => UpdateFilter());
|
2022-06-23 23:36:08 +08:00
|
|
|
|
2022-06-23 23:40:25 +08:00
|
|
|
return base.CreateFilterControls().Prepend(roomAccessTypeDropdown);
|
2022-06-23 23:36:08 +08:00
|
|
|
}
|
|
|
|
|
2021-08-12 18:48:15 +08:00
|
|
|
protected override FilterCriteria CreateFilterCriteria()
|
|
|
|
{
|
|
|
|
var criteria = base.CreateFilterCriteria();
|
2021-08-13 12:07:02 +08:00
|
|
|
criteria.Category = @"realtime";
|
2022-07-01 16:26:40 +08:00
|
|
|
criteria.Permissions = roomAccessTypeDropdown.Current.Value;
|
2021-08-12 18:48:15 +08:00
|
|
|
return criteria;
|
|
|
|
}
|
2021-07-14 17:55:01 +08:00
|
|
|
|
|
|
|
protected override OsuButton CreateNewRoomButton() => new CreateMultiplayerMatchButton();
|
|
|
|
|
|
|
|
protected override Room CreateNewRoom() => new Room
|
|
|
|
{
|
|
|
|
Name = { Value = $"{api.LocalUser}'s awesome room" },
|
2021-08-05 18:55:15 +08:00
|
|
|
Type = { Value = MatchType.HeadToHead },
|
2021-07-14 17:55:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
protected override RoomSubScreen CreateRoomSubScreen(Room room) => new MultiplayerMatchSubScreen(room);
|
|
|
|
|
2021-08-16 12:09:04 +08:00
|
|
|
protected override ListingPollingComponent CreatePollingComponent() => new MultiplayerListingPollingComponent();
|
2021-08-13 16:39:09 +08:00
|
|
|
|
2021-07-23 01:23:37 +08:00
|
|
|
protected override void OpenNewRoom(Room room)
|
2020-12-23 15:17:55 +08:00
|
|
|
{
|
2021-07-23 01:23:37 +08:00
|
|
|
if (client?.IsConnected.Value != true)
|
2020-12-23 15:17:55 +08:00
|
|
|
{
|
|
|
|
Logger.Log("Not currently connected to the multiplayer server.", LoggingTarget.Runtime, LogLevel.Important);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-23 01:23:37 +08:00
|
|
|
base.OpenNewRoom(room);
|
2020-12-23 15:17:55 +08:00
|
|
|
}
|
2021-08-13 16:39:09 +08:00
|
|
|
|
|
|
|
private class MultiplayerListingPollingComponent : ListingPollingComponent
|
|
|
|
{
|
2021-08-17 16:16:21 +08:00
|
|
|
[Resolved]
|
|
|
|
private MultiplayerClient client { get; set; }
|
|
|
|
|
|
|
|
private readonly IBindable<bool> isConnected = new Bindable<bool>();
|
2021-08-13 16:39:09 +08:00
|
|
|
|
2021-08-17 16:16:21 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
2021-08-13 16:39:09 +08:00
|
|
|
{
|
2021-08-17 16:16:21 +08:00
|
|
|
isConnected.BindTo(client.IsConnected);
|
2022-06-24 20:25:23 +08:00
|
|
|
isConnected.BindValueChanged(_ => Scheduler.AddOnce(poll), true);
|
2021-10-14 16:52:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void poll()
|
|
|
|
{
|
|
|
|
if (isConnected.Value && IsLoaded)
|
|
|
|
PollImmediately();
|
2021-08-13 16:39:09 +08:00
|
|
|
}
|
|
|
|
|
2021-08-17 16:16:21 +08:00
|
|
|
protected override Task Poll()
|
|
|
|
{
|
|
|
|
if (!isConnected.Value)
|
|
|
|
return Task.CompletedTask;
|
|
|
|
|
2021-11-23 15:13:53 +08:00
|
|
|
if (client.Room != null)
|
|
|
|
return Task.CompletedTask;
|
|
|
|
|
2021-08-17 16:16:21 +08:00
|
|
|
return base.Poll();
|
|
|
|
}
|
2021-08-13 16:39:09 +08:00
|
|
|
}
|
2020-12-20 22:36:56 +08:00
|
|
|
}
|
|
|
|
}
|