2020-12-21 17:42:31 +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.
2021-05-11 18:31:32 +08:00
using System ;
2021-08-27 17:57:35 +08:00
using System.Diagnostics ;
2021-05-11 18:01:41 +08:00
using System.Linq ;
using NUnit.Framework ;
2021-03-03 20:54:34 +08:00
using osu.Framework.Allocation ;
2021-05-11 18:01:41 +08:00
using osu.Framework.Audio ;
2022-01-03 16:02:15 +08:00
using osu.Framework.Extensions ;
2022-01-08 21:50:49 +08:00
using osu.Framework.Extensions.ObjectExtensions ;
2021-06-22 23:48:41 +08:00
using osu.Framework.Graphics.Containers ;
2021-07-19 19:55:14 +08:00
using osu.Framework.Graphics.UserInterface ;
2021-08-03 17:37:09 +08:00
using osu.Framework.Input ;
2021-05-11 18:01:41 +08:00
using osu.Framework.Platform ;
using osu.Framework.Screens ;
using osu.Framework.Testing ;
2021-08-27 17:44:44 +08:00
using osu.Framework.Utils ;
2021-05-11 18:01:41 +08:00
using osu.Game.Beatmaps ;
2021-07-05 18:41:00 +08:00
using osu.Game.Database ;
2021-06-22 23:48:41 +08:00
using osu.Game.Graphics.UserInterface ;
2021-11-04 17:02:44 +08:00
using osu.Game.Online.API.Requests.Responses ;
2021-03-03 20:54:34 +08:00
using osu.Game.Online.Multiplayer ;
2021-05-11 18:01:41 +08:00
using osu.Game.Online.Rooms ;
2021-06-22 23:48:41 +08:00
using osu.Game.Overlays.Mods ;
2021-05-11 18:01:41 +08:00
using osu.Game.Rulesets ;
2022-01-08 21:39:22 +08:00
using osu.Game.Rulesets.Catch ;
2022-01-08 21:50:49 +08:00
using osu.Game.Rulesets.Mods ;
2021-05-11 18:01:41 +08:00
using osu.Game.Rulesets.Osu ;
2021-06-22 23:48:41 +08:00
using osu.Game.Rulesets.Osu.Mods ;
2021-11-13 00:53:58 +08:00
using osu.Game.Screens.OnlinePlay.Components ;
2021-07-13 16:31:28 +08:00
using osu.Game.Screens.OnlinePlay.Lounge ;
2021-07-19 19:55:14 +08:00
using osu.Game.Screens.OnlinePlay.Lounge.Components ;
2021-08-13 13:04:43 +08:00
using osu.Game.Screens.OnlinePlay.Match ;
2021-05-11 18:31:32 +08:00
using osu.Game.Screens.OnlinePlay.Multiplayer ;
2021-05-11 18:01:41 +08:00
using osu.Game.Screens.OnlinePlay.Multiplayer.Match ;
2021-12-15 15:52:50 +08:00
using osu.Game.Screens.OnlinePlay.Multiplayer.Match.Playlist ;
2021-12-15 16:37:39 +08:00
using osu.Game.Screens.OnlinePlay.Multiplayer.Spectate ;
2021-08-24 12:20:01 +08:00
using osu.Game.Screens.Play ;
using osu.Game.Screens.Ranking ;
2021-10-28 13:29:49 +08:00
using osu.Game.Screens.Spectate ;
2021-05-11 18:01:41 +08:00
using osu.Game.Tests.Resources ;
using osuTK.Input ;
2020-12-21 17:42:31 +08:00
2020-12-25 12:20:37 +08:00
namespace osu.Game.Tests.Visual.Multiplayer
2020-12-21 17:42:31 +08:00
{
2021-03-03 20:54:34 +08:00
public class TestSceneMultiplayer : ScreenTestScene
2020-12-21 17:42:31 +08:00
{
2021-05-11 18:01:41 +08:00
private BeatmapManager beatmaps ;
private RulesetStore rulesets ;
private BeatmapSetInfo importedSet ;
2021-12-20 17:24:59 +08:00
private TestMultiplayerComponents multiplayerComponents ;
2021-05-11 18:01:41 +08:00
2021-12-20 17:24:59 +08:00
private TestMultiplayerClient client = > multiplayerComponents . Client ;
private TestMultiplayerRoomManager roomManager = > multiplayerComponents . RoomManager ;
2021-08-17 08:45:10 +08:00
2021-07-05 18:41:00 +08:00
[Cached(typeof(UserLookupCache))]
private UserLookupCache lookupCache = new TestUserLookupCache ( ) ;
2021-05-11 18:01:41 +08:00
[BackgroundDependencyLoader]
private void load ( GameHost host , AudioManager audio )
{
Dependencies . Cache ( rulesets = new RulesetStore ( ContextFactory ) ) ;
2021-05-31 17:37:32 +08:00
Dependencies . Cache ( beatmaps = new BeatmapManager ( LocalStorage , ContextFactory , rulesets , null , audio , Resources , host , Beatmap . Default ) ) ;
2021-05-11 18:26:58 +08:00
}
2021-05-11 18:01:41 +08:00
2021-07-05 18:10:27 +08:00
public override void SetUpSteps ( )
2021-05-11 18:26:58 +08:00
{
2021-07-05 18:10:27 +08:00
base . SetUpSteps ( ) ;
AddStep ( "import beatmap" , ( ) = >
{
2022-01-03 16:02:15 +08:00
beatmaps . Import ( TestResources . GetQuickTestBeatmapForImport ( ) ) . WaitSafely ( ) ;
2021-12-17 17:26:12 +08:00
importedSet = beatmaps . GetAllUsableBeatmapSets ( ) . First ( ) ;
2021-07-05 18:10:27 +08:00
} ) ;
2021-12-20 17:24:59 +08:00
AddStep ( "load multiplayer" , ( ) = > LoadScreen ( multiplayerComponents = new TestMultiplayerComponents ( ) ) ) ;
AddUntilStep ( "wait for multiplayer to load" , ( ) = > multiplayerComponents . IsLoaded ) ;
2021-07-26 13:29:16 +08:00
AddUntilStep ( "wait for lounge to load" , ( ) = > this . ChildrenOfType < MultiplayerLoungeSubScreen > ( ) . FirstOrDefault ( ) ? . IsLoaded = = true ) ;
2021-07-05 18:10:27 +08:00
}
2021-05-11 18:26:58 +08:00
[Test]
2021-07-05 18:10:27 +08:00
public void TestEmpty ( )
2021-05-11 18:26:58 +08:00
{
2021-07-05 18:10:27 +08:00
// used to test the flow of multiplayer from visual tests.
2021-08-06 18:40:29 +08:00
AddStep ( "empty step" , ( ) = > { } ) ;
2021-07-05 18:10:27 +08:00
}
2021-05-11 18:26:58 +08:00
2021-08-27 17:44:44 +08:00
[Test]
public void TestLobbyEvents ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
AddRepeatStep ( "random stuff happens" , performRandomAction , 30 ) ;
// ensure we have a handful of players so the ready-up sounds good :9
AddRepeatStep ( "player joins" , addRandomPlayer , 5 ) ;
// all ready
AddUntilStep ( "all players ready" , ( ) = >
{
var nextUnready = client . Room ? . Users . FirstOrDefault ( c = > c . State = = MultiplayerUserState . Idle ) ;
if ( nextUnready ! = null )
client . ChangeUserState ( nextUnready . UserID , MultiplayerUserState . Ready ) ;
return client . Room ? . Users . All ( u = > u . State = = MultiplayerUserState . Ready ) = = true ;
} ) ;
2021-08-27 17:57:35 +08:00
AddStep ( "unready all players at once" , ( ) = >
{
Debug . Assert ( client . Room ! = null ) ;
foreach ( var u in client . Room . Users ) client . ChangeUserState ( u . UserID , MultiplayerUserState . Idle ) ;
} ) ;
AddStep ( "ready all players at once" , ( ) = >
{
Debug . Assert ( client . Room ! = null ) ;
foreach ( var u in client . Room . Users ) client . ChangeUserState ( u . UserID , MultiplayerUserState . Ready ) ;
} ) ;
2021-08-27 17:44:44 +08:00
}
private void addRandomPlayer ( )
{
int randomUser = RNG . Next ( 200000 , 500000 ) ;
2021-11-04 17:02:44 +08:00
client . AddUser ( new APIUser { Id = randomUser , Username = $"user {randomUser}" } ) ;
2021-08-27 17:44:44 +08:00
}
private void removeLastUser ( )
{
2021-11-04 17:02:44 +08:00
APIUser lastUser = client . Room ? . Users . Last ( ) . User ;
2021-08-27 17:44:44 +08:00
if ( lastUser = = null | | lastUser = = client . LocalUser ? . User )
return ;
client . RemoveUser ( lastUser ) ;
}
private void kickLastUser ( )
{
2021-11-04 17:02:44 +08:00
APIUser lastUser = client . Room ? . Users . Last ( ) . User ;
2021-08-27 17:44:44 +08:00
if ( lastUser = = null | | lastUser = = client . LocalUser ? . User )
return ;
client . KickUser ( lastUser . Id ) ;
}
private void markNextPlayerReady ( )
{
var nextUnready = client . Room ? . Users . FirstOrDefault ( c = > c . State = = MultiplayerUserState . Idle ) ;
if ( nextUnready ! = null )
client . ChangeUserState ( nextUnready . UserID , MultiplayerUserState . Ready ) ;
}
private void markNextPlayerIdle ( )
{
var nextUnready = client . Room ? . Users . FirstOrDefault ( c = > c . State = = MultiplayerUserState . Ready ) ;
if ( nextUnready ! = null )
client . ChangeUserState ( nextUnready . UserID , MultiplayerUserState . Idle ) ;
}
private void performRandomAction ( )
{
int eventToPerform = RNG . Next ( 1 , 6 ) ;
switch ( eventToPerform )
{
case 1 :
addRandomPlayer ( ) ;
break ;
case 2 :
removeLastUser ( ) ;
break ;
case 3 :
kickLastUser ( ) ;
break ;
case 4 :
markNextPlayerReady ( ) ;
break ;
case 5 :
markNextPlayerIdle ( ) ;
break ;
}
}
2021-08-03 17:37:09 +08:00
[Test]
public void TestCreateRoomViaKeyboard ( )
{
// create room dialog
AddStep ( "Press new document" , ( ) = > InputManager . Keys ( PlatformAction . DocumentNew ) ) ;
AddUntilStep ( "wait for settings" , ( ) = > InputManager . ChildrenOfType < MultiplayerMatchSettingsOverlay > ( ) . FirstOrDefault ( ) ! = null ) ;
// edit playlist item
AddStep ( "Press select" , ( ) = > InputManager . Key ( Key . Enter ) ) ;
2021-11-25 20:11:13 +08:00
AddUntilStep ( "wait for song select" , ( ) = > InputManager . ChildrenOfType < MultiplayerMatchSongSelect > ( ) . FirstOrDefault ( ) ? . BeatmapSetsLoaded = = true ) ;
2021-08-03 17:37:09 +08:00
// select beatmap
AddStep ( "Press select" , ( ) = > InputManager . Key ( Key . Enter ) ) ;
AddUntilStep ( "wait for return to screen" , ( ) = > InputManager . ChildrenOfType < MultiplayerMatchSongSelect > ( ) . FirstOrDefault ( ) = = null ) ;
// create room
AddStep ( "Press select" , ( ) = > InputManager . Key ( Key . Enter ) ) ;
AddUntilStep ( "wait for room open" , ( ) = > this . ChildrenOfType < MultiplayerMatchSubScreen > ( ) . FirstOrDefault ( ) ? . IsLoaded = = true ) ;
2021-12-20 12:10:13 +08:00
AddUntilStep ( "wait for join" , ( ) = > client . RoomJoined ) ;
2021-08-03 17:37:09 +08:00
}
2021-07-19 19:55:14 +08:00
[Test]
public void TestCreateRoomWithoutPassword ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
2021-11-02 16:11:34 +08:00
AddAssert ( "Check participant count correct" , ( ) = > client . APIRoom ? . ParticipantCount . Value = = 1 ) ;
AddAssert ( "Check participant list contains user" , ( ) = > client . APIRoom ? . RecentParticipants . Count ( u = > u . Id = = API . LocalUser . Value . Id ) = = 1 ) ;
2021-07-19 19:55:14 +08:00
}
2021-07-20 15:23:48 +08:00
[Test]
public void TestExitMidJoin ( )
{
AddStep ( "create room" , ( ) = >
{
2021-08-17 08:45:10 +08:00
roomManager . AddServerSideRoom ( new Room
2021-07-20 15:23:48 +08:00
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
2021-11-26 16:23:50 +08:00
} , API . LocalUser . Value ) ;
2021-07-20 15:23:48 +08:00
} ) ;
2021-08-17 08:36:43 +08:00
AddStep ( "refresh rooms" , ( ) = > this . ChildrenOfType < LoungeSubScreen > ( ) . Single ( ) . UpdateFilter ( ) ) ;
AddUntilStep ( "wait for room" , ( ) = > this . ChildrenOfType < DrawableRoom > ( ) . Any ( ) ) ;
2021-07-20 15:23:48 +08:00
AddStep ( "select room" , ( ) = > InputManager . Key ( Key . Down ) ) ;
2021-08-17 08:36:43 +08:00
AddStep ( "join room and immediately exit select" , ( ) = >
2021-07-20 15:23:48 +08:00
{
2021-08-17 08:36:43 +08:00
InputManager . Key ( Key . Enter ) ;
2021-07-20 15:23:48 +08:00
Schedule ( ( ) = > Stack . CurrentScreen . Exit ( ) ) ;
} ) ;
}
2021-07-19 19:55:14 +08:00
[Test]
public void TestJoinRoomWithoutPassword ( )
{
AddStep ( "create room" , ( ) = >
{
2021-08-17 08:45:10 +08:00
roomManager . AddServerSideRoom ( new Room
2021-07-19 19:55:14 +08:00
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
2021-11-26 16:23:50 +08:00
} , API . LocalUser . Value ) ;
2021-07-19 19:55:14 +08:00
} ) ;
2021-08-17 08:36:43 +08:00
AddStep ( "refresh rooms" , ( ) = > this . ChildrenOfType < LoungeSubScreen > ( ) . Single ( ) . UpdateFilter ( ) ) ;
AddUntilStep ( "wait for room" , ( ) = > this . ChildrenOfType < DrawableRoom > ( ) . Any ( ) ) ;
2021-07-19 19:55:14 +08:00
AddStep ( "select room" , ( ) = > InputManager . Key ( Key . Down ) ) ;
AddStep ( "join room" , ( ) = > InputManager . Key ( Key . Enter ) ) ;
AddUntilStep ( "wait for room open" , ( ) = > this . ChildrenOfType < MultiplayerMatchSubScreen > ( ) . FirstOrDefault ( ) ? . IsLoaded = = true ) ;
2021-12-20 12:10:13 +08:00
AddUntilStep ( "wait for join" , ( ) = > client . RoomJoined ) ;
2021-11-02 16:11:34 +08:00
AddAssert ( "Check participant count correct" , ( ) = > client . APIRoom ? . ParticipantCount . Value = = 1 ) ;
AddAssert ( "Check participant list contains user" , ( ) = > client . APIRoom ? . RecentParticipants . Count ( u = > u . Id = = API . LocalUser . Value . Id ) = = 1 ) ;
2021-07-19 19:55:14 +08:00
}
2021-07-19 19:08:29 +08:00
[Test]
public void TestCreateRoomWithPassword ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Password = { Value = "password" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
AddAssert ( "room has password" , ( ) = > client . APIRoom ? . Password . Value = = "password" ) ;
}
2021-07-19 19:55:14 +08:00
[Test]
public void TestJoinRoomWithPassword ( )
{
AddStep ( "create room" , ( ) = >
{
2021-08-17 08:45:10 +08:00
roomManager . AddServerSideRoom ( new Room
2021-07-19 19:55:14 +08:00
{
Name = { Value = "Test Room" } ,
Password = { Value = "password" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
2021-11-26 16:23:50 +08:00
} , API . LocalUser . Value ) ;
2021-07-19 19:55:14 +08:00
} ) ;
2021-08-17 08:36:43 +08:00
AddStep ( "refresh rooms" , ( ) = > this . ChildrenOfType < LoungeSubScreen > ( ) . Single ( ) . UpdateFilter ( ) ) ;
AddUntilStep ( "wait for room" , ( ) = > this . ChildrenOfType < DrawableRoom > ( ) . Any ( ) ) ;
2021-07-19 19:55:14 +08:00
AddStep ( "select room" , ( ) = > InputManager . Key ( Key . Down ) ) ;
AddStep ( "join room" , ( ) = > InputManager . Key ( Key . Enter ) ) ;
2021-08-18 19:53:17 +08:00
DrawableLoungeRoom . PasswordEntryPopover passwordEntryPopover = null ;
AddUntilStep ( "password prompt appeared" , ( ) = > ( passwordEntryPopover = InputManager . ChildrenOfType < DrawableLoungeRoom . PasswordEntryPopover > ( ) . FirstOrDefault ( ) ) ! = null ) ;
2021-07-19 19:55:14 +08:00
AddStep ( "enter password in text box" , ( ) = > passwordEntryPopover . ChildrenOfType < TextBox > ( ) . First ( ) . Text = "password" ) ;
2021-08-04 16:27:44 +08:00
AddStep ( "press join room button" , ( ) = > passwordEntryPopover . ChildrenOfType < OsuButton > ( ) . First ( ) . TriggerClick ( ) ) ;
2021-07-20 15:44:51 +08:00
AddUntilStep ( "wait for room open" , ( ) = > this . ChildrenOfType < MultiplayerMatchSubScreen > ( ) . FirstOrDefault ( ) ? . IsLoaded = = true ) ;
2021-12-20 12:10:13 +08:00
AddUntilStep ( "wait for join" , ( ) = > client . RoomJoined ) ;
2021-07-19 19:55:14 +08:00
}
2021-07-19 19:20:08 +08:00
[Test]
public void TestLocalPasswordUpdatedWhenMultiplayerSettingsChange ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Password = { Value = "password" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
AddStep ( "change password" , ( ) = > client . ChangeSettings ( password : "password2" ) ) ;
AddUntilStep ( "local password changed" , ( ) = > client . APIRoom ? . Password . Value = = "password2" ) ;
}
2021-07-05 18:10:27 +08:00
[Test]
public void TestUserSetToIdleWhenBeatmapDeleted ( )
{
2021-05-11 18:31:32 +08:00
createRoom ( ( ) = > new Room
2021-05-11 18:26:58 +08:00
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
2021-12-11 21:47:08 +08:00
pressReadyButton ( ) ;
2021-05-11 18:26:58 +08:00
2021-12-11 21:47:08 +08:00
AddStep ( "delete beatmap" , ( ) = > beatmaps . Delete ( importedSet ) ) ;
2021-05-13 10:53:50 +08:00
AddUntilStep ( "user state is idle" , ( ) = > client . LocalUser ? . State = = MultiplayerUserState . Idle ) ;
2021-05-11 18:01:41 +08:00
}
2021-12-06 13:03:24 +08:00
[Test]
public void TestPlayStartsWithCorrectBeatmapWhileAtSongSelect ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
2021-12-11 21:47:08 +08:00
pressReadyButton ( ) ;
2021-12-06 13:03:24 +08:00
AddStep ( "Enter song select" , ( ) = >
{
2021-12-20 17:24:59 +08:00
var currentSubScreen = ( ( Screens . OnlinePlay . Multiplayer . Multiplayer ) multiplayerComponents . CurrentScreen ) . CurrentSubScreen ;
2021-12-10 19:08:59 +08:00
( ( MultiplayerMatchSubScreen ) currentSubScreen ) . OpenSongSelection ( client . Room ? . Settings . PlaylistItemId ) ;
2021-12-06 13:03:24 +08:00
} ) ;
2021-12-06 14:03:17 +08:00
AddUntilStep ( "wait for song select" , ( ) = > this . ChildrenOfType < MultiplayerMatchSongSelect > ( ) . FirstOrDefault ( ) ? . BeatmapSetsLoaded = = true ) ;
2021-12-06 13:03:24 +08:00
AddAssert ( "Beatmap matches current item" , ( ) = > Beatmap . Value . BeatmapInfo . OnlineID = = client . Room ? . Playlist . First ( ) . BeatmapID ) ;
AddStep ( "Select next beatmap" , ( ) = > InputManager . Key ( Key . Down ) ) ;
AddUntilStep ( "Beatmap doesn't match current item" , ( ) = > Beatmap . Value . BeatmapInfo . OnlineID ! = client . Room ? . Playlist . First ( ) . BeatmapID ) ;
AddStep ( "start match externally" , ( ) = > client . StartMatch ( ) ) ;
2021-12-20 17:24:59 +08:00
AddUntilStep ( "play started" , ( ) = > multiplayerComponents . CurrentScreen is Player ) ;
2021-12-06 13:03:24 +08:00
AddAssert ( "Beatmap matches current item" , ( ) = > Beatmap . Value . BeatmapInfo . OnlineID = = client . Room ? . Playlist . First ( ) . BeatmapID ) ;
}
2022-01-08 21:39:22 +08:00
[Test]
public void TestPlayStartsWithCorrectRulesetWhileAtSongSelect ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
pressReadyButton ( ) ;
AddStep ( "Enter song select" , ( ) = >
{
var currentSubScreen = ( ( Screens . OnlinePlay . Multiplayer . Multiplayer ) multiplayerComponents . CurrentScreen ) . CurrentSubScreen ;
( ( MultiplayerMatchSubScreen ) currentSubScreen ) . OpenSongSelection ( client . Room ? . Settings . PlaylistItemId ) ;
} ) ;
AddUntilStep ( "wait for song select" , ( ) = > this . ChildrenOfType < MultiplayerMatchSongSelect > ( ) . FirstOrDefault ( ) ? . BeatmapSetsLoaded = = true ) ;
AddAssert ( "Ruleset matches current item" , ( ) = > Ruleset . Value . OnlineID = = client . Room ? . Playlist . First ( ) . RulesetID ) ;
AddStep ( "Switch ruleset" , ( ) = > ( ( MultiplayerMatchSongSelect ) multiplayerComponents . MultiplayerScreen . CurrentSubScreen ) . Ruleset . Value = new CatchRuleset ( ) . RulesetInfo ) ;
AddUntilStep ( "Ruleset doesn't match current item" , ( ) = > Ruleset . Value . OnlineID ! = client . Room ? . Playlist . First ( ) . RulesetID ) ;
AddStep ( "start match externally" , ( ) = > client . StartMatch ( ) ) ;
AddUntilStep ( "play started" , ( ) = > multiplayerComponents . CurrentScreen is Player ) ;
AddAssert ( "Ruleset matches current item" , ( ) = > Ruleset . Value . OnlineID = = client . Room ? . Playlist . First ( ) . RulesetID ) ;
}
2022-01-08 21:50:49 +08:00
[Test]
public void TestPlayStartsWithCorrectModsWhileAtSongSelect ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
pressReadyButton ( ) ;
AddStep ( "Enter song select" , ( ) = >
{
var currentSubScreen = ( ( Screens . OnlinePlay . Multiplayer . Multiplayer ) multiplayerComponents . CurrentScreen ) . CurrentSubScreen ;
( ( MultiplayerMatchSubScreen ) currentSubScreen ) . OpenSongSelection ( client . Room ? . Settings . PlaylistItemId ) ;
} ) ;
AddUntilStep ( "wait for song select" , ( ) = > this . ChildrenOfType < MultiplayerMatchSongSelect > ( ) . FirstOrDefault ( ) ? . BeatmapSetsLoaded = = true ) ;
AddAssert ( "Mods match current item" , ( ) = > SelectedMods . Value . Select ( m = > m . Acronym ) . SequenceEqual ( client . Room . AsNonNull ( ) . Playlist . First ( ) . RequiredMods . Select ( m = > m . Acronym ) ) ) ;
AddStep ( "Switch required mods" , ( ) = > ( ( MultiplayerMatchSongSelect ) multiplayerComponents . MultiplayerScreen . CurrentSubScreen ) . Mods . Value = new Mod [ ] { new OsuModDoubleTime ( ) } ) ;
AddAssert ( "Mods don't match current item" , ( ) = > ! SelectedMods . Value . Select ( m = > m . Acronym ) . SequenceEqual ( client . Room . AsNonNull ( ) . Playlist . First ( ) . RequiredMods . Select ( m = > m . Acronym ) ) ) ;
AddStep ( "start match externally" , ( ) = > client . StartMatch ( ) ) ;
AddUntilStep ( "play started" , ( ) = > multiplayerComponents . CurrentScreen is Player ) ;
AddAssert ( "Mods match current item" , ( ) = > SelectedMods . Value . Select ( m = > m . Acronym ) . SequenceEqual ( client . Room . AsNonNull ( ) . Playlist . First ( ) . RequiredMods . Select ( m = > m . Acronym ) ) ) ;
}
2021-05-11 18:01:41 +08:00
[Test]
2021-05-11 18:21:44 +08:00
public void TestLocalPlayDoesNotStartWhileSpectatingWithNoBeatmap ( )
2021-05-11 18:01:41 +08:00
{
2021-05-11 18:31:32 +08:00
createRoom ( ( ) = > new Room
2021-05-11 18:01:41 +08:00
{
2021-05-11 18:21:44 +08:00
Name = { Value = "Test Room" } ,
Playlist =
2021-05-11 18:01:41 +08:00
{
2021-05-11 18:21:44 +08:00
new PlaylistItem
2021-05-11 18:01:41 +08:00
{
2021-05-11 18:21:44 +08:00
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
2021-05-11 18:01:41 +08:00
}
2021-05-11 18:21:44 +08:00
}
2021-05-11 18:01:41 +08:00
} ) ;
2021-05-11 18:21:44 +08:00
AddStep ( "join other user (ready, host)" , ( ) = >
2021-05-11 18:01:41 +08:00
{
2021-11-04 17:02:44 +08:00
client . AddUser ( new APIUser { Id = MultiplayerTestScene . PLAYER_1_ID , Username = "Other" } ) ;
2021-05-11 18:21:44 +08:00
client . TransferHost ( MultiplayerTestScene . PLAYER_1_ID ) ;
client . ChangeUserState ( MultiplayerTestScene . PLAYER_1_ID , MultiplayerUserState . Ready ) ;
} ) ;
AddStep ( "delete beatmap" , ( ) = > beatmaps . Delete ( importedSet ) ) ;
2021-12-21 12:20:12 +08:00
ClickButtonWhenEnabled < MultiplayerSpectateButton > ( ) ;
2021-05-11 18:01:41 +08:00
2021-08-13 12:54:52 +08:00
AddUntilStep ( "wait for spectating user state" , ( ) = > client . LocalUser ? . State = = MultiplayerUserState . Spectating ) ;
2021-05-11 18:21:44 +08:00
AddStep ( "start match externally" , ( ) = > client . StartMatch ( ) ) ;
2021-12-20 17:24:59 +08:00
AddAssert ( "play not started" , ( ) = > multiplayerComponents . IsCurrentScreen ( ) ) ;
2021-05-11 18:21:44 +08:00
}
[Test]
public void TestLocalPlayStartsWhileSpectatingWhenBeatmapBecomesAvailable ( )
{
2021-05-11 18:31:32 +08:00
createRoom ( ( ) = > new Room
2021-05-11 18:21:44 +08:00
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
AddStep ( "delete beatmap" , ( ) = > beatmaps . Delete ( importedSet ) ) ;
2021-05-11 18:01:41 +08:00
AddStep ( "join other user (ready, host)" , ( ) = >
{
2021-11-04 17:02:44 +08:00
client . AddUser ( new APIUser { Id = MultiplayerTestScene . PLAYER_1_ID , Username = "Other" } ) ;
2021-05-11 18:01:41 +08:00
client . TransferHost ( MultiplayerTestScene . PLAYER_1_ID ) ;
client . ChangeUserState ( MultiplayerTestScene . PLAYER_1_ID , MultiplayerUserState . Ready ) ;
} ) ;
2021-12-21 12:20:12 +08:00
ClickButtonWhenEnabled < MultiplayerSpectateButton > ( ) ;
2021-05-11 18:01:41 +08:00
2021-08-13 12:54:52 +08:00
AddUntilStep ( "wait for spectating user state" , ( ) = > client . LocalUser ? . State = = MultiplayerUserState . Spectating ) ;
2021-05-11 18:01:41 +08:00
AddStep ( "start match externally" , ( ) = > client . StartMatch ( ) ) ;
2021-05-11 18:21:44 +08:00
AddStep ( "restore beatmap" , ( ) = >
{
2022-01-03 16:02:15 +08:00
beatmaps . Import ( TestResources . GetQuickTestBeatmapForImport ( ) ) . WaitSafely ( ) ;
2021-12-17 17:26:12 +08:00
importedSet = beatmaps . GetAllUsableBeatmapSets ( ) . First ( ) ;
2021-05-11 18:21:44 +08:00
} ) ;
2021-12-20 17:24:59 +08:00
AddUntilStep ( "play started" , ( ) = > multiplayerComponents . CurrentScreen is SpectatorScreen ) ;
2021-05-11 18:21:44 +08:00
}
2021-07-13 16:31:28 +08:00
[Test]
public void TestSubScreenExitedWhenDisconnectedFromMultiplayerServer ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
AddStep ( "disconnect" , ( ) = > client . Disconnect ( ) ) ;
AddUntilStep ( "back in lounge" , ( ) = > this . ChildrenOfType < LoungeSubScreen > ( ) . FirstOrDefault ( ) ? . IsCurrentScreen ( ) = = true ) ;
}
2021-06-22 23:48:41 +08:00
[Test]
public void TestLeaveNavigation ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
AllowedMods = { new OsuModHidden ( ) }
}
}
} ) ;
2021-08-13 13:04:43 +08:00
AddStep ( "open mod overlay" , ( ) = > this . ChildrenOfType < RoomSubScreen . UserModSelectButton > ( ) . Single ( ) . TriggerClick ( ) ) ;
2021-06-22 23:48:41 +08:00
2021-12-20 17:24:59 +08:00
AddStep ( "invoke on back button" , ( ) = > multiplayerComponents . OnBackButton ( ) ) ;
2021-06-22 23:48:41 +08:00
2021-09-01 16:22:52 +08:00
AddAssert ( "mod overlay is hidden" , ( ) = > this . ChildrenOfType < UserModSelectOverlay > ( ) . Single ( ) . State . Value = = Visibility . Hidden ) ;
2021-06-22 23:48:41 +08:00
AddAssert ( "dialog overlay is hidden" , ( ) = > DialogOverlay . State . Value = = Visibility . Hidden ) ;
2021-12-20 17:24:59 +08:00
testLeave ( "back button" , ( ) = > multiplayerComponents . OnBackButton ( ) ) ;
2021-06-22 23:48:41 +08:00
// mimics home button and OS window close
2021-12-20 17:24:59 +08:00
testLeave ( "forced exit" , ( ) = > multiplayerComponents . Exit ( ) ) ;
2021-06-22 23:48:41 +08:00
void testLeave ( string actionName , Action action )
{
AddStep ( $"leave via {actionName}" , action ) ;
AddAssert ( "dialog overlay is visible" , ( ) = > DialogOverlay . State . Value = = Visibility . Visible ) ;
AddStep ( "close dialog overlay" , ( ) = > InputManager . Key ( Key . Escape ) ) ;
}
}
2021-08-24 12:20:01 +08:00
[Test]
public void TestGameplayFlow ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
2021-12-15 15:52:50 +08:00
enterGameplay ( ) ;
2021-08-24 12:20:01 +08:00
// Gameplay runs in real-time, so we need to incrementally check if gameplay has finished in order to not time out.
for ( double i = 1000 ; i < TestResources . QUICK_BEATMAP_LENGTH ; i + = 1000 )
{
2021-10-27 12:04:41 +08:00
double time = i ;
2021-08-24 12:20:01 +08:00
AddUntilStep ( $"wait for time > {i}" , ( ) = > this . ChildrenOfType < GameplayClockContainer > ( ) . SingleOrDefault ( ) ? . GameplayClock . CurrentTime > time ) ;
}
2021-12-20 17:24:59 +08:00
AddUntilStep ( "wait for results" , ( ) = > multiplayerComponents . CurrentScreen is ResultsScreen ) ;
2021-08-24 12:20:01 +08:00
}
2021-11-13 00:53:58 +08:00
[Test]
public void TestRoomSettingsReQueriedWhenJoiningRoom ( )
{
AddStep ( "create room" , ( ) = >
{
roomManager . AddServerSideRoom ( new Room
{
Name = { Value = "Test Room" } ,
2021-11-19 17:28:43 +08:00
QueueMode = { Value = QueueMode . AllPlayers } ,
2021-11-13 00:53:58 +08:00
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
2021-11-26 16:23:50 +08:00
} , API . LocalUser . Value ) ;
2021-11-13 00:53:58 +08:00
} ) ;
AddStep ( "refresh rooms" , ( ) = > this . ChildrenOfType < LoungeSubScreen > ( ) . Single ( ) . UpdateFilter ( ) ) ;
AddUntilStep ( "wait for room" , ( ) = > this . ChildrenOfType < DrawableRoom > ( ) . Any ( ) ) ;
AddStep ( "select room" , ( ) = > InputManager . Key ( Key . Down ) ) ;
AddStep ( "disable polling" , ( ) = > this . ChildrenOfType < ListingPollingComponent > ( ) . Single ( ) . TimeBetweenPolls . Value = 0 ) ;
AddStep ( "change server-side settings" , ( ) = >
{
roomManager . ServerSideRooms [ 0 ] . Name . Value = "New name" ;
roomManager . ServerSideRooms [ 0 ] . Playlist . Add ( new PlaylistItem
{
ID = 2 ,
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
} ) ;
} ) ;
AddStep ( "join room" , ( ) = > InputManager . Key ( Key . Enter ) ) ;
AddUntilStep ( "wait for room open" , ( ) = > this . ChildrenOfType < MultiplayerMatchSubScreen > ( ) . FirstOrDefault ( ) ? . IsLoaded = = true ) ;
2021-12-20 12:10:13 +08:00
AddUntilStep ( "wait for join" , ( ) = > client . RoomJoined ) ;
2021-11-13 00:53:58 +08:00
AddAssert ( "local room has correct settings" , ( ) = >
{
var localRoom = this . ChildrenOfType < MultiplayerMatchSubScreen > ( ) . Single ( ) . Room ;
return localRoom . Name . Value = = roomManager . ServerSideRooms [ 0 ] . Name . Value
& & localRoom . Playlist . SequenceEqual ( roomManager . ServerSideRooms [ 0 ] . Playlist ) ;
} ) ;
}
2021-12-15 16:37:39 +08:00
[Test]
public void TestSpectatingStateResetOnBackButtonDuringGameplay ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
QueueMode = { Value = QueueMode . AllPlayers } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
AddStep ( "set spectating state" , ( ) = > client . ChangeUserState ( API . LocalUser . Value . OnlineID , MultiplayerUserState . Spectating ) ) ;
AddUntilStep ( "state set to spectating" , ( ) = > client . LocalUser ? . State = = MultiplayerUserState . Spectating ) ;
AddStep ( "join other user" , ( ) = > client . AddUser ( new APIUser { Id = 1234 } ) ) ;
AddStep ( "set other user ready" , ( ) = > client . ChangeUserState ( 1234 , MultiplayerUserState . Ready ) ) ;
pressReadyButton ( 1234 ) ;
2021-12-20 17:24:59 +08:00
AddUntilStep ( "wait for gameplay" , ( ) = > ( multiplayerComponents . CurrentScreen as MultiSpectatorScreen ) ? . IsLoaded = = true ) ;
2021-12-15 16:37:39 +08:00
AddStep ( "press back button and exit" , ( ) = >
{
2021-12-20 17:24:59 +08:00
multiplayerComponents . OnBackButton ( ) ;
multiplayerComponents . Exit ( ) ;
2021-12-15 16:37:39 +08:00
} ) ;
2021-12-20 17:24:59 +08:00
AddUntilStep ( "wait for return to match subscreen" , ( ) = > multiplayerComponents . MultiplayerScreen . IsCurrentScreen ( ) ) ;
2021-12-15 16:37:39 +08:00
AddUntilStep ( "user state is idle" , ( ) = > client . LocalUser ? . State = = MultiplayerUserState . Idle ) ;
}
[Test]
public void TestSpectatingStateNotResetOnBackButtonOutsideOfGameplay ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
QueueMode = { Value = QueueMode . AllPlayers } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
AddStep ( "set spectating state" , ( ) = > client . ChangeUserState ( API . LocalUser . Value . OnlineID , MultiplayerUserState . Spectating ) ) ;
AddUntilStep ( "state set to spectating" , ( ) = > client . LocalUser ? . State = = MultiplayerUserState . Spectating ) ;
AddStep ( "join other user" , ( ) = > client . AddUser ( new APIUser { Id = 1234 } ) ) ;
AddStep ( "set other user ready" , ( ) = > client . ChangeUserState ( 1234 , MultiplayerUserState . Ready ) ) ;
pressReadyButton ( 1234 ) ;
2021-12-20 17:24:59 +08:00
AddUntilStep ( "wait for gameplay" , ( ) = > ( multiplayerComponents . CurrentScreen as MultiSpectatorScreen ) ? . IsLoaded = = true ) ;
2021-12-15 16:37:39 +08:00
AddStep ( "set other user loaded" , ( ) = > client . ChangeUserState ( 1234 , MultiplayerUserState . Loaded ) ) ;
AddStep ( "set other user finished play" , ( ) = > client . ChangeUserState ( 1234 , MultiplayerUserState . FinishedPlay ) ) ;
AddStep ( "press back button and exit" , ( ) = >
{
2021-12-20 17:24:59 +08:00
multiplayerComponents . OnBackButton ( ) ;
multiplayerComponents . Exit ( ) ;
2021-12-15 16:37:39 +08:00
} ) ;
2021-12-20 17:24:59 +08:00
AddUntilStep ( "wait for return to match subscreen" , ( ) = > multiplayerComponents . MultiplayerScreen . IsCurrentScreen ( ) ) ;
2021-12-15 16:37:39 +08:00
AddWaitStep ( "wait for possible state change" , 5 ) ;
AddUntilStep ( "user state is spectating" , ( ) = > client . LocalUser ? . State = = MultiplayerUserState . Spectating ) ;
}
2021-12-15 16:30:09 +08:00
[Test]
public void TestItemAddedByOtherUserDuringGameplay ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
QueueMode = { Value = QueueMode . AllPlayers } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
enterGameplay ( ) ;
AddStep ( "join other user" , ( ) = > client . AddUser ( new APIUser { Id = 1234 } ) ) ;
AddStep ( "add item as other user" , ( ) = > client . AddUserPlaylistItem ( 1234 , new MultiplayerPlaylistItem ( new PlaylistItem
{
BeatmapID = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo . OnlineID ? ? - 1
} ) ) ) ;
AddUntilStep ( "item arrived in playlist" , ( ) = > client . Room ? . Playlist . Count = = 2 ) ;
2021-12-20 17:24:59 +08:00
AddStep ( "exit gameplay as initial user" , ( ) = > multiplayerComponents . MultiplayerScreen . MakeCurrent ( ) ) ;
2021-12-15 16:30:09 +08:00
AddUntilStep ( "queue contains item" , ( ) = > this . ChildrenOfType < MultiplayerQueueList > ( ) . Single ( ) . Items . Single ( ) . ID = = 2 ) ;
}
2021-12-15 15:52:50 +08:00
[Test]
public void TestItemAddedAndDeletedByOtherUserDuringGameplay ( )
{
createRoom ( ( ) = > new Room
{
Name = { Value = "Test Room" } ,
QueueMode = { Value = QueueMode . AllPlayers } ,
Playlist =
{
new PlaylistItem
{
Beatmap = { Value = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo } ,
Ruleset = { Value = new OsuRuleset ( ) . RulesetInfo } ,
}
}
} ) ;
enterGameplay ( ) ;
AddStep ( "join other user" , ( ) = > client . AddUser ( new APIUser { Id = 1234 } ) ) ;
AddStep ( "add item as other user" , ( ) = > client . AddUserPlaylistItem ( 1234 , new MultiplayerPlaylistItem ( new PlaylistItem
{
BeatmapID = beatmaps . GetWorkingBeatmap ( importedSet . Beatmaps . First ( b = > b . RulesetID = = 0 ) ) . BeatmapInfo . OnlineID ? ? - 1
} ) ) ) ;
2021-12-15 15:59:34 +08:00
AddUntilStep ( "item arrived in playlist" , ( ) = > client . Room ? . Playlist . Count = = 2 ) ;
2021-12-15 15:52:50 +08:00
AddStep ( "delete item as other user" , ( ) = > client . RemoveUserPlaylistItem ( 1234 , 2 ) ) ;
2021-12-15 15:59:34 +08:00
AddUntilStep ( "item removed from playlist" , ( ) = > client . Room ? . Playlist . Count = = 1 ) ;
2021-12-15 15:52:50 +08:00
2021-12-20 17:24:59 +08:00
AddStep ( "exit gameplay as initial user" , ( ) = > multiplayerComponents . MultiplayerScreen . MakeCurrent ( ) ) ;
2021-12-15 15:52:50 +08:00
AddUntilStep ( "queue is empty" , ( ) = > this . ChildrenOfType < MultiplayerQueueList > ( ) . Single ( ) . Items . Count = = 0 ) ;
}
2021-12-15 16:37:39 +08:00
private void enterGameplay ( )
{
pressReadyButton ( ) ;
pressReadyButton ( ) ;
2021-12-20 17:24:59 +08:00
AddUntilStep ( "wait for player" , ( ) = > multiplayerComponents . CurrentScreen is Player ) ;
2021-12-15 16:37:39 +08:00
}
2021-12-11 21:47:08 +08:00
private ReadyButton readyButton = > this . ChildrenOfType < ReadyButton > ( ) . Single ( ) ;
2021-12-15 16:37:39 +08:00
private void pressReadyButton ( int? playingUserId = null )
2021-12-11 21:47:08 +08:00
{
2021-12-21 12:47:37 +08:00
// Can't use ClickButtonWhenEnabled<> due to needing to store the state after the button is enabled.
2021-12-11 21:47:08 +08:00
AddUntilStep ( "wait for ready button to be enabled" , ( ) = > readyButton . Enabled . Value ) ;
MultiplayerUserState lastState = MultiplayerUserState . Idle ;
2021-12-15 16:37:39 +08:00
MultiplayerRoomUser user = null ;
2021-12-11 21:47:08 +08:00
AddStep ( "click ready button" , ( ) = >
{
2021-12-15 16:37:39 +08:00
user = playingUserId = = null ? client . LocalUser : client . Room ? . Users . Single ( u = > u . UserID = = playingUserId ) ;
lastState = user ? . State ? ? MultiplayerUserState . Idle ;
2021-12-11 21:47:08 +08:00
InputManager . MoveMouseTo ( readyButton ) ;
InputManager . Click ( MouseButton . Left ) ;
} ) ;
2021-12-15 16:37:39 +08:00
AddUntilStep ( "wait for state change" , ( ) = > user ? . State ! = lastState ) ;
2021-12-11 21:47:08 +08:00
}
2021-10-14 14:58:42 +08:00
2021-05-11 18:31:32 +08:00
private void createRoom ( Func < Room > room )
2021-05-11 18:21:44 +08:00
{
2021-12-20 17:24:59 +08:00
AddUntilStep ( "wait for lounge" , ( ) = > multiplayerComponents . ChildrenOfType < LoungeSubScreen > ( ) . SingleOrDefault ( ) ? . IsLoaded = = true ) ;
AddStep ( "open room" , ( ) = > multiplayerComponents . ChildrenOfType < LoungeSubScreen > ( ) . Single ( ) . Open ( room ( ) ) ) ;
2021-05-11 18:21:44 +08:00
2021-05-11 18:31:32 +08:00
AddUntilStep ( "wait for room open" , ( ) = > this . ChildrenOfType < MultiplayerMatchSubScreen > ( ) . FirstOrDefault ( ) ? . IsLoaded = = true ) ;
AddWaitStep ( "wait for transition" , 2 ) ;
2021-12-21 12:20:12 +08:00
ClickButtonWhenEnabled < MultiplayerMatchSettingsOverlay . CreateOrUpdateButton > ( ) ;
2021-05-11 18:21:44 +08:00
2021-12-20 12:10:13 +08:00
AddUntilStep ( "wait for join" , ( ) = > client . RoomJoined ) ;
2021-05-11 18:01:41 +08:00
}
2020-12-21 17:42:31 +08:00
}
}