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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.4 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.
2022-06-17 15:37:17 +08:00
#nullable disable
2020-12-18 23:15:41 +08:00
using System.Threading.Tasks;
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
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 currently-selected room.
/// </summary>
public class SelectionPollingComponent : RoomPollingComponent
{
private readonly Room room;
public SelectionPollingComponent(Room room)
2020-12-18 23:15:41 +08:00
{
this.room = room;
2020-12-18 23:15:41 +08:00
}
private GetRoomRequest lastPollRequest;
2020-12-18 23:15:41 +08:00
protected override Task Poll()
{
if (!API.IsLoggedIn)
return base.Poll();
if (room.RoomID.Value == null)
2020-12-18 23:15:41 +08:00
return base.Poll();
var tcs = new TaskCompletionSource<bool>();
lastPollRequest?.Cancel();
2020-12-18 23:15:41 +08:00
var req = new GetRoomRequest(room.RoomID.Value.Value);
req.Success += result =>
2020-12-18 23:15:41 +08:00
{
2021-09-15 16:03:26 +08:00
result.RemoveExpiredPlaylistItems();
RoomManager.AddOrUpdateRoom(result);
2020-12-18 23:15:41 +08:00
tcs.SetResult(true);
};
req.Failure += _ => tcs.SetResult(false);
API.Queue(req);
2020-12-18 23:15:41 +08:00
lastPollRequest = req;
2020-12-18 23:15:41 +08:00
return tcs.Task;
}
}
}