// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Logging; using osu.Game.Beatmaps; using osu.Game.Online; using osu.Game.Online.API; using osu.Game.Online.API.Requests; using osu.Game.Online.Multiplayer; using osu.Game.Rulesets; using osu.Game.Screens.Multi.Lounge.Components; namespace osu.Game.Screens.Multi { public class RoomManager : CompositeDrawable, IRoomManager { public event Action RoomsUpdated; private readonly BindableList rooms = new BindableList(); public Bindable InitialRoomsReceived { get; } = new Bindable(); public IBindableList Rooms => rooms; public double TimeBetweenListingPolls { get => listingPollingComponent.TimeBetweenPolls; set => listingPollingComponent.TimeBetweenPolls = value; } public double TimeBetweenSelectionPolls { get => selectionPollingComponent.TimeBetweenPolls; set => selectionPollingComponent.TimeBetweenPolls = value; } [Resolved] private RulesetStore rulesets { get; set; } [Resolved] private BeatmapManager beatmaps { get; set; } [Resolved] private IAPIProvider api { get; set; } [Resolved] private Bindable selectedRoom { get; set; } private readonly ListingPollingComponent listingPollingComponent; private readonly SelectionPollingComponent selectionPollingComponent; private Room joinedRoom; public RoomManager() { RelativeSizeAxes = Axes.Both; InternalChildren = new Drawable[] { listingPollingComponent = new ListingPollingComponent { InitialRoomsReceived = { BindTarget = InitialRoomsReceived }, RoomsReceived = onListingReceived }, selectionPollingComponent = new SelectionPollingComponent { RoomReceived = onSelectedRoomReceived } }; } protected override void Dispose(bool isDisposing) { base.Dispose(isDisposing); PartRoom(); } public void CreateRoom(Room room, Action onSuccess = null, Action onError = null) { room.Host.Value = api.LocalUser.Value; var req = new CreateRoomRequest(room); req.Success += result => { joinedRoom = room; update(room, result); addRoom(room); RoomsUpdated?.Invoke(); onSuccess?.Invoke(room); }; req.Failure += exception => { if (req.Result != null) onError?.Invoke(req.Result.Error); else Logger.Log($"Failed to create the room: {exception}", level: LogLevel.Important); }; api.Queue(req); } private JoinRoomRequest currentJoinRoomRequest; public void JoinRoom(Room room, Action onSuccess = null, Action onError = null) { currentJoinRoomRequest?.Cancel(); currentJoinRoomRequest = new JoinRoomRequest(room, api.LocalUser.Value); currentJoinRoomRequest.Success += () => { joinedRoom = room; onSuccess?.Invoke(room); }; currentJoinRoomRequest.Failure += exception => { if (!(exception is OperationCanceledException)) Logger.Log($"Failed to join room: {exception}", level: LogLevel.Important); onError?.Invoke(exception.ToString()); }; api.Queue(currentJoinRoomRequest); } public void PartRoom() { currentJoinRoomRequest?.Cancel(); if (joinedRoom == null) return; api.Queue(new PartRoomRequest(joinedRoom, api.LocalUser.Value)); joinedRoom = null; } /// /// Invoked when the listing of all s is received from the server. /// /// The listing. private void onListingReceived(List listing) { // Remove past matches foreach (var r in rooms.ToList()) { if (listing.All(e => e.RoomID.Value != r.RoomID.Value)) rooms.Remove(r); } for (int i = 0; i < listing.Count; i++) { if (selectedRoom.Value?.RoomID?.Value == listing[i].RoomID.Value) { // The listing request contains less data than the selection request, so data from the selection request is always preferred while the room is selected. continue; } var r = listing[i]; r.Position.Value = i; update(r, r); addRoom(r); } RoomsUpdated?.Invoke(); } /// /// Invoked when a is received from the server. /// /// The received . private void onSelectedRoomReceived(Room toUpdate) { foreach (var room in rooms) { if (room.RoomID.Value == toUpdate.RoomID.Value) { toUpdate.Position.Value = room.Position.Value; update(room, toUpdate); break; } } } /// /// Updates a local with a remote copy. /// /// The local to update. /// The remote to update with. private void update(Room local, Room remote) { foreach (var pi in remote.Playlist) pi.MapObjects(beatmaps, rulesets); local.CopyFrom(remote); } /// /// Adds a to the list of available rooms. /// /// The to add. private void addRoom(Room room) { var existing = rooms.FirstOrDefault(e => e.RoomID.Value == room.RoomID.Value); if (existing == null) rooms.Add(room); else existing.CopyFrom(room); } private class SelectionPollingComponent : PollingComponent { public Action RoomReceived; [Resolved] private IAPIProvider api { get; set; } [Resolved] private Bindable selectedRoom { get; set; } [BackgroundDependencyLoader] private void load() { selectedRoom.BindValueChanged(_ => { if (IsLoaded) PollImmediately(); }); } private GetRoomRequest pollReq; protected override Task Poll() { if (!api.IsLoggedIn) return base.Poll(); if (selectedRoom.Value?.RoomID.Value == null) return base.Poll(); var tcs = new TaskCompletionSource(); pollReq?.Cancel(); pollReq = new GetRoomRequest(selectedRoom.Value.RoomID.Value.Value); pollReq.Success += result => { RoomReceived?.Invoke(result); tcs.SetResult(true); }; pollReq.Failure += _ => tcs.SetResult(false); api.Queue(pollReq); return tcs.Task; } } private class ListingPollingComponent : PollingComponent { public Action> RoomsReceived; public readonly Bindable InitialRoomsReceived = new Bindable(); [Resolved] private IAPIProvider api { get; set; } [Resolved] private Bindable currentFilter { get; set; } [BackgroundDependencyLoader] private void load() { currentFilter.BindValueChanged(_ => { InitialRoomsReceived.Value = false; if (IsLoaded) PollImmediately(); }); } private GetRoomsRequest pollReq; protected override Task Poll() { if (!api.IsLoggedIn) return base.Poll(); var tcs = new TaskCompletionSource(); pollReq?.Cancel(); pollReq = new GetRoomsRequest(currentFilter.Value.PrimaryFilter); pollReq.Success += result => { InitialRoomsReceived.Value = true; RoomsReceived?.Invoke(result); tcs.SetResult(true); }; pollReq.Failure += _ => tcs.SetResult(false); api.Queue(pollReq); return tcs.Task; } } } }