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
|
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Catch.UI;
|
2018-11-01 14:38:19 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
using osu.Game.Tests.Visual;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
|
|
|
{
|
|
|
|
|
public class TestCaseAutoJuiceStream : TestCasePlayer
|
|
|
|
|
{
|
|
|
|
|
public TestCaseAutoJuiceStream()
|
|
|
|
|
: base(new CatchRuleset())
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-19 19:44:38 +08:00
|
|
|
|
protected override IBeatmap CreateBeatmap(Ruleset ruleset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
var beatmap = new Beatmap
|
|
|
|
|
{
|
|
|
|
|
BeatmapInfo = new BeatmapInfo
|
|
|
|
|
{
|
|
|
|
|
BaseDifficulty = new BeatmapDifficulty { CircleSize = 6, SliderMultiplier = 3 },
|
|
|
|
|
Ruleset = ruleset.RulesetInfo
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 100; i++)
|
|
|
|
|
{
|
|
|
|
|
float width = (i % 10 + 1) / 20f;
|
|
|
|
|
|
|
|
|
|
beatmap.HitObjects.Add(new JuiceStream
|
|
|
|
|
{
|
|
|
|
|
X = 0.5f - width / 2,
|
2018-11-01 14:38:19 +08:00
|
|
|
|
Path = new SliderPath(PathType.Linear, new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Vector2.Zero,
|
|
|
|
|
new Vector2(width * CatchPlayfield.BASE_WIDTH, 0)
|
2018-11-01 14:38:19 +08:00
|
|
|
|
}),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
StartTime = i * 2000,
|
|
|
|
|
NewCombo = i % 8 == 0
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return beatmap;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-06 19:21:47 +08:00
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-06 19:21:47 +08:00
|
|
|
|
Beatmap.Value.Mods.Value = Beatmap.Value.Mods.Value.Concat(new[] { ruleset.GetAutoplayMod() });
|
|
|
|
|
return base.CreatePlayer(ruleset);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|