1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 18:47:28 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Components/ListingPollingComponent.cs

74 lines
2.2 KiB
C#
Raw Normal View History

2020-12-18 23:15:41 +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.Linq;
2020-12-18 23:15:41 +08:00
using System.Threading.Tasks;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Lounge.Components;
2020-12-18 23:15:41 +08:00
namespace osu.Game.Screens.OnlinePlay.Components
2020-12-18 23:15:41 +08:00
{
/// <summary>
/// A <see cref="RoomPollingComponent"/> that polls for the lounge listing.
/// </summary>
public class ListingPollingComponent : RoomPollingComponent
{
2021-08-16 12:09:04 +08:00
public IBindable<bool> InitialRoomsReceived => initialRoomsReceived;
private readonly Bindable<bool> initialRoomsReceived = new Bindable<bool>();
2021-08-17 08:36:43 +08:00
public readonly Bindable<FilterCriteria> Filter = new Bindable<FilterCriteria>();
2020-12-18 23:15:41 +08:00
[BackgroundDependencyLoader]
private void load()
{
2021-08-17 08:36:43 +08:00
Filter.BindValueChanged(_ =>
2020-12-18 23:15:41 +08:00
{
RoomManager.ClearRooms();
2021-08-16 12:09:04 +08:00
initialRoomsReceived.Value = false;
2020-12-18 23:15:41 +08:00
if (IsLoaded)
PollImmediately();
});
}
private GetRoomsRequest pollReq;
protected override Task Poll()
{
if (!API.IsLoggedIn)
return base.Poll();
2021-08-17 08:36:43 +08:00
if (Filter.Value == null)
return base.Poll();
2020-12-18 23:15:41 +08:00
var tcs = new TaskCompletionSource<bool>();
pollReq?.Cancel();
2021-08-17 08:36:43 +08:00
pollReq = new GetRoomsRequest(Filter.Value.Status, Filter.Value.Category);
2020-12-18 23:15:41 +08:00
pollReq.Success += result =>
{
foreach (var existing in RoomManager.Rooms.ToArray())
2020-12-18 23:15:41 +08:00
{
if (result.All(r => r.RoomID.Value != existing.RoomID.Value))
RoomManager.RemoveRoom(existing);
2020-12-18 23:15:41 +08:00
}
foreach (var incoming in result)
RoomManager.AddOrUpdateRoom(incoming);
2021-08-16 12:09:04 +08:00
initialRoomsReceived.Value = true;
2020-12-18 23:15:41 +08:00
tcs.SetResult(true);
};
pollReq.Failure += _ => tcs.SetResult(false);
API.Queue(pollReq);
return tcs.Task;
}
}
}