osu/osu.Game.Rulesets.Catch.Tests/TestSceneCatchStacker.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
C#
Raw Normal View History

// 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 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2017-10-10 07:34:01 +00:00
using NUnit.Framework;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.UI;
2018-04-13 09:19:50 +00:00
2017-10-10 07:34:01 +00:00
namespace osu.Game.Rulesets.Catch.Tests
{
[TestFixture]
public partial class TestSceneCatchStacker : TestSceneCatchPlayer
2017-10-10 07:34:01 +00:00
{
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
2017-10-10 07:34:01 +00:00
{
2017-11-28 10:43:26 +00:00
var beatmap = new Beatmap
{
BeatmapInfo = new BeatmapInfo
{
Difficulty = new BeatmapDifficulty { CircleSize = 6 },
Ruleset = ruleset
2017-11-28 10:43:26 +00:00
}
};
2018-04-13 09:19:50 +00:00
2017-11-28 09:18:39 +00:00
for (int i = 0; i < 512; i++)
{
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 09:19:50 +00:00
2017-10-10 07:34:01 +00:00
return beatmap;
}
}
}