1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 07:20:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Multiplayer/TestSceneMultiplayerPlayer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
3.5 KiB
C#
Raw Normal View History

2021-08-17 13:39:08 +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
2024-01-28 04:22:29 +08:00
using System;
using System.Collections.Generic;
2021-08-17 13:39:08 +08:00
using System.Linq;
using NUnit.Framework;
2021-11-13 00:53:19 +08:00
using osu.Framework.Screens;
2021-08-17 13:39:08 +08:00
using osu.Framework.Testing;
2021-11-13 00:53:19 +08:00
using osu.Game.Online.Multiplayer;
using osu.Game.Online.Rooms;
2024-01-28 04:22:29 +08:00
using osu.Game.Rulesets.Mods;
2021-08-17 13:39:08 +08:00
using osu.Game.Rulesets.Osu;
2024-01-28 04:22:29 +08:00
using osu.Game.Rulesets.Osu.Mods;
using osu.Game.Rulesets.Scoring;
2021-08-17 13:39:08 +08:00
using osu.Game.Screens.OnlinePlay.Multiplayer;
using osu.Game.Screens.Play;
2021-08-17 13:39:08 +08:00
namespace osu.Game.Tests.Visual.Multiplayer
{
public partial class TestSceneMultiplayerPlayer : MultiplayerTestScene
{
private MultiplayerPlayer player;
2024-01-28 04:22:29 +08:00
[Test]
public void TestGameplay()
{
setup();
AddUntilStep("wait for gameplay start", () => player.LocalUserPlaying.Value);
}
[Test]
public void TestFail()
2021-08-17 13:39:08 +08:00
{
2024-01-28 04:22:29 +08:00
setup(() => new[] { new OsuModAutopilot() });
AddUntilStep("wait for gameplay start", () => player.LocalUserPlaying.Value);
AddStep("set health zero", () => player.ChildrenOfType<HealthProcessor>().Single().Health.Value = 0);
AddUntilStep("wait for fail", () => player.ChildrenOfType<HealthProcessor>().Single().HasFailed);
AddAssert("fail animation not shown", () => !player.GameplayState.HasFailed);
2021-08-17 13:39:08 +08:00
2024-01-28 04:22:29 +08:00
// ensure that even after reaching a failed state, score processor keeps accounting for new hit results.
// the testing method used here (autopilot + hold key) is sort-of dodgy, but works enough.
AddAssert("score is zero", () => player.GameplayState.ScoreProcessor.TotalScore.Value == 0);
AddStep("hold key", () => player.ChildrenOfType<OsuInputManager.RulesetKeyBindingContainer>().First().TriggerPressed(OsuAction.LeftButton));
AddUntilStep("score changed", () => player.GameplayState.ScoreProcessor.TotalScore.Value > 0);
}
private void setup(Func<IReadOnlyList<Mod>> mods = null)
{
2021-08-17 13:39:08 +08:00
AddStep("set beatmap", () =>
{
Beatmap.Value = CreateWorkingBeatmap(new OsuRuleset().RulesetInfo);
2024-01-28 04:22:29 +08:00
SelectedMods.Value = mods?.Invoke() ?? Array.Empty<Mod>();
2021-08-17 13:39:08 +08:00
});
AddStep("Start track playing", () =>
{
Beatmap.Value.Track.Start();
});
2021-08-17 13:39:08 +08:00
AddStep("initialise gameplay", () =>
{
Stack.Push(player = new MultiplayerPlayer(MultiplayerClient.ServerAPIRoom, new PlaylistItem(Beatmap.Value.BeatmapInfo)
{
RulesetID = Beatmap.Value.BeatmapInfo.Ruleset.OnlineID,
}, MultiplayerClient.ServerRoom?.Users.ToArray()));
2021-08-17 13:39:08 +08:00
});
2021-11-13 00:53:19 +08:00
AddUntilStep("wait for player to be current", () => player.IsCurrentScreen() && player.IsLoaded);
AddAssert("gameplay clock is paused", () => player.ChildrenOfType<GameplayClockContainer>().Single().IsPaused.Value);
AddAssert("gameplay clock is not running", () => !player.ChildrenOfType<GameplayClockContainer>().Single().IsRunning);
AddStep("start gameplay", () => ((IMultiplayerClient)MultiplayerClient).GameplayStarted());
AddUntilStep("gameplay clock is not paused", () => !player.ChildrenOfType<GameplayClockContainer>().Single().IsPaused.Value);
AddAssert("gameplay clock is running", () => player.ChildrenOfType<GameplayClockContainer>().Single().IsRunning);
2021-08-17 13:39:08 +08:00
}
}
}