1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneHitCircle.cs

121 lines
4.3 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System.Linq;
using NUnit.Framework;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Mods;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Rulesets.Osu.UI;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Scoring;
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
public class TestSceneHitCircle : OsuSkinnableTestScene
2018-04-13 17:19:50 +08:00
{
private int depthIndex;
[Test]
public void TestVariousHitCircles()
2018-04-13 17:19:50 +08:00
{
AddStep("Miss Big Single", () => SetContents(_ => testSingle(2)));
AddStep("Miss Medium Single", () => SetContents(_ => testSingle(5)));
AddStep("Miss Small Single", () => SetContents(_ => testSingle(7)));
AddStep("Hit Big Single", () => SetContents(_ => testSingle(2, true)));
AddStep("Hit Medium Single", () => SetContents(_ => testSingle(5, true)));
AddStep("Hit Small Single", () => SetContents(_ => testSingle(7, true)));
AddStep("Miss Big Stream", () => SetContents(_ => testStream(2)));
AddStep("Miss Medium Stream", () => SetContents(_ => testStream(5)));
AddStep("Miss Small Stream", () => SetContents(_ => testStream(7)));
AddStep("Hit Big Stream", () => SetContents(_ => testStream(2, true)));
AddStep("Hit Medium Stream", () => SetContents(_ => testStream(5, true)));
AddStep("Hit Small Stream", () => SetContents(_ => testStream(7, true)));
2018-04-13 17:19:50 +08:00
}
2019-07-26 18:29:06 +08:00
private Drawable testSingle(float circleSize, bool auto = false, double timeOffset = 0, Vector2? positionOffset = null)
{
var drawable = createSingle(circleSize, auto, timeOffset, positionOffset);
var playfield = new TestOsuPlayfield();
playfield.Add(drawable);
return playfield;
}
private Drawable testStream(float circleSize, bool auto = false)
{
var playfield = new TestOsuPlayfield();
Vector2 pos = new Vector2(-250, 0);
for (int i = 0; i <= 1000; i += 100)
{
playfield.Add(createSingle(circleSize, auto, i, pos));
pos.X += 50;
}
return playfield;
}
private TestDrawableHitCircle createSingle(float circleSize, bool auto, double timeOffset, Vector2? positionOffset)
2018-04-13 17:19:50 +08:00
{
2019-11-12 18:35:08 +08:00
positionOffset ??= Vector2.Zero;
2018-04-13 17:19:50 +08:00
var circle = new HitCircle
{
StartTime = Time.Current + 1000 + timeOffset,
Position = OsuPlayfield.BASE_SIZE / 4 + positionOffset.Value,
2018-04-13 17:19:50 +08:00
};
circle.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = circleSize });
2019-07-29 16:05:13 +08:00
var drawable = CreateDrawableHitCircle(circle, auto);
2018-04-13 17:19:50 +08:00
2019-12-13 20:45:38 +08:00
foreach (var mod in SelectedMods.Value.OfType<IApplicableToDrawableHitObjects>())
2018-04-13 17:19:50 +08:00
mod.ApplyToDrawableHitObjects(new[] { drawable });
2019-07-26 18:29:06 +08:00
return drawable;
2018-04-13 17:19:50 +08:00
}
2019-07-29 16:05:13 +08:00
protected virtual TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto) => new TestDrawableHitCircle(circle, auto)
{
Depth = depthIndex++
};
2018-07-06 16:38:58 +08:00
protected class TestDrawableHitCircle : DrawableHitCircle
2018-04-13 17:19:50 +08:00
{
private readonly bool auto;
2019-02-28 12:31:40 +08:00
public TestDrawableHitCircle(HitCircle h, bool auto)
: base(h)
2018-04-13 17:19:50 +08:00
{
this.auto = auto;
}
public void TriggerJudgement() => UpdateResult(true);
2018-07-06 16:38:58 +08:00
protected override void CheckForResult(bool userTriggered, double timeOffset)
2018-04-13 17:19:50 +08:00
{
if (auto && !userTriggered && timeOffset > 0)
{
// force success
ApplyResult(r => r.Type = HitResult.Great);
2018-04-13 17:19:50 +08:00
}
else
base.CheckForResult(userTriggered, timeOffset);
2018-04-13 17:19:50 +08:00
}
}
protected class TestOsuPlayfield : OsuPlayfield
{
public TestOsuPlayfield()
{
RelativeSizeAxes = Axes.Both;
}
}
2018-04-13 17:19:50 +08:00
}
}