1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00
osu-lazer/osu.Game.Rulesets.Catch.Tests/TestSceneCatchStacker.cs

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

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