2021-06-01 06:57:43 +00: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 NUnit.Framework;
|
|
|
|
|
using osu.Framework.Allocation;
|
2021-06-01 07:16:01 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2022-03-14 06:51:10 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu;
|
2021-06-01 06:57:43 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2021-06-01 07:16:01 +00:00
|
|
|
|
using osu.Game.Screens.Play.HUD;
|
2021-06-01 06:57:43 +00:00
|
|
|
|
using osu.Game.Skinning;
|
2023-05-25 07:38:22 +00:00
|
|
|
|
using osu.Game.Tests.Gameplay;
|
2021-06-01 06:57:43 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
|
|
|
{
|
2021-06-01 07:16:01 +00:00
|
|
|
|
public partial class TestSceneSkinnableScoreCounter : SkinnableHUDComponentTestScene
|
2021-06-01 06:57:43 +00:00
|
|
|
|
{
|
2023-05-25 07:38:22 +00:00
|
|
|
|
[Cached(typeof(ScoreProcessor))]
|
|
|
|
|
private ScoreProcessor scoreProcessor = TestGameplayState.Create(new OsuRuleset()).ScoreProcessor;
|
2021-06-01 06:57:43 +00:00
|
|
|
|
|
2023-10-22 22:58:41 +00:00
|
|
|
|
protected override Drawable CreateArgonImplementation() => new ArgonScoreCounter();
|
2021-06-01 07:16:01 +00:00
|
|
|
|
protected override Drawable CreateDefaultImplementation() => new DefaultScoreCounter();
|
|
|
|
|
protected override Drawable CreateLegacyImplementation() => new LegacyScoreCounter();
|
2021-06-01 06:57:43 +00:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestScoreCounterIncrementing()
|
|
|
|
|
{
|
|
|
|
|
AddStep(@"Reset all", () => scoreProcessor.TotalScore.Value = 0);
|
|
|
|
|
|
|
|
|
|
AddStep(@"Hit! :D", () => scoreProcessor.TotalScore.Value += 300);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestVeryLargeScore()
|
|
|
|
|
{
|
|
|
|
|
AddStep("set large score", () => scoreProcessor.TotalScore.Value = 1_000_000_000);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|