2019-02-15 12:03:55 +00: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.
|
|
|
|
|
|
|
|
|
|
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 07:32:12 +00:00
|
|
|
|
public partial class TestSceneHitCircleLongCombo : TestSceneOsuPlayer
|
2019-02-15 12:03:55 +00:00
|
|
|
|
{
|
2019-05-31 05:40:53 +00:00
|
|
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
|
2019-02-15 12:03:55 +00:00
|
|
|
|
{
|
|
|
|
|
var beatmap = new Beatmap
|
|
|
|
|
{
|
|
|
|
|
BeatmapInfo = new BeatmapInfo
|
|
|
|
|
{
|
2022-01-18 13:57:39 +00:00
|
|
|
|
Difficulty = new BeatmapDifficulty { CircleSize = 6 },
|
2019-05-31 05:40:53 +00:00
|
|
|
|
Ruleset = ruleset
|
2019-02-15 12:03:55 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 512; i++)
|
2019-11-11 11:53:22 +00:00
|
|
|
|
{
|
2019-09-17 18:00:17 +00:00
|
|
|
|
if (i % 32 < 20)
|
|
|
|
|
beatmap.HitObjects.Add(new HitCircle { Position = new Vector2(256, 192), StartTime = i * 100 });
|
2019-11-11 11:53:22 +00:00
|
|
|
|
}
|
2019-02-15 12:03:55 +00:00
|
|
|
|
|
|
|
|
|
return beatmap;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|