// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Game.Online.Rooms; namespace osu.Game.Screens.OnlinePlay.Components { /// /// A that polls for the currently-selected room. /// public class SelectionPollingComponent : RoomPollingComponent { [Resolved] private IRoomManager roomManager { get; set; } private readonly Room room; public SelectionPollingComponent(Room room) { this.room = room; } private GetRoomRequest pollReq; protected override Task Poll() { if (!API.IsLoggedIn) return base.Poll(); if (room.RoomID.Value == null) return base.Poll(); var tcs = new TaskCompletionSource(); pollReq?.Cancel(); pollReq = new GetRoomRequest(room.RoomID.Value.Value); pollReq.Success += result => { result.RemoveExpiredPlaylistItems(); RoomManager.AddOrUpdateRoom(result); tcs.SetResult(true); }; pollReq.Failure += _ => tcs.SetResult(false); API.Queue(pollReq); return tcs.Task; } } }