2019-12-12 16:09:42 +09: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;
|
2022-11-30 17:35:50 +09:00
|
|
|
using System.Diagnostics;
|
2020-02-03 23:43:04 +03:00
|
|
|
using System.Linq;
|
2019-12-12 16:09:42 +09:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2023-09-22 14:40:10 +09:00
|
|
|
using osu.Framework.Audio.Track;
|
2022-10-30 21:24:58 +09:00
|
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
2019-12-12 16:09:42 +09:00
|
|
|
using osu.Framework.Graphics;
|
2020-02-03 23:43:04 +03:00
|
|
|
using osu.Framework.Testing;
|
2019-12-12 16:09:42 +09:00
|
|
|
using osu.Game.Configuration;
|
2022-10-30 21:38:31 +09:00
|
|
|
using osu.Game.Graphics.Containers;
|
2019-12-12 16:09:42 +09:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2022-03-14 15:51:10 +09:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2021-05-03 16:47:47 +09:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2019-12-12 16:09:42 +09:00
|
|
|
using osu.Game.Screens.Play;
|
2022-10-10 16:05:38 +09:00
|
|
|
using osu.Game.Screens.Play.HUD;
|
2022-06-14 18:35:33 +09:00
|
|
|
using osu.Game.Screens.Play.HUD.HitErrorMeters;
|
2021-08-16 06:56:59 +03:00
|
|
|
using osu.Game.Skinning;
|
2022-05-28 14:55:57 +02:00
|
|
|
using osu.Game.Tests.Gameplay;
|
2020-02-02 14:50:05 +03:00
|
|
|
using osuTK.Input;
|
2019-12-12 16:09:42 +09:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
|
|
{
|
2020-10-30 14:20:00 +09:00
|
|
|
public partial class TestSceneHUDOverlay : OsuManualInputManagerTestScene
|
2019-12-12 16:09:42 +09:00
|
|
|
{
|
2022-10-30 21:24:58 +09:00
|
|
|
private OsuConfigManager localConfig = null!;
|
2021-08-18 04:59:08 +03:00
|
|
|
|
2022-10-30 21:24:58 +09:00
|
|
|
private HUDOverlay hudOverlay = null!;
|
2019-12-12 16:09:42 +09:00
|
|
|
|
2023-05-25 16:38:22 +09:00
|
|
|
[Cached(typeof(ScoreProcessor))]
|
2023-07-20 22:30:48 +09:00
|
|
|
private ScoreProcessor scoreProcessor { get; set; }
|
2021-05-03 16:47:47 +09:00
|
|
|
|
2021-05-07 17:31:29 +09:00
|
|
|
[Cached(typeof(HealthProcessor))]
|
2021-05-07 17:47:33 +09:00
|
|
|
private HealthProcessor healthProcessor = new DrainingHealthProcessor(0);
|
2021-05-07 16:56:24 +09:00
|
|
|
|
2022-03-15 22:55:47 +09:00
|
|
|
[Cached]
|
2022-05-28 14:55:57 +02:00
|
|
|
private GameplayState gameplayState = TestGameplayState.Create(new OsuRuleset());
|
2022-03-15 22:55:47 +09:00
|
|
|
|
2022-08-15 17:36:18 +09:00
|
|
|
[Cached(typeof(IGameplayClock))]
|
2023-09-22 14:40:10 +09:00
|
|
|
private readonly IGameplayClock gameplayClock = new GameplayClockContainer(new TrackVirtual(60000), false, false);
|
2022-03-17 21:22:07 +01:00
|
|
|
|
2020-02-03 23:17:10 +03:00
|
|
|
// best way to check without exposing.
|
2023-06-16 17:24:40 +02:00
|
|
|
private Drawable hideTarget => hudOverlay.ChildrenOfType<SkinComponentsContainer>().First();
|
2024-08-06 15:52:03 +09:00
|
|
|
private Drawable keyCounterContent => hudOverlay.ChildrenOfType<KeyCounterDisplay>().First().ChildrenOfType<Drawable>().Skip(1).First();
|
2019-12-12 16:09:42 +09:00
|
|
|
|
2023-07-20 22:30:48 +09:00
|
|
|
public TestSceneHUDOverlay()
|
|
|
|
{
|
|
|
|
scoreProcessor = gameplayState.ScoreProcessor;
|
|
|
|
}
|
|
|
|
|
2021-08-18 04:59:08 +03:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
Dependencies.Cache(localConfig = new OsuConfigManager(LocalStorage));
|
|
|
|
}
|
|
|
|
|
2021-08-18 06:50:01 +03:00
|
|
|
[SetUp]
|
2021-08-18 04:59:08 +03:00
|
|
|
public void SetUp() => Schedule(() => localConfig.SetValue(OsuSetting.HUDVisibilityMode, HUDVisibilityMode.Always));
|
2019-12-12 16:09:42 +09:00
|
|
|
|
2020-10-14 17:20:44 +09:00
|
|
|
[Test]
|
|
|
|
public void TestComboCounterIncrementing()
|
|
|
|
{
|
|
|
|
createNew();
|
|
|
|
|
2021-05-03 16:47:47 +09:00
|
|
|
AddRepeatStep("increase combo", () => { scoreProcessor.Combo.Value++; }, 10);
|
2020-10-14 17:20:44 +09:00
|
|
|
|
2021-05-03 16:47:47 +09:00
|
|
|
AddStep("reset combo", () => { scoreProcessor.Combo.Value = 0; });
|
2020-10-14 17:20:44 +09:00
|
|
|
}
|
|
|
|
|
2019-12-12 16:09:42 +09:00
|
|
|
[Test]
|
|
|
|
public void TestShownByDefault()
|
|
|
|
{
|
|
|
|
createNew();
|
|
|
|
|
|
|
|
AddAssert("showhud is set", () => hudOverlay.ShowHud.Value);
|
|
|
|
|
2023-06-16 17:24:40 +02:00
|
|
|
AddAssert("hidetarget is visible", () => hideTarget.Alpha, () => Is.GreaterThan(0));
|
2024-08-06 15:52:03 +09:00
|
|
|
AddAssert("key counter flow is visible", () => keyCounterContent.IsPresent);
|
2019-12-12 16:09:42 +09:00
|
|
|
AddAssert("pause button is visible", () => hudOverlay.HoldToQuit.IsPresent);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestFadesInOnLoadComplete()
|
|
|
|
{
|
|
|
|
float? initialAlpha = null;
|
|
|
|
|
|
|
|
createNew(h => h.OnLoadComplete += _ => initialAlpha = hideTarget.Alpha);
|
|
|
|
AddUntilStep("wait for load", () => hudOverlay.IsAlive);
|
2020-10-16 12:49:39 +09:00
|
|
|
AddAssert("initial alpha was less than 1", () => initialAlpha < 1);
|
2019-12-12 16:09:42 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
2020-02-03 19:59:58 +03:00
|
|
|
public void TestHideExternally()
|
2019-12-12 16:09:42 +09:00
|
|
|
{
|
|
|
|
createNew();
|
|
|
|
|
2020-10-30 14:20:00 +09:00
|
|
|
AddStep("set showhud false", () => hudOverlay.ShowHud.Value = false);
|
2020-02-03 19:59:58 +03:00
|
|
|
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("hidetarget is hidden", () => hideTarget.Alpha, () => Is.LessThanOrEqualTo(0));
|
2019-12-12 16:09:42 +09:00
|
|
|
AddAssert("pause button is still visible", () => hudOverlay.HoldToQuit.IsPresent);
|
2020-02-02 14:50:05 +03:00
|
|
|
|
2020-02-03 19:59:58 +03:00
|
|
|
// Key counter flow container should not be affected by this, only the key counter display will be hidden as checked above.
|
2024-08-06 15:52:03 +09:00
|
|
|
AddAssert("key counter flow not affected", () => keyCounterContent.IsPresent);
|
2019-12-12 16:09:42 +09:00
|
|
|
}
|
|
|
|
|
2020-10-30 14:20:00 +09:00
|
|
|
[Test]
|
|
|
|
public void TestMomentaryShowHUD()
|
|
|
|
{
|
|
|
|
createNew();
|
|
|
|
|
2021-08-18 04:59:08 +03:00
|
|
|
AddStep("set hud to never show", () => localConfig.SetValue(OsuSetting.HUDVisibilityMode, HUDVisibilityMode.Never));
|
2020-10-30 14:20:00 +09:00
|
|
|
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("wait for fade", () => hideTarget.Alpha, () => Is.LessThanOrEqualTo(0));
|
2020-10-30 14:20:00 +09:00
|
|
|
|
|
|
|
AddStep("trigger momentary show", () => InputManager.PressKey(Key.ControlLeft));
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("wait for visible", () => hideTarget.Alpha, () => Is.GreaterThan(0));
|
2020-10-30 14:20:00 +09:00
|
|
|
|
|
|
|
AddStep("stop trigering", () => InputManager.ReleaseKey(Key.ControlLeft));
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("wait for fade", () => hideTarget.Alpha, () => Is.LessThanOrEqualTo(0));
|
2020-10-30 14:20:00 +09:00
|
|
|
}
|
|
|
|
|
2019-12-12 16:09:42 +09:00
|
|
|
[Test]
|
|
|
|
public void TestExternalHideDoesntAffectConfig()
|
|
|
|
{
|
|
|
|
createNew();
|
|
|
|
|
|
|
|
AddStep("set showhud false", () => hudOverlay.ShowHud.Value = false);
|
2021-08-18 04:59:08 +03:00
|
|
|
AddAssert("config unchanged", () => localConfig.GetBindable<HUDVisibilityMode>(OsuSetting.HUDVisibilityMode).IsDefault);
|
2019-12-12 16:09:42 +09:00
|
|
|
|
|
|
|
AddStep("set showhud true", () => hudOverlay.ShowHud.Value = true);
|
2021-08-18 04:59:08 +03:00
|
|
|
AddAssert("config unchanged", () => localConfig.GetBindable<HUDVisibilityMode>(OsuSetting.HUDVisibilityMode).IsDefault);
|
2019-12-12 16:09:42 +09:00
|
|
|
}
|
|
|
|
|
2020-02-02 14:50:05 +03:00
|
|
|
[Test]
|
|
|
|
public void TestChangeHUDVisibilityOnHiddenKeyCounter()
|
|
|
|
{
|
|
|
|
createNew();
|
|
|
|
|
2021-08-18 04:59:08 +03:00
|
|
|
AddStep("hide key overlay", () =>
|
2020-02-03 19:59:58 +03:00
|
|
|
{
|
2021-08-18 04:59:08 +03:00
|
|
|
localConfig.SetValue(OsuSetting.KeyOverlay, false);
|
2023-06-14 13:25:24 +02:00
|
|
|
var kcd = hudOverlay.ChildrenOfType<KeyCounterDisplay>().FirstOrDefault();
|
|
|
|
if (kcd != null)
|
|
|
|
kcd.AlwaysVisible.Value = false;
|
2020-02-03 19:59:58 +03:00
|
|
|
});
|
2020-02-02 14:50:05 +03:00
|
|
|
|
2020-10-30 14:20:00 +09:00
|
|
|
AddStep("set showhud false", () => hudOverlay.ShowHud.Value = false);
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("hidetarget is hidden", () => hideTarget.Alpha, () => Is.LessThanOrEqualTo(0));
|
2024-08-06 15:52:03 +09:00
|
|
|
AddUntilStep("key counters hidden", () => !keyCounterContent.IsPresent);
|
2020-02-02 14:50:05 +03:00
|
|
|
|
2020-10-30 14:20:00 +09:00
|
|
|
AddStep("set showhud true", () => hudOverlay.ShowHud.Value = true);
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("hidetarget is visible", () => hideTarget.Alpha, () => Is.GreaterThan(0));
|
2024-08-06 15:52:03 +09:00
|
|
|
AddUntilStep("key counters still hidden", () => !keyCounterContent.IsPresent);
|
2020-02-02 14:50:05 +03:00
|
|
|
}
|
|
|
|
|
2022-10-30 21:38:31 +09:00
|
|
|
[Test]
|
|
|
|
public void TestHoldForMenuDoesWorkWhenHidden()
|
|
|
|
{
|
|
|
|
bool activated = false;
|
|
|
|
|
|
|
|
HoldForMenuButton getHoldForMenu() => hudOverlay.ChildrenOfType<HoldForMenuButton>().Single();
|
|
|
|
|
|
|
|
createNew();
|
|
|
|
|
|
|
|
AddStep("bind action", () =>
|
|
|
|
{
|
|
|
|
activated = false;
|
|
|
|
|
|
|
|
var holdForMenu = getHoldForMenu();
|
|
|
|
|
|
|
|
holdForMenu.Action += () => activated = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("set showhud false", () => hudOverlay.ShowHud.Value = false);
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("hidetarget is hidden", () => hideTarget.Alpha, () => Is.LessThanOrEqualTo(0));
|
2022-10-30 21:38:31 +09:00
|
|
|
|
|
|
|
AddStep("attempt activate", () =>
|
|
|
|
{
|
|
|
|
InputManager.MoveMouseTo(getHoldForMenu().OfType<HoldToConfirmContainer>().Single());
|
|
|
|
InputManager.PressButton(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("activated", () => activated);
|
|
|
|
|
|
|
|
AddStep("release mouse button", () =>
|
|
|
|
{
|
|
|
|
InputManager.ReleaseButton(MouseButton.Left);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-10-10 16:05:38 +09:00
|
|
|
[Test]
|
|
|
|
public void TestInputDoesntWorkWhenHUDHidden()
|
|
|
|
{
|
2023-01-18 15:10:01 +09:00
|
|
|
ArgonSongProgress? getSongProgress() => hudOverlay.ChildrenOfType<ArgonSongProgress>().SingleOrDefault();
|
2022-10-10 16:05:38 +09:00
|
|
|
|
|
|
|
bool seeked = false;
|
|
|
|
|
|
|
|
createNew();
|
|
|
|
|
2022-11-30 17:35:50 +09:00
|
|
|
AddUntilStep("wait for song progress", () => getSongProgress() != null);
|
|
|
|
|
2022-10-10 16:05:38 +09:00
|
|
|
AddStep("bind seek", () =>
|
|
|
|
{
|
|
|
|
seeked = false;
|
|
|
|
|
|
|
|
var progress = getSongProgress();
|
|
|
|
|
2022-11-30 17:35:50 +09:00
|
|
|
Debug.Assert(progress != null);
|
|
|
|
|
2023-01-18 15:10:01 +09:00
|
|
|
progress.Interactive.Value = true;
|
|
|
|
progress.ChildrenOfType<ArgonSongProgressBar>().Single().OnSeek += _ => seeked = true;
|
2022-10-10 16:05:38 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("set showhud false", () => hudOverlay.ShowHud.Value = false);
|
2023-06-16 17:24:40 +02:00
|
|
|
AddUntilStep("hidetarget is hidden", () => hideTarget.Alpha, () => Is.LessThanOrEqualTo(0));
|
2022-10-10 16:05:38 +09:00
|
|
|
|
|
|
|
AddStep("attempt seek", () =>
|
|
|
|
{
|
2023-06-22 15:58:05 +09:00
|
|
|
InputManager.MoveMouseTo(getSongProgress().AsNonNull());
|
2022-10-10 16:05:38 +09:00
|
|
|
InputManager.Click(MouseButton.Left);
|
|
|
|
});
|
|
|
|
|
|
|
|
AddAssert("seek not performed", () => !seeked);
|
|
|
|
|
|
|
|
AddStep("set showhud true", () => hudOverlay.ShowHud.Value = true);
|
|
|
|
|
|
|
|
AddStep("attempt seek", () => InputManager.Click(MouseButton.Left));
|
|
|
|
AddAssert("seek performed", () => seeked);
|
|
|
|
}
|
|
|
|
|
2022-06-14 18:35:33 +09:00
|
|
|
[Test]
|
|
|
|
public void TestHiddenHUDDoesntBlockComponentUpdates()
|
|
|
|
{
|
|
|
|
int updateCount = 0;
|
|
|
|
|
|
|
|
AddStep("set hud to never show", () => localConfig.SetValue(OsuSetting.HUDVisibilityMode, HUDVisibilityMode.Never));
|
|
|
|
|
|
|
|
createNew();
|
|
|
|
|
2023-02-15 18:31:55 +09:00
|
|
|
AddUntilStep("wait for components to be hidden", () => hudOverlay.ChildrenOfType<SkinComponentsContainer>().Single().Alpha == 0);
|
|
|
|
AddUntilStep("wait for hud load", () => hudOverlay.ChildrenOfType<SkinComponentsContainer>().All(c => c.ComponentsLoaded));
|
2022-06-14 18:35:33 +09:00
|
|
|
|
|
|
|
AddStep("bind on update", () =>
|
|
|
|
{
|
|
|
|
hudOverlay.ChildrenOfType<BarHitErrorMeter>().First().OnUpdate += _ => updateCount++;
|
|
|
|
});
|
|
|
|
|
|
|
|
AddUntilStep("wait for updates", () => updateCount > 0);
|
|
|
|
}
|
|
|
|
|
2021-08-16 06:56:59 +03:00
|
|
|
[Test]
|
|
|
|
public void TestHiddenHUDDoesntBlockSkinnableComponentsLoad()
|
|
|
|
{
|
2021-08-18 04:59:08 +03:00
|
|
|
AddStep("set hud to never show", () => localConfig.SetValue(OsuSetting.HUDVisibilityMode, HUDVisibilityMode.Never));
|
2021-08-16 06:56:59 +03:00
|
|
|
|
|
|
|
createNew();
|
2021-08-24 15:18:05 +09:00
|
|
|
|
2023-02-15 18:31:55 +09:00
|
|
|
AddUntilStep("wait for components to be hidden", () => hudOverlay.ChildrenOfType<SkinComponentsContainer>().Single().Alpha == 0);
|
2021-08-24 15:18:05 +09:00
|
|
|
|
2023-02-15 18:31:55 +09:00
|
|
|
AddStep("reload components", () => hudOverlay.ChildrenOfType<SkinComponentsContainer>().Single().Reload());
|
|
|
|
AddUntilStep("skinnable components loaded", () => hudOverlay.ChildrenOfType<SkinComponentsContainer>().Single().ComponentsLoaded);
|
2021-08-16 06:56:59 +03:00
|
|
|
}
|
|
|
|
|
2022-10-30 21:24:58 +09:00
|
|
|
private void createNew(Action<HUDOverlay>? action = null)
|
2019-12-12 16:09:42 +09:00
|
|
|
{
|
|
|
|
AddStep("create overlay", () =>
|
|
|
|
{
|
2021-05-07 17:27:34 +09:00
|
|
|
hudOverlay = new HUDOverlay(null, Array.Empty<Mod>());
|
2019-12-12 16:09:42 +09:00
|
|
|
|
2020-10-30 14:20:00 +09:00
|
|
|
// Add any key just to display the key counter visually.
|
2023-06-26 19:27:42 +02:00
|
|
|
hudOverlay.InputCountController.Add(new KeyCounterKeyboardTrigger(Key.Space));
|
2019-12-12 16:09:42 +09:00
|
|
|
|
2021-05-03 16:47:47 +09:00
|
|
|
scoreProcessor.Combo.Value = 1;
|
2020-02-02 14:50:05 +03:00
|
|
|
|
2020-10-30 14:20:00 +09:00
|
|
|
action?.Invoke(hudOverlay);
|
2020-10-14 16:45:48 +09:00
|
|
|
|
2020-10-30 14:20:00 +09:00
|
|
|
Child = hudOverlay;
|
2020-02-03 23:17:10 +03:00
|
|
|
});
|
2023-06-27 16:04:34 +09:00
|
|
|
|
|
|
|
AddUntilStep("wait for hud load", () => hudOverlay.IsLoaded);
|
|
|
|
AddUntilStep("wait for components present", () => hudOverlay.ChildrenOfType<KeyCounterDisplay>().FirstOrDefault() != null);
|
2020-02-02 14:50:05 +03:00
|
|
|
}
|
2021-08-18 04:59:08 +03:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
2022-10-30 21:24:58 +09:00
|
|
|
if (localConfig.IsNotNull())
|
|
|
|
localConfig.Dispose();
|
|
|
|
|
2021-08-18 04:59:08 +03:00
|
|
|
base.Dispose(isDisposing);
|
|
|
|
}
|
2019-12-12 16:09:42 +09:00
|
|
|
}
|
|
|
|
}
|