2020-12-19 01:23:42 +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
|
|
|
|
|
2021-03-02 18:06:21 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
|
|
|
using osu.Game.Tests.Beatmaps;
|
2021-06-25 14:00:10 +08:00
|
|
|
using osu.Game.Tests.Visual.OnlinePlay;
|
2021-06-25 16:55:16 +08:00
|
|
|
using osu.Game.Tests.Visual.Spectator;
|
2020-12-19 01:23:42 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
2020-12-19 01:23:42 +08:00
|
|
|
{
|
2021-06-25 17:02:53 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The base test scene for all multiplayer components and screens.
|
|
|
|
/// </summary>
|
2022-11-24 13:32:20 +08:00
|
|
|
public abstract partial class MultiplayerTestScene : OnlinePlayTestScene, IMultiplayerTestSceneDependencies
|
2020-12-19 01:23:42 +08:00
|
|
|
{
|
2021-04-26 16:22:16 +08:00
|
|
|
public const int PLAYER_1_ID = 55;
|
|
|
|
public const int PLAYER_2_ID = 56;
|
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
public TestMultiplayerClient MultiplayerClient => OnlinePlayDependencies.MultiplayerClient;
|
2021-10-27 15:10:22 +08:00
|
|
|
public new TestMultiplayerRoomManager RoomManager => OnlinePlayDependencies.RoomManager;
|
2021-06-25 17:07:47 +08:00
|
|
|
public TestSpectatorClient SpectatorClient => OnlinePlayDependencies?.SpectatorClient;
|
2020-12-19 01:23:42 +08:00
|
|
|
|
2021-06-25 19:11:38 +08:00
|
|
|
protected new MultiplayerTestSceneDependencies OnlinePlayDependencies => (MultiplayerTestSceneDependencies)base.OnlinePlayDependencies;
|
2020-12-19 01:23:42 +08:00
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
public bool RoomJoined => MultiplayerClient.RoomJoined;
|
2021-11-23 15:04:11 +08:00
|
|
|
|
2020-12-19 01:23:42 +08:00
|
|
|
private readonly bool joinRoom;
|
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
protected MultiplayerTestScene(bool joinRoom = true)
|
2020-12-19 01:23:42 +08:00
|
|
|
{
|
|
|
|
this.joinRoom = joinRoom;
|
|
|
|
}
|
|
|
|
|
2021-08-09 15:44:50 +08:00
|
|
|
protected virtual Room CreateRoom()
|
|
|
|
{
|
|
|
|
return new Room
|
|
|
|
{
|
|
|
|
Name = { Value = "test name" },
|
2022-04-11 15:47:34 +08:00
|
|
|
Type = { Value = MatchType.HeadToHead },
|
2021-08-09 15:44:50 +08:00
|
|
|
Playlist =
|
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
new PlaylistItem(new TestBeatmap(Ruleset.Value).BeatmapInfo)
|
2021-08-09 15:44:50 +08:00
|
|
|
{
|
2022-02-15 15:01:14 +08:00
|
|
|
RulesetID = Ruleset.Value.OnlineID
|
2021-08-09 15:44:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-02-04 23:42:38 +08:00
|
|
|
public override void SetUpSteps()
|
|
|
|
{
|
|
|
|
base.SetUpSteps();
|
|
|
|
|
|
|
|
if (joinRoom)
|
2021-10-27 15:10:22 +08:00
|
|
|
{
|
2022-07-29 14:27:39 +08:00
|
|
|
AddStep("join room", () =>
|
|
|
|
{
|
|
|
|
SelectedRoom.Value = CreateRoom();
|
|
|
|
RoomManager.CreateRoom(SelectedRoom.Value);
|
|
|
|
});
|
|
|
|
|
2021-11-23 15:04:11 +08:00
|
|
|
AddUntilStep("wait for room join", () => RoomJoined);
|
2021-10-27 15:10:22 +08:00
|
|
|
}
|
2021-02-04 23:42:38 +08:00
|
|
|
}
|
2021-06-25 17:02:53 +08:00
|
|
|
|
2021-06-25 19:11:38 +08:00
|
|
|
protected override OnlinePlayTestSceneDependencies CreateOnlinePlayDependencies() => new MultiplayerTestSceneDependencies();
|
2020-12-19 01:23:42 +08:00
|
|
|
}
|
|
|
|
}
|