2021-08-02 17:31:56 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Audio;
|
2022-01-03 16:02:15 +08:00
|
|
|
using osu.Framework.Extensions;
|
2021-08-02 17:31:56 +08:00
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Beatmaps;
|
2021-11-11 15:39:59 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-11-30 16:09:32 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2021-08-03 16:08:19 +08:00
|
|
|
using osu.Game.Online.Multiplayer.MatchTypes.TeamVersus;
|
2021-08-02 17:31:56 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Osu;
|
2021-08-05 19:52:40 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge;
|
2021-08-02 17:31:56 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Multiplayer;
|
|
|
|
using osu.Game.Screens.OnlinePlay.Multiplayer.Match;
|
2021-08-03 16:26:10 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Multiplayer.Participants;
|
2021-08-02 17:31:56 +08:00
|
|
|
using osu.Game.Tests.Resources;
|
|
|
|
using osuTK.Input;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
|
|
{
|
|
|
|
public class TestSceneTeamVersus : ScreenTestScene
|
|
|
|
{
|
|
|
|
private BeatmapManager beatmaps;
|
|
|
|
private RulesetStore rulesets;
|
|
|
|
private BeatmapSetInfo importedSet;
|
|
|
|
|
2021-12-20 17:24:59 +08:00
|
|
|
private TestMultiplayerComponents multiplayerComponents;
|
2021-10-28 13:29:49 +08:00
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
private TestMultiplayerClient multiplayerClient => multiplayerComponents.MultiplayerClient;
|
2021-08-02 17:31:56 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(GameHost host, AudioManager audio)
|
|
|
|
{
|
2022-02-16 16:13:51 +08:00
|
|
|
Dependencies.Cache(rulesets = new RealmRulesetStore(Realm));
|
2022-01-25 11:58:15 +08:00
|
|
|
Dependencies.Cache(beatmaps = new BeatmapManager(LocalStorage, Realm, rulesets, null, audio, Resources, host, Beatmap.Default));
|
|
|
|
Dependencies.Cache(Realm);
|
2021-08-02 17:31:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void SetUpSteps()
|
|
|
|
{
|
|
|
|
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-08-02 17:31:56 +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-08-02 17:31:56 +08:00
|
|
|
AddUntilStep("wait for lounge to load", () => this.ChildrenOfType<MultiplayerLoungeSubScreen>().FirstOrDefault()?.IsLoaded == true);
|
|
|
|
}
|
|
|
|
|
2021-08-03 16:08:19 +08:00
|
|
|
[Test]
|
|
|
|
public void TestCreateWithType()
|
|
|
|
{
|
|
|
|
createRoom(() => new Room
|
|
|
|
{
|
|
|
|
Name = { Value = "Test Room" },
|
|
|
|
Type = { Value = MatchType.TeamVersus },
|
|
|
|
Playlist =
|
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
new PlaylistItem(beatmaps.GetWorkingBeatmap(importedSet.Beatmaps.First(b => b.Ruleset.OnlineID == 0)).BeatmapInfo)
|
2021-08-03 16:08:19 +08:00
|
|
|
{
|
2022-02-15 15:01:14 +08:00
|
|
|
RulesetID = new OsuRuleset().RulesetInfo.OnlineID
|
2021-08-03 16:08:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddUntilStep("room type is team vs", () => multiplayerClient.Room?.Settings.MatchType == MatchType.TeamVersus);
|
|
|
|
AddAssert("user state arrived", () => multiplayerClient.Room?.Users.FirstOrDefault()?.MatchState is TeamVersusUserState);
|
2021-08-03 16:08:19 +08:00
|
|
|
}
|
|
|
|
|
2021-08-03 16:26:10 +08:00
|
|
|
[Test]
|
|
|
|
public void TestChangeTeamsViaButton()
|
|
|
|
{
|
|
|
|
createRoom(() => new Room
|
|
|
|
{
|
|
|
|
Name = { Value = "Test Room" },
|
|
|
|
Type = { Value = MatchType.TeamVersus },
|
|
|
|
Playlist =
|
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
new PlaylistItem(beatmaps.GetWorkingBeatmap(importedSet.Beatmaps.First(b => b.Ruleset.OnlineID == 0)).BeatmapInfo)
|
2021-08-03 16:26:10 +08:00
|
|
|
{
|
2022-02-15 15:01:14 +08:00
|
|
|
RulesetID = new OsuRuleset().RulesetInfo.OnlineID
|
2021-08-03 16:26:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddAssert("user on team 0", () => (multiplayerClient.Room?.Users.FirstOrDefault()?.MatchState as TeamVersusUserState)?.TeamID == 0);
|
|
|
|
AddStep("add another user", () => multiplayerClient.AddUser(new APIUser { Username = "otheruser", Id = 44 }));
|
2021-08-03 16:26:10 +08:00
|
|
|
|
2021-11-11 15:39:59 +08:00
|
|
|
AddStep("press own button", () =>
|
2021-08-03 16:26:10 +08:00
|
|
|
{
|
2021-12-20 17:24:59 +08:00
|
|
|
InputManager.MoveMouseTo(multiplayerComponents.ChildrenOfType<TeamDisplay>().First());
|
2021-08-03 16:26:10 +08:00
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
2022-02-16 08:43:28 +08:00
|
|
|
AddAssert("user on team 1", () => (multiplayerClient.Room?.Users.FirstOrDefault()?.MatchState as TeamVersusUserState)?.TeamID == 1);
|
2021-08-03 16:26:10 +08:00
|
|
|
|
2021-11-11 15:39:59 +08:00
|
|
|
AddStep("press own button again", () => InputManager.Click(MouseButton.Left));
|
2022-02-16 08:43:28 +08:00
|
|
|
AddAssert("user on team 0", () => (multiplayerClient.Room?.Users.FirstOrDefault()?.MatchState as TeamVersusUserState)?.TeamID == 0);
|
2021-11-11 15:39:59 +08:00
|
|
|
|
|
|
|
AddStep("press other user's button", () =>
|
|
|
|
{
|
2021-12-20 17:24:59 +08:00
|
|
|
InputManager.MoveMouseTo(multiplayerComponents.ChildrenOfType<TeamDisplay>().ElementAt(1));
|
2021-11-11 15:39:59 +08:00
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
2022-02-16 08:43:28 +08:00
|
|
|
AddAssert("user still on team 0", () => (multiplayerClient.Room?.Users.FirstOrDefault()?.MatchState as TeamVersusUserState)?.TeamID == 0);
|
2021-08-03 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
2021-11-30 16:09:32 +08:00
|
|
|
[Test]
|
2021-11-30 16:16:30 +08:00
|
|
|
public void TestSettingsUpdatedWhenChangingMatchType()
|
2021-11-30 16:09:32 +08:00
|
|
|
{
|
|
|
|
createRoom(() => new Room
|
|
|
|
{
|
|
|
|
Name = { Value = "Test Room" },
|
2021-12-01 03:57:02 +08:00
|
|
|
Type = { Value = MatchType.HeadToHead },
|
|
|
|
Playlist =
|
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
new PlaylistItem(beatmaps.GetWorkingBeatmap(importedSet.Beatmaps.First(b => b.Ruleset.OnlineID == 0)).BeatmapInfo)
|
2021-12-01 03:57:02 +08:00
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
RulesetID = new OsuRuleset().RulesetInfo.OnlineID,
|
2021-12-01 03:57:02 +08:00
|
|
|
}
|
|
|
|
}
|
2021-11-30 16:09:32 +08:00
|
|
|
});
|
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddUntilStep("match type head to head", () => multiplayerClient.APIRoom?.Type.Value == MatchType.HeadToHead);
|
2021-11-30 16:09:32 +08:00
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddStep("change match type", () => multiplayerClient.ChangeSettings(new MultiplayerRoomSettings
|
2021-11-30 16:09:32 +08:00
|
|
|
{
|
|
|
|
MatchType = MatchType.TeamVersus
|
2022-02-15 01:35:08 +08:00
|
|
|
}).WaitSafely());
|
2021-11-30 16:09:32 +08:00
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddUntilStep("api room updated to team versus", () => multiplayerClient.APIRoom?.Type.Value == MatchType.TeamVersus);
|
2021-11-30 16:09:32 +08:00
|
|
|
}
|
|
|
|
|
2021-08-02 17:31:56 +08:00
|
|
|
[Test]
|
|
|
|
public void TestChangeTypeViaMatchSettings()
|
|
|
|
{
|
|
|
|
createRoom(() => new Room
|
|
|
|
{
|
|
|
|
Name = { Value = "Test Room" },
|
|
|
|
Playlist =
|
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
new PlaylistItem(beatmaps.GetWorkingBeatmap(importedSet.Beatmaps.First(b => b.Ruleset.OnlineID == 0)).BeatmapInfo)
|
2021-08-02 17:31:56 +08:00
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
RulesetID = new OsuRuleset().RulesetInfo.OnlineID,
|
2021-08-02 17:31:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddUntilStep("room type is head to head", () => multiplayerClient.Room?.Settings.MatchType == MatchType.HeadToHead);
|
2021-08-02 17:31:56 +08:00
|
|
|
|
2021-12-20 17:24:59 +08:00
|
|
|
AddUntilStep("team displays are not displaying teams", () => multiplayerComponents.ChildrenOfType<TeamDisplay>().All(d => d.DisplayedTeam == null));
|
2021-11-10 12:44:24 +08:00
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddStep("change to team vs", () => multiplayerClient.ChangeSettings(matchType: MatchType.TeamVersus));
|
2021-08-02 17:31:56 +08:00
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddUntilStep("room type is team vs", () => multiplayerClient.Room?.Settings.MatchType == MatchType.TeamVersus);
|
2021-11-10 12:44:24 +08:00
|
|
|
|
2021-12-20 17:24:59 +08:00
|
|
|
AddUntilStep("team displays are displaying teams", () => multiplayerComponents.ChildrenOfType<TeamDisplay>().All(d => d.DisplayedTeam != null));
|
2021-08-02 17:31:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void createRoom(Func<Room> room)
|
|
|
|
{
|
2021-12-20 17:24:59 +08:00
|
|
|
AddStep("open room", () => multiplayerComponents.ChildrenOfType<LoungeSubScreen>().Single().Open(room()));
|
2021-08-02 17:31:56 +08:00
|
|
|
|
|
|
|
AddUntilStep("wait for room open", () => this.ChildrenOfType<MultiplayerMatchSubScreen>().FirstOrDefault()?.IsLoaded == true);
|
|
|
|
AddWaitStep("wait for transition", 2);
|
|
|
|
|
2021-12-01 03:56:11 +08:00
|
|
|
AddUntilStep("create room button enabled", () => this.ChildrenOfType<MultiplayerMatchSettingsOverlay.CreateOrUpdateButton>().Single().Enabled.Value);
|
2021-08-02 17:31:56 +08:00
|
|
|
AddStep("create room", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(this.ChildrenOfType<MultiplayerMatchSettingsOverlay.CreateOrUpdateButton>().Single());
|
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
2022-02-16 08:43:28 +08:00
|
|
|
AddUntilStep("wait for join", () => multiplayerClient.RoomJoined);
|
2021-08-02 17:31:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|