2020-10-15 15:32:20 +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.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using NUnit.Framework;
|
2021-05-07 15:10:57 +08:00
|
|
|
using osu.Framework.Allocation;
|
2020-10-17 21:29:30 +08:00
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2020-10-15 15:32:20 +08:00
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Osu;
|
2021-05-07 15:10:57 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2020-10-15 15:32:20 +08:00
|
|
|
using osu.Game.Screens.Play.HUD;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
|
|
{
|
|
|
|
public class TestSceneSkinnableScoreCounter : SkinnableTestScene
|
|
|
|
{
|
|
|
|
private IEnumerable<SkinnableScoreCounter> scoreCounters => CreatedDrawables.OfType<SkinnableScoreCounter>();
|
|
|
|
|
|
|
|
protected override Ruleset CreateRulesetForSkinProvider() => new OsuRuleset();
|
|
|
|
|
2021-05-07 15:10:57 +08:00
|
|
|
[Cached]
|
|
|
|
private ScoreProcessor scoreProcessor = new ScoreProcessor();
|
|
|
|
|
2020-10-15 15:32:20 +08:00
|
|
|
[SetUpSteps]
|
|
|
|
public void SetUpSteps()
|
|
|
|
{
|
2021-05-07 15:10:57 +08:00
|
|
|
AddStep("Create score counters", () => SetContents(() => new SkinnableScoreCounter()));
|
2020-10-15 15:32:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestScoreCounterIncrementing()
|
|
|
|
{
|
2021-05-07 15:10:57 +08:00
|
|
|
AddStep(@"Reset all", () => scoreProcessor.TotalScore.Value = 0);
|
|
|
|
|
|
|
|
AddStep(@"Hit! :D", () => scoreProcessor.TotalScore.Value += 300);
|
2020-10-15 15:32:20 +08:00
|
|
|
}
|
2020-10-17 21:29:30 +08:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestVeryLargeScore()
|
|
|
|
{
|
2021-05-07 15:10:57 +08:00
|
|
|
AddStep("set large score", () => scoreCounters.ForEach(counter => scoreProcessor.TotalScore.Value = 1_000_000_000));
|
2020-10-17 21:29:30 +08:00
|
|
|
}
|
2020-10-15 15:32:20 +08:00
|
|
|
}
|
|
|
|
}
|