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