mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 07:33:20 +08:00
Add early/late tests for hit circles
This commit is contained in:
parent
044ff9d1d2
commit
249ae3141e
@ -37,6 +37,18 @@ namespace osu.Game.Rulesets.Osu.Tests
|
|||||||
AddStep("Hit Small Stream", () => SetContents(_ => testStream(7, true)));
|
AddStep("Hit Small Stream", () => SetContents(_ => testStream(7, true)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestHittingEarly()
|
||||||
|
{
|
||||||
|
AddStep("Hit stream early", () => SetContents(_ => testStream(5, true, -150)));
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestHittingLate()
|
||||||
|
{
|
||||||
|
AddStep("Hit stream late", () => SetContents(_ => testStream(5, true, 150)));
|
||||||
|
}
|
||||||
|
|
||||||
private Drawable testSingle(float circleSize, bool auto = false, double timeOffset = 0, Vector2? positionOffset = null)
|
private Drawable testSingle(float circleSize, bool auto = false, double timeOffset = 0, Vector2? positionOffset = null)
|
||||||
{
|
{
|
||||||
var drawable = createSingle(circleSize, auto, timeOffset, positionOffset);
|
var drawable = createSingle(circleSize, auto, timeOffset, positionOffset);
|
||||||
@ -46,7 +58,7 @@ namespace osu.Game.Rulesets.Osu.Tests
|
|||||||
return playfield;
|
return playfield;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Drawable testStream(float circleSize, bool auto = false)
|
private Drawable testStream(float circleSize, bool auto = false, double hitOffset = 0)
|
||||||
{
|
{
|
||||||
var playfield = new TestOsuPlayfield();
|
var playfield = new TestOsuPlayfield();
|
||||||
|
|
||||||
@ -54,14 +66,14 @@ namespace osu.Game.Rulesets.Osu.Tests
|
|||||||
|
|
||||||
for (int i = 0; i <= 1000; i += 100)
|
for (int i = 0; i <= 1000; i += 100)
|
||||||
{
|
{
|
||||||
playfield.Add(createSingle(circleSize, auto, i, pos));
|
playfield.Add(createSingle(circleSize, auto, i, pos, hitOffset));
|
||||||
pos.X += 50;
|
pos.X += 50;
|
||||||
}
|
}
|
||||||
|
|
||||||
return playfield;
|
return playfield;
|
||||||
}
|
}
|
||||||
|
|
||||||
private TestDrawableHitCircle createSingle(float circleSize, bool auto, double timeOffset, Vector2? positionOffset)
|
private TestDrawableHitCircle createSingle(float circleSize, bool auto, double timeOffset, Vector2? positionOffset, double hitOffset = 0)
|
||||||
{
|
{
|
||||||
positionOffset ??= Vector2.Zero;
|
positionOffset ??= Vector2.Zero;
|
||||||
|
|
||||||
@ -73,14 +85,14 @@ namespace osu.Game.Rulesets.Osu.Tests
|
|||||||
|
|
||||||
circle.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = circleSize });
|
circle.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = circleSize });
|
||||||
|
|
||||||
var drawable = CreateDrawableHitCircle(circle, auto);
|
var drawable = CreateDrawableHitCircle(circle, auto, hitOffset);
|
||||||
|
|
||||||
foreach (var mod in SelectedMods.Value.OfType<IApplicableToDrawableHitObjects>())
|
foreach (var mod in SelectedMods.Value.OfType<IApplicableToDrawableHitObjects>())
|
||||||
mod.ApplyToDrawableHitObjects(new[] { drawable });
|
mod.ApplyToDrawableHitObjects(new[] { drawable });
|
||||||
return drawable;
|
return drawable;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto) => new TestDrawableHitCircle(circle, auto)
|
protected virtual TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto, double hitOffset = 0) => new TestDrawableHitCircle(circle, auto, hitOffset)
|
||||||
{
|
{
|
||||||
Depth = depthIndex++
|
Depth = depthIndex++
|
||||||
};
|
};
|
||||||
@ -88,18 +100,20 @@ namespace osu.Game.Rulesets.Osu.Tests
|
|||||||
protected class TestDrawableHitCircle : DrawableHitCircle
|
protected class TestDrawableHitCircle : DrawableHitCircle
|
||||||
{
|
{
|
||||||
private readonly bool auto;
|
private readonly bool auto;
|
||||||
|
private readonly double hitOffset;
|
||||||
|
|
||||||
public TestDrawableHitCircle(HitCircle h, bool auto)
|
public TestDrawableHitCircle(HitCircle h, bool auto, double hitOffset)
|
||||||
: base(h)
|
: base(h)
|
||||||
{
|
{
|
||||||
this.auto = auto;
|
this.auto = auto;
|
||||||
|
this.hitOffset = hitOffset;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void TriggerJudgement() => UpdateResult(true);
|
public void TriggerJudgement() => UpdateResult(true);
|
||||||
|
|
||||||
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
||||||
{
|
{
|
||||||
if (auto && !userTriggered && timeOffset > 0)
|
if (auto && !userTriggered && timeOffset > hitOffset)
|
||||||
{
|
{
|
||||||
// force success
|
// force success
|
||||||
ApplyResult(r => r.Type = HitResult.Great);
|
ApplyResult(r => r.Type = HitResult.Great);
|
||||||
|
@ -16,11 +16,11 @@ namespace osu.Game.Rulesets.Osu.Tests
|
|||||||
Scheduler.AddDelayed(() => comboIndex.Value++, 250, true);
|
Scheduler.AddDelayed(() => comboIndex.Value++, 250, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto)
|
protected override TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto, double hitOffset = 0)
|
||||||
{
|
{
|
||||||
circle.ComboIndexBindable.BindTo(comboIndex);
|
circle.ComboIndexBindable.BindTo(comboIndex);
|
||||||
circle.IndexInCurrentComboBindable.BindTo(comboIndex);
|
circle.IndexInCurrentComboBindable.BindTo(comboIndex);
|
||||||
return base.CreateDrawableHitCircle(circle, auto);
|
return base.CreateDrawableHitCircle(circle, auto, hitOffset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,9 +26,9 @@ namespace osu.Game.Rulesets.Osu.Tests
|
|||||||
return base.CreateBeatmapForSkinProvider();
|
return base.CreateBeatmapForSkinProvider();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto)
|
protected override TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto, double hitOffset = 0)
|
||||||
{
|
{
|
||||||
var drawableHitObject = base.CreateDrawableHitCircle(circle, auto);
|
var drawableHitObject = base.CreateDrawableHitCircle(circle, auto, hitOffset);
|
||||||
|
|
||||||
Debug.Assert(drawableHitObject.HitObject.HitWindows != null);
|
Debug.Assert(drawableHitObject.HitObject.HitWindows != null);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user