2019-02-15 20:03:55 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-02-15 20:03:55 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
{
|
|
|
|
[TestFixture]
|
2020-04-17 15:32:12 +08:00
|
|
|
public partial class TestSceneHitCircleLongCombo : TestSceneOsuPlayer
|
2019-02-15 20:03:55 +08:00
|
|
|
{
|
2019-05-31 13:40:53 +08:00
|
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
|
2019-02-15 20:03:55 +08:00
|
|
|
{
|
|
|
|
var beatmap = new Beatmap
|
|
|
|
{
|
|
|
|
BeatmapInfo = new BeatmapInfo
|
|
|
|
{
|
2022-01-18 21:57:39 +08:00
|
|
|
Difficulty = new BeatmapDifficulty { CircleSize = 6 },
|
2019-05-31 13:40:53 +08:00
|
|
|
Ruleset = ruleset
|
2019-02-15 20:03:55 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
for (int i = 0; i < 512; i++)
|
2019-11-11 19:53:22 +08:00
|
|
|
{
|
2019-09-18 02:00:17 +08:00
|
|
|
if (i % 32 < 20)
|
|
|
|
beatmap.HitObjects.Add(new HitCircle { Position = new Vector2(256, 192), StartTime = i * 100 });
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2019-02-15 20:03:55 +08:00
|
|
|
|
|
|
|
return beatmap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|