2020-01-29 13:23:23 +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.
|
|
|
|
|
2020-01-30 22:45:15 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2020-01-29 13:23:23 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
using osu.Game.Rulesets;
|
2021-02-15 14:02:58 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2020-06-15 19:32:27 +08:00
|
|
|
using osu.Game.Scoring;
|
2020-01-29 13:23:23 +08:00
|
|
|
using osu.Game.Screens;
|
|
|
|
using osu.Game.Screens.Menu;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
using IntroSequence = osu.Game.Configuration.IntroSequence;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Navigation
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A scene which tests full game flow.
|
|
|
|
/// </summary>
|
2020-03-23 09:01:33 +08:00
|
|
|
public abstract class OsuGameTestScene : OsuManualInputManagerTestScene
|
2020-01-29 13:23:23 +08:00
|
|
|
{
|
|
|
|
private GameHost host;
|
|
|
|
|
|
|
|
protected TestOsuGame Game;
|
|
|
|
|
2020-09-15 18:01:32 +08:00
|
|
|
protected override bool UseFreshStoragePerRun => true;
|
|
|
|
|
2021-04-06 14:05:34 +08:00
|
|
|
protected override bool CreateNestedActionContainer => false;
|
|
|
|
|
2020-01-29 13:23:23 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(GameHost host)
|
|
|
|
{
|
|
|
|
this.host = host;
|
|
|
|
|
|
|
|
Child = new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4.Black,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[SetUpSteps]
|
2020-11-11 14:58:43 +08:00
|
|
|
public virtual void SetUpSteps()
|
2020-01-29 13:23:23 +08:00
|
|
|
{
|
|
|
|
AddStep("Create new game instance", () =>
|
|
|
|
{
|
|
|
|
if (Game != null)
|
|
|
|
{
|
|
|
|
Remove(Game);
|
|
|
|
Game.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
RecycleLocalStorage();
|
|
|
|
|
2020-03-05 13:46:07 +08:00
|
|
|
CreateGame();
|
2020-01-29 13:23:23 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("Wait for load", () => Game.IsLoaded);
|
|
|
|
AddUntilStep("Wait for intro", () => Game.ScreenStack.CurrentScreen is IntroScreen);
|
|
|
|
|
|
|
|
ConfirmAtMainMenu();
|
|
|
|
}
|
|
|
|
|
2020-03-05 13:46:07 +08:00
|
|
|
protected void CreateGame()
|
|
|
|
{
|
|
|
|
Game = new TestOsuGame(LocalStorage, API);
|
|
|
|
Game.SetHost(host);
|
|
|
|
|
|
|
|
// todo: this can be removed once we can run audio tracks without a device present
|
|
|
|
// see https://github.com/ppy/osu/issues/1302
|
2021-03-17 15:10:16 +08:00
|
|
|
Game.LocalConfig.SetValue(OsuSetting.IntroSequence, IntroSequence.Circles);
|
2020-03-05 13:46:07 +08:00
|
|
|
|
|
|
|
Add(Game);
|
|
|
|
}
|
|
|
|
|
2020-01-30 22:45:15 +08:00
|
|
|
protected void PushAndConfirm(Func<Screen> newScreen)
|
|
|
|
{
|
|
|
|
Screen screen = null;
|
|
|
|
AddStep("Push new screen", () => Game.ScreenStack.Push(screen = newScreen()));
|
|
|
|
AddUntilStep("Wait for new screen", () => Game.ScreenStack.CurrentScreen == screen && screen.IsLoaded);
|
|
|
|
}
|
|
|
|
|
2020-01-29 13:23:23 +08:00
|
|
|
protected void ConfirmAtMainMenu() => AddUntilStep("Wait for main menu", () => Game.ScreenStack.CurrentScreen is MainMenu menu && menu.IsLoaded);
|
|
|
|
|
|
|
|
public class TestOsuGame : OsuGame
|
|
|
|
{
|
|
|
|
public new ScreenStack ScreenStack => base.ScreenStack;
|
|
|
|
|
|
|
|
public new BackButton BackButton => base.BackButton;
|
|
|
|
|
|
|
|
public new BeatmapManager BeatmapManager => base.BeatmapManager;
|
|
|
|
|
2020-06-15 19:32:27 +08:00
|
|
|
public new ScoreManager ScoreManager => base.ScoreManager;
|
|
|
|
|
2020-01-29 13:23:23 +08:00
|
|
|
public new SettingsPanel Settings => base.Settings;
|
|
|
|
|
2020-03-05 16:12:14 +08:00
|
|
|
public new MusicController MusicController => base.MusicController;
|
|
|
|
|
2020-01-29 13:23:23 +08:00
|
|
|
public new OsuConfigManager LocalConfig => base.LocalConfig;
|
|
|
|
|
|
|
|
public new Bindable<WorkingBeatmap> Beatmap => base.Beatmap;
|
|
|
|
|
|
|
|
public new Bindable<RulesetInfo> Ruleset => base.Ruleset;
|
|
|
|
|
2021-02-15 14:02:58 +08:00
|
|
|
public new Bindable<IReadOnlyList<Mod>> SelectedMods => base.SelectedMods;
|
|
|
|
|
2020-03-05 14:40:48 +08:00
|
|
|
// if we don't do this, when running under nUnit the version that gets populated is that of nUnit.
|
2020-03-05 13:46:07 +08:00
|
|
|
public override string Version => "test game";
|
|
|
|
|
2020-01-29 13:23:23 +08:00
|
|
|
protected override Loader CreateLoader() => new TestLoader();
|
|
|
|
|
2020-01-30 22:45:15 +08:00
|
|
|
public new void PerformFromScreen(Action<IScreen> action, IEnumerable<Type> validScreens = null) => base.PerformFromScreen(action, validScreens);
|
|
|
|
|
2020-01-29 13:23:23 +08:00
|
|
|
public TestOsuGame(Storage storage, IAPIProvider api)
|
|
|
|
{
|
|
|
|
Storage = storage;
|
|
|
|
API = api;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
API.Login("Rhythm Champion", "osu!");
|
2020-02-14 19:12:23 +08:00
|
|
|
|
2021-03-17 15:10:16 +08:00
|
|
|
Dependencies.Get<SessionStatics>().SetValue(Static.MutedAudioNotificationShownOnce, true);
|
2020-01-29 13:23:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class TestLoader : Loader
|
|
|
|
{
|
|
|
|
protected override ShaderPrecompiler CreateShaderPrecompiler() => new TestShaderPrecompiler();
|
|
|
|
|
|
|
|
private class TestShaderPrecompiler : ShaderPrecompiler
|
|
|
|
{
|
|
|
|
protected override bool AllLoaded => true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|