mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:47:29 +08:00
d96399ea42
This reverts commit 7cbbd74d
52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
// 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 NUnit.Framework;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
using osu.Game.Rulesets.Catch.UI;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
{
|
|
public class TestSceneJuiceStream : TestSceneCatchPlayer
|
|
{
|
|
[Test]
|
|
public void TestJuiceStreamEndingCombo()
|
|
{
|
|
AddUntilStep("player is done", () => !Player.ValidForResume);
|
|
}
|
|
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new Beatmap
|
|
{
|
|
BeatmapInfo = new BeatmapInfo
|
|
{
|
|
BaseDifficulty = new BeatmapDifficulty { CircleSize = 5, SliderMultiplier = 2 },
|
|
Ruleset = ruleset
|
|
},
|
|
HitObjects = new List<HitObject>
|
|
{
|
|
new JuiceStream
|
|
{
|
|
X = CatchPlayfield.CENTER_X,
|
|
Path = new SliderPath(PathType.Linear, new[]
|
|
{
|
|
Vector2.Zero,
|
|
new Vector2(0, 100)
|
|
}),
|
|
StartTime = 200
|
|
},
|
|
new Banana
|
|
{
|
|
X = CatchPlayfield.CENTER_X,
|
|
StartTime = 1000,
|
|
NewCombo = true
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|