1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game.Tests/Visual/Gameplay/TestSceneBarHitErrorMeter.cs

120 lines
3.9 KiB
C#
Raw Normal View History

2019-08-20 02:10:12 +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 NUnit.Framework;
using osu.Game.Rulesets.Objects;
using System;
using System.Collections.Generic;
using osu.Game.Rulesets.Judgements;
using osu.Framework.MathUtils;
2019-08-20 02:25:14 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-11-25 10:30:55 +08:00
using osu.Game.Graphics.Sprites;
2019-09-06 14:24:00 +08:00
using osu.Game.Rulesets.Catch.Scoring;
using osu.Game.Rulesets.Mania.Scoring;
using osu.Game.Rulesets.Osu.Scoring;
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.Taiko.Scoring;
2019-08-30 17:46:42 +08:00
using osu.Game.Screens.Play.HUD.HitErrorMeters;
2019-08-20 02:10:12 +08:00
namespace osu.Game.Tests.Visual.Gameplay
{
2019-08-30 14:32:47 +08:00
public class TestSceneBarHitErrorMeter : OsuTestScene
2019-08-20 02:10:12 +08:00
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
2019-08-30 14:32:47 +08:00
typeof(HitErrorMeter),
2019-08-20 02:10:12 +08:00
};
2019-08-30 14:32:47 +08:00
private HitErrorMeter meter;
private HitErrorMeter meter2;
2019-08-30 18:47:13 +08:00
private HitWindows hitWindows;
2019-08-20 02:10:12 +08:00
2019-08-30 14:32:47 +08:00
public TestSceneBarHitErrorMeter()
2019-08-20 02:10:12 +08:00
{
2019-08-30 18:47:13 +08:00
recreateDisplay(new OsuHitWindows(), 5);
2019-08-30 15:40:24 +08:00
AddRepeatStep("New random judgement", () => newJudgement(), 40);
2019-09-06 14:24:00 +08:00
AddRepeatStep("New max negative", () => newJudgement(-hitWindows.WindowFor(HitResult.Meh)), 20);
AddRepeatStep("New max positive", () => newJudgement(hitWindows.WindowFor(HitResult.Meh)), 20);
2019-08-20 02:10:12 +08:00
AddStep("New fixed judgement (50ms)", () => newJudgement(50));
}
[Test]
public void TestOsu()
{
AddStep("OD 1", () => recreateDisplay(new OsuHitWindows(), 1));
AddStep("OD 10", () => recreateDisplay(new OsuHitWindows(), 10));
}
[Test]
public void TestTaiko()
{
AddStep("OD 1", () => recreateDisplay(new TaikoHitWindows(), 1));
AddStep("OD 10", () => recreateDisplay(new TaikoHitWindows(), 10));
}
[Test]
public void TestMania()
{
AddStep("OD 1", () => recreateDisplay(new ManiaHitWindows(), 1));
AddStep("OD 10", () => recreateDisplay(new ManiaHitWindows(), 10));
}
[Test]
public void TestCatch()
{
AddStep("OD 1", () => recreateDisplay(new CatchHitWindows(), 1));
AddStep("OD 10", () => recreateDisplay(new CatchHitWindows(), 10));
}
private void recreateDisplay(HitWindows hitWindows, float overallDifficulty)
{
2019-08-30 18:47:13 +08:00
this.hitWindows = hitWindows;
hitWindows?.SetDifficulty(overallDifficulty);
2019-08-20 02:10:12 +08:00
Clear();
Add(new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Direction = FillDirection.Vertical,
AutoSizeAxes = Axes.Both,
Children = new[]
{
2019-11-25 10:30:55 +08:00
new OsuSpriteText { Text = $@"Great: {hitWindows?.WindowFor(HitResult.Great)}" },
new OsuSpriteText { Text = $@"Good: {hitWindows?.WindowFor(HitResult.Good)}" },
new OsuSpriteText { Text = $@"Meh: {hitWindows?.WindowFor(HitResult.Meh)}" },
}
});
Add(meter = new BarHitErrorMeter(hitWindows, true)
2019-08-20 02:25:14 +08:00
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
});
Add(meter2 = new BarHitErrorMeter(hitWindows, false)
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
2019-08-20 02:25:14 +08:00
});
2019-08-20 02:10:12 +08:00
}
2019-08-30 15:40:24 +08:00
private void newJudgement(double offset = 0)
2019-08-20 02:10:12 +08:00
{
var judgement = new JudgementResult(new HitObject(), new Judgement())
2019-08-20 02:10:12 +08:00
{
2019-08-30 15:40:24 +08:00
TimeOffset = offset == 0 ? RNG.Next(-150, 150) : offset,
2019-08-20 02:10:12 +08:00
Type = HitResult.Perfect,
};
meter.OnNewJudgement(judgement);
meter2.OnNewJudgement(judgement);
2019-08-20 02:10:12 +08:00
}
}
}