2020-12-19 00:15:41 +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.
|
|
|
|
|
|
|
|
using System.Threading.Tasks;
|
2020-12-25 13:38:11 +09:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-19 00:15:41 +09:00
|
|
|
|
2020-12-25 16:50:00 +01:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Components
|
2020-12-19 00:15:41 +09:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="RoomPollingComponent"/> that polls for the currently-selected room.
|
|
|
|
/// </summary>
|
2022-11-24 14:32:20 +09:00
|
|
|
public partial class SelectionPollingComponent : RoomPollingComponent
|
2020-12-19 00:15:41 +09:00
|
|
|
{
|
2021-08-19 16:40:39 +09:00
|
|
|
private readonly Room room;
|
|
|
|
|
|
|
|
public SelectionPollingComponent(Room room)
|
2020-12-19 00:15:41 +09:00
|
|
|
{
|
2021-08-19 16:40:39 +09:00
|
|
|
this.room = room;
|
2020-12-19 00:15:41 +09:00
|
|
|
}
|
|
|
|
|
2024-11-13 16:28:39 +09:00
|
|
|
private GetRoomRequest? lastPollRequest;
|
2020-12-19 00:15:41 +09:00
|
|
|
|
|
|
|
protected override Task Poll()
|
|
|
|
{
|
|
|
|
if (!API.IsLoggedIn)
|
|
|
|
return base.Poll();
|
|
|
|
|
2024-11-13 16:28:39 +09:00
|
|
|
if (room.RoomID == null)
|
2020-12-19 00:15:41 +09:00
|
|
|
return base.Poll();
|
|
|
|
|
|
|
|
var tcs = new TaskCompletionSource<bool>();
|
|
|
|
|
2022-01-28 13:43:53 +09:00
|
|
|
lastPollRequest?.Cancel();
|
2020-12-19 00:15:41 +09:00
|
|
|
|
2024-11-13 16:28:39 +09:00
|
|
|
var req = new GetRoomRequest(room.RoomID.Value);
|
2022-01-28 13:43:53 +09:00
|
|
|
|
|
|
|
req.Success += result =>
|
2020-12-19 00:15:41 +09:00
|
|
|
{
|
2021-09-15 17:03:26 +09:00
|
|
|
result.RemoveExpiredPlaylistItems();
|
2021-08-13 17:39:09 +09:00
|
|
|
RoomManager.AddOrUpdateRoom(result);
|
2020-12-19 00:15:41 +09:00
|
|
|
tcs.SetResult(true);
|
|
|
|
};
|
|
|
|
|
2022-01-28 13:43:53 +09:00
|
|
|
req.Failure += _ => tcs.SetResult(false);
|
|
|
|
|
|
|
|
API.Queue(req);
|
2020-12-19 00:15:41 +09:00
|
|
|
|
2022-01-28 13:43:53 +09:00
|
|
|
lastPollRequest = req;
|
2020-12-19 00:15:41 +09:00
|
|
|
|
|
|
|
return tcs.Task;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|