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 NUnit.Framework;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
2020-07-01 23:21:45 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.UI;
|
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 TestSceneCatchStacker : TestSceneCatchPlayer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-31 13:40:53 +08:00
|
|
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
var beatmap = new Beatmap
|
|
|
|
|
{
|
|
|
|
|
BeatmapInfo = new BeatmapInfo
|
|
|
|
|
{
|
|
|
|
|
BaseDifficulty = new BeatmapDifficulty { CircleSize = 6 },
|
2019-05-31 13:40:53 +08:00
|
|
|
|
Ruleset = ruleset
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 512; i++)
|
2020-07-01 23:21:45 +08:00
|
|
|
|
{
|
|
|
|
|
beatmap.HitObjects.Add(new Fruit
|
|
|
|
|
{
|
|
|
|
|
X = (0.5f + i / 2048f * (i % 10 - 5)) * CatchPlayfield.WIDTH,
|
|
|
|
|
StartTime = i * 100,
|
|
|
|
|
NewCombo = i % 8 == 0
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return beatmap;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|