2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-10 09:07:47 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using NUnit.Framework;
|
2020-03-10 09:07:47 +08:00
|
|
|
|
using osu.Framework.Testing;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2020-08-21 01:01:29 +08:00
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
2020-03-10 09:07:47 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.UI;
|
2020-03-10 16:49:51 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2020-04-17 15:32:12 +08:00
|
|
|
|
public class TestSceneHyperDash : TestSceneCatchPlayer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-09-13 18:29:49 +08:00
|
|
|
|
protected override bool Autoplay => true;
|
|
|
|
|
|
2020-08-24 10:38:03 +08:00
|
|
|
|
private int hyperDashCount;
|
|
|
|
|
private bool inHyperDash;
|
|
|
|
|
|
2019-06-27 18:19:22 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestHyperDash()
|
2019-03-18 15:39:34 +08:00
|
|
|
|
{
|
2020-08-23 22:11:56 +08:00
|
|
|
|
AddStep("reset count", () =>
|
|
|
|
|
{
|
|
|
|
|
inHyperDash = false;
|
|
|
|
|
hyperDashCount = 0;
|
2020-08-24 10:38:03 +08:00
|
|
|
|
|
|
|
|
|
// this needs to be done within the frame stable context due to how quickly hyperdash state changes occur.
|
|
|
|
|
Player.DrawableRuleset.FrameStableComponents.OnUpdate += d =>
|
|
|
|
|
{
|
2021-07-21 15:27:44 +08:00
|
|
|
|
var catcher = Player.ChildrenOfType<Catcher>().FirstOrDefault();
|
2020-08-24 10:38:03 +08:00
|
|
|
|
|
|
|
|
|
if (catcher == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (catcher.HyperDashing != inHyperDash)
|
|
|
|
|
{
|
|
|
|
|
inHyperDash = catcher.HyperDashing;
|
|
|
|
|
if (catcher.HyperDashing)
|
|
|
|
|
hyperDashCount++;
|
|
|
|
|
}
|
|
|
|
|
};
|
2020-08-23 22:11:56 +08:00
|
|
|
|
});
|
2020-03-10 09:07:47 +08:00
|
|
|
|
|
2020-08-23 22:11:56 +08:00
|
|
|
|
AddAssert("First note is hyperdash", () => Beatmap.Value.Beatmap.HitObjects[0] is Fruit f && f.HyperDash);
|
2020-03-10 16:49:51 +08:00
|
|
|
|
|
2020-08-23 22:11:56 +08:00
|
|
|
|
for (int i = 0; i < 9; i++)
|
2020-03-10 09:07:47 +08:00
|
|
|
|
{
|
2020-08-23 22:11:56 +08:00
|
|
|
|
int count = i + 1;
|
2020-08-24 10:38:03 +08:00
|
|
|
|
AddUntilStep($"wait for hyperdash #{count}", () => hyperDashCount >= count);
|
2020-08-23 22:11:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-10 09:07:47 +08:00
|
|
|
|
|
2019-05-31 13:40:53 +08:00
|
|
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-02 21:05:56 +08:00
|
|
|
|
var beatmap = new Beatmap
|
|
|
|
|
{
|
|
|
|
|
BeatmapInfo =
|
|
|
|
|
{
|
2019-05-31 13:40:53 +08:00
|
|
|
|
Ruleset = ruleset,
|
2019-03-02 21:05:56 +08:00
|
|
|
|
BaseDifficulty = new BeatmapDifficulty { CircleSize = 3.6f }
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2020-08-21 01:01:29 +08:00
|
|
|
|
beatmap.ControlPointInfo.Add(0, new TimingControlPoint());
|
|
|
|
|
|
2020-03-10 09:07:47 +08:00
|
|
|
|
// Should produce a hyper-dash (edge case test)
|
2020-07-01 23:21:45 +08:00
|
|
|
|
beatmap.HitObjects.Add(new Fruit { StartTime = 1816, X = 56, NewCombo = true });
|
|
|
|
|
beatmap.HitObjects.Add(new Fruit { StartTime = 2008, X = 308, NewCombo = true });
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-10 09:07:47 +08:00
|
|
|
|
double startTime = 3000;
|
|
|
|
|
|
2020-07-01 23:21:45 +08:00
|
|
|
|
const float left_x = 0.02f * CatchPlayfield.WIDTH;
|
|
|
|
|
const float right_x = 0.98f * CatchPlayfield.WIDTH;
|
2020-03-10 09:07:47 +08:00
|
|
|
|
|
2020-03-10 16:49:51 +08:00
|
|
|
|
createObjects(() => new Fruit { X = left_x });
|
|
|
|
|
createObjects(() => new TestJuiceStream(right_x), 1);
|
|
|
|
|
createObjects(() => new TestJuiceStream(left_x), 1);
|
|
|
|
|
createObjects(() => new Fruit { X = right_x });
|
|
|
|
|
createObjects(() => new Fruit { X = left_x });
|
|
|
|
|
createObjects(() => new Fruit { X = right_x });
|
|
|
|
|
createObjects(() => new TestJuiceStream(left_x), 1);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-08-21 11:30:33 +08:00
|
|
|
|
beatmap.ControlPointInfo.Add(startTime, new TimingControlPoint
|
2020-08-21 01:01:29 +08:00
|
|
|
|
{
|
|
|
|
|
BeatLength = 50
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
createObjects(() => new TestJuiceStream(left_x)
|
|
|
|
|
{
|
|
|
|
|
Path = new SliderPath(new[]
|
|
|
|
|
{
|
|
|
|
|
new PathControlPoint(Vector2.Zero),
|
|
|
|
|
new PathControlPoint(new Vector2(512, 0))
|
|
|
|
|
})
|
|
|
|
|
}, 1);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return beatmap;
|
2020-03-10 09:07:47 +08:00
|
|
|
|
|
2020-03-10 16:49:51 +08:00
|
|
|
|
void createObjects(Func<CatchHitObject> createObject, int count = 3)
|
2020-03-10 09:07:47 +08:00
|
|
|
|
{
|
|
|
|
|
const float spacing = 140;
|
|
|
|
|
|
2020-03-10 16:49:51 +08:00
|
|
|
|
for (int i = 0; i < count; i++)
|
2020-03-10 09:07:47 +08:00
|
|
|
|
{
|
|
|
|
|
var hitObject = createObject();
|
|
|
|
|
hitObject.StartTime = startTime + i * spacing;
|
|
|
|
|
beatmap.HitObjects.Add(hitObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
startTime += 700;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2020-03-10 16:49:51 +08:00
|
|
|
|
|
|
|
|
|
private class TestJuiceStream : JuiceStream
|
|
|
|
|
{
|
|
|
|
|
public TestJuiceStream(float x)
|
|
|
|
|
{
|
|
|
|
|
X = x;
|
2020-03-11 11:56:12 +08:00
|
|
|
|
|
2020-03-10 16:49:51 +08:00
|
|
|
|
Path = new SliderPath(new[]
|
|
|
|
|
{
|
2020-03-11 11:56:12 +08:00
|
|
|
|
new PathControlPoint(Vector2.Zero),
|
|
|
|
|
new PathControlPoint(new Vector2(30, 0)),
|
2020-03-10 16:49:51 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|