2019-01-24 16:43:03 +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.
2018-12-11 18:07:40 +08:00
2018-12-20 19:58:34 +08:00
using System ;
2020-02-27 18:23:21 +08:00
using System.Collections.Generic ;
2018-12-12 18:04:11 +08:00
using System.Linq ;
2019-02-08 12:01:10 +08:00
using System.Threading.Tasks ;
2018-12-11 18:07:40 +08:00
using osu.Framework.Allocation ;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables ;
2020-02-27 18:23:21 +08:00
using osu.Framework.Graphics ;
using osu.Framework.Graphics.Containers ;
2018-12-12 18:04:11 +08:00
using osu.Framework.Logging ;
using osu.Game.Beatmaps ;
2019-02-08 12:01:10 +08:00
using osu.Game.Online ;
2018-12-11 18:07:40 +08:00
using osu.Game.Online.API ;
2018-12-22 11:50:37 +08:00
using osu.Game.Online.API.Requests ;
2018-12-11 18:07:40 +08:00
using osu.Game.Online.Multiplayer ;
2018-12-12 18:04:11 +08:00
using osu.Game.Rulesets ;
2019-02-08 12:01:10 +08:00
using osu.Game.Screens.Multi.Lounge.Components ;
2018-12-11 18:07:40 +08:00
namespace osu.Game.Screens.Multi
{
2020-02-27 18:23:21 +08:00
public class RoomManager : CompositeDrawable , IRoomManager
2018-12-11 18:07:40 +08:00
{
2018-12-28 00:45:19 +08:00
public event Action RoomsUpdated ;
2019-01-07 17:50:27 +08:00
private readonly BindableList < Room > rooms = new BindableList < Room > ( ) ;
2020-06-05 19:52:27 +08:00
public Bindable < bool > InitialRoomsReceived { get ; } = new Bindable < bool > ( ) ;
2019-01-07 17:50:27 +08:00
public IBindableList < Room > Rooms = > rooms ;
2018-12-11 18:07:40 +08:00
2020-02-27 18:23:21 +08:00
public double TimeBetweenListingPolls
{
get = > listingPollingComponent . TimeBetweenPolls ;
set = > listingPollingComponent . TimeBetweenPolls = value ;
}
public double TimeBetweenSelectionPolls
{
get = > selectionPollingComponent . TimeBetweenPolls ;
set = > selectionPollingComponent . TimeBetweenPolls = value ;
}
2019-02-06 12:59:11 +08:00
2019-02-08 13:57:51 +08:00
[Resolved]
2020-02-27 18:23:21 +08:00
private RulesetStore rulesets { get ; set ; }
2019-02-08 12:02:17 +08:00
2018-12-11 18:07:40 +08:00
[Resolved]
2020-02-27 18:23:21 +08:00
private BeatmapManager beatmaps { get ; set ; }
2018-12-11 18:07:40 +08:00
2018-12-12 18:04:11 +08:00
[Resolved]
2020-02-27 18:23:21 +08:00
private IAPIProvider api { get ; set ; }
2018-12-12 18:04:11 +08:00
[Resolved]
2020-02-27 18:23:21 +08:00
private Bindable < Room > selectedRoom { get ; set ; }
private readonly ListingPollingComponent listingPollingComponent ;
private readonly SelectionPollingComponent selectionPollingComponent ;
private Room joinedRoom ;
2018-12-12 18:04:11 +08:00
2020-02-27 18:23:21 +08:00
public RoomManager ( )
2019-02-08 12:01:10 +08:00
{
2020-02-27 18:23:21 +08:00
RelativeSizeAxes = Axes . Both ;
InternalChildren = new Drawable [ ]
2019-02-08 12:01:10 +08:00
{
2020-06-05 19:52:27 +08:00
listingPollingComponent = new ListingPollingComponent
{
InitialRoomsReceived = { BindTarget = InitialRoomsReceived } ,
RoomsReceived = onListingReceived
} ,
2020-02-27 19:05:12 +08:00
selectionPollingComponent = new SelectionPollingComponent { RoomReceived = onSelectedRoomReceived }
2020-02-27 18:23:21 +08:00
} ;
2019-02-08 12:01:10 +08:00
}
2018-12-26 19:12:51 +08:00
protected override void Dispose ( bool isDisposing )
{
base . Dispose ( isDisposing ) ;
PartRoom ( ) ;
}
2018-12-26 20:10:31 +08:00
public void CreateRoom ( Room room , Action < Room > onSuccess = null , Action < string > onError = null )
2018-12-11 18:07:40 +08:00
{
2019-02-21 17:56:34 +08:00
room . Host . Value = api . LocalUser . Value ;
2018-12-11 18:07:40 +08:00
2018-12-12 18:04:11 +08:00
var req = new CreateRoomRequest ( room ) ;
2018-12-26 20:32:12 +08:00
2018-12-26 19:32:01 +08:00
req . Success + = result = >
{
2019-02-08 14:20:11 +08:00
joinedRoom = room ;
update ( room , result ) ;
addRoom ( room ) ;
2018-12-28 00:45:19 +08:00
2019-02-08 14:20:11 +08:00
RoomsUpdated ? . Invoke ( ) ;
onSuccess ? . Invoke ( room ) ;
2018-12-26 19:32:01 +08:00
} ;
2018-12-26 17:38:58 +08:00
req . Failure + = exception = >
{
if ( req . Result ! = null )
onError ? . Invoke ( req . Result . Error ) ;
else
Logger . Log ( $"Failed to create the room: {exception}" , level : LogLevel . Important ) ;
} ;
2018-12-20 19:58:34 +08:00
2018-12-12 18:04:11 +08:00
api . Queue ( req ) ;
}
2018-12-20 19:58:34 +08:00
private JoinRoomRequest currentJoinRoomRequest ;
2018-12-26 20:10:31 +08:00
public void JoinRoom ( Room room , Action < Room > onSuccess = null , Action < string > onError = null )
2018-12-20 19:58:34 +08:00
{
currentJoinRoomRequest ? . Cancel ( ) ;
currentJoinRoomRequest = new JoinRoomRequest ( room , api . LocalUser . Value ) ;
2019-10-30 13:41:54 +08:00
2018-12-20 19:58:34 +08:00
currentJoinRoomRequest . Success + = ( ) = >
{
2019-02-08 14:20:11 +08:00
joinedRoom = room ;
2018-12-26 20:10:31 +08:00
onSuccess ? . Invoke ( room ) ;
2018-12-20 19:58:34 +08:00
} ;
2018-12-26 20:10:31 +08:00
currentJoinRoomRequest . Failure + = exception = >
{
2019-10-30 13:38:06 +08:00
if ( ! ( exception is OperationCanceledException ) )
Logger . Log ( $"Failed to join room: {exception}" , level : LogLevel . Important ) ;
2018-12-26 20:10:31 +08:00
onError ? . Invoke ( exception . ToString ( ) ) ;
} ;
2018-12-20 19:58:34 +08:00
api . Queue ( currentJoinRoomRequest ) ;
}
public void PartRoom ( )
{
2019-10-30 13:41:54 +08:00
currentJoinRoomRequest ? . Cancel ( ) ;
2019-02-06 12:59:11 +08:00
if ( joinedRoom = = null )
2018-12-20 19:58:34 +08:00
return ;
2019-02-06 12:59:11 +08:00
api . Queue ( new PartRoomRequest ( joinedRoom , api . LocalUser . Value ) ) ;
joinedRoom = null ;
2018-12-20 19:58:34 +08:00
}
2020-02-27 18:23:21 +08:00
/// <summary>
/// Invoked when the listing of all <see cref="Room"/>s is received from the server.
/// </summary>
/// <param name="listing">The listing.</param>
2020-02-27 19:05:12 +08:00
private void onListingReceived ( List < Room > listing )
2018-12-19 17:02:05 +08:00
{
2020-02-27 18:23:21 +08:00
// Remove past matches
foreach ( var r in rooms . ToList ( ) )
2019-02-05 14:38:19 +08:00
{
2020-02-27 18:23:21 +08:00
if ( listing . All ( e = > e . RoomID . Value ! = r . RoomID . Value ) )
rooms . Remove ( r ) ;
}
2019-02-08 12:01:10 +08:00
2020-02-27 18:23:21 +08:00
for ( int i = 0 ; i < listing . Count ; i + + )
{
if ( selectedRoom . Value ? . RoomID ? . Value = = listing [ i ] . RoomID . Value )
2019-02-08 12:01:10 +08:00
{
2020-02-27 18:23:21 +08:00
// 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 ;
2019-02-08 12:01:10 +08:00
}
2020-02-27 18:23:21 +08:00
var r = listing [ i ] ;
r . Position . Value = i ;
2018-12-11 18:07:40 +08:00
2020-02-27 18:23:21 +08:00
update ( r , r ) ;
addRoom ( r ) ;
}
2018-12-12 18:04:11 +08:00
2020-02-27 18:23:21 +08:00
RoomsUpdated ? . Invoke ( ) ;
}
2019-02-08 12:01:10 +08:00
2020-02-27 18:23:21 +08:00
/// <summary>
/// Invoked when a <see cref="Room"/> is received from the server.
/// </summary>
/// <param name="toUpdate">The received <see cref="Room"/>.</param>
2020-02-27 19:05:12 +08:00
private void onSelectedRoomReceived ( Room toUpdate )
2020-02-27 18:23:21 +08:00
{
foreach ( var room in rooms )
{
if ( room . RoomID . Value = = toUpdate . RoomID . Value )
{
toUpdate . Position . Value = room . Position . Value ;
update ( room , toUpdate ) ;
break ;
}
}
2018-12-12 18:04:11 +08:00
}
2018-12-26 19:32:01 +08:00
/// <summary>
/// Updates a local <see cref="Room"/> with a remote copy.
/// </summary>
/// <param name="local">The local <see cref="Room"/> to update.</param>
/// <param name="remote">The remote <see cref="Room"/> to update with.</param>
private void update ( Room local , Room remote )
2018-12-12 18:04:11 +08:00
{
2018-12-26 19:32:01 +08:00
foreach ( var pi in remote . Playlist )
pi . MapObjects ( beatmaps , rulesets ) ;
2018-12-26 21:14:49 +08:00
2018-12-27 12:30:36 +08:00
local . CopyFrom ( remote ) ;
2018-12-12 18:04:11 +08:00
}
2018-12-26 19:32:01 +08:00
/// <summary>
/// Adds a <see cref="Room"/> to the list of available rooms.
/// </summary>
2019-04-25 16:36:17 +08:00
/// <param name="room">The <see cref="Room"/> to add.</param>
2018-12-26 19:32:01 +08:00
private void addRoom ( Room room )
2018-12-17 10:04:38 +08:00
{
2018-12-26 19:32:01 +08:00
var existing = rooms . FirstOrDefault ( e = > e . RoomID . Value = = room . RoomID . Value ) ;
if ( existing = = null )
rooms . Add ( room ) ;
else
existing . CopyFrom ( room ) ;
2018-12-17 10:04:38 +08:00
}
2020-02-27 18:23:21 +08:00
private class SelectionPollingComponent : PollingComponent
{
public Action < Room > RoomReceived ;
[Resolved]
private IAPIProvider api { get ; set ; }
[Resolved]
private Bindable < Room > 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 < bool > ( ) ;
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 < List < Room > > RoomsReceived ;
2020-06-05 19:52:27 +08:00
public readonly Bindable < bool > InitialRoomsReceived = new Bindable < bool > ( ) ;
2020-02-27 18:23:21 +08:00
[Resolved]
private IAPIProvider api { get ; set ; }
[Resolved]
private Bindable < FilterCriteria > currentFilter { get ; set ; }
[BackgroundDependencyLoader]
private void load ( )
{
currentFilter . BindValueChanged ( _ = >
{
2020-06-05 19:52:27 +08:00
InitialRoomsReceived . Value = false ;
2020-02-27 18:23:21 +08:00
if ( IsLoaded )
PollImmediately ( ) ;
} ) ;
}
private GetRoomsRequest pollReq ;
protected override Task Poll ( )
{
if ( ! api . IsLoggedIn )
return base . Poll ( ) ;
var tcs = new TaskCompletionSource < bool > ( ) ;
pollReq ? . Cancel ( ) ;
pollReq = new GetRoomsRequest ( currentFilter . Value . PrimaryFilter ) ;
pollReq . Success + = result = >
{
2020-06-05 19:52:27 +08:00
InitialRoomsReceived . Value = true ;
2020-02-27 18:23:21 +08:00
RoomsReceived ? . Invoke ( result ) ;
tcs . SetResult ( true ) ;
} ;
pollReq . Failure + = _ = > tcs . SetResult ( false ) ;
api . Queue ( pollReq ) ;
return tcs . Task ;
}
}
2018-12-11 18:07:40 +08:00
}
}