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 System;
|
|
|
|
|
using System.Collections.Generic;
|
2019-12-27 23:47:46 +08:00
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using NUnit.Framework;
|
2019-04-10 16:54:57 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-12-27 23:47:46 +08:00
|
|
|
|
using osu.Framework.Threading;
|
2020-02-06 04:52:36 +08:00
|
|
|
|
using osu.Framework.Utils;
|
2018-11-06 11:01:54 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2019-04-10 16:54:57 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Timing;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2019-03-25 00:02:36 +08:00
|
|
|
|
using osuTK;
|
2020-02-06 04:52:36 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneScrollingHitObjects : OsuTestScene
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(Playfield) };
|
|
|
|
|
|
2019-04-10 16:54:57 +08:00
|
|
|
|
[Cached(typeof(IReadOnlyList<Mod>))]
|
|
|
|
|
private IReadOnlyList<Mod> mods { get; set; } = Array.Empty<Mod>();
|
|
|
|
|
|
2020-02-06 05:56:44 +08:00
|
|
|
|
private const int time_range = 5000;
|
|
|
|
|
private const int spawn_rate = time_range / 10;
|
2019-12-27 23:47:46 +08:00
|
|
|
|
|
2018-11-06 14:46:36 +08:00
|
|
|
|
private readonly ScrollingTestContainer[] scrollContainers = new ScrollingTestContainer[4];
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly TestPlayfield[] playfields = new TestPlayfield[4];
|
2019-12-27 23:47:46 +08:00
|
|
|
|
private ScheduledDelegate hitObjectSpawnDelegate;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-27 23:47:46 +08:00
|
|
|
|
[SetUp]
|
2019-12-28 00:16:43 +08:00
|
|
|
|
public void Setup() => Schedule(() =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-12-27 23:47:46 +08:00
|
|
|
|
Child = new GridContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Content = new[]
|
|
|
|
|
{
|
|
|
|
|
new Drawable[]
|
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
|
scrollContainers[0] = new ScrollingTestContainer(ScrollingDirection.Up)
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-12-27 23:47:46 +08:00
|
|
|
|
Child = playfields[0] = new TestPlayfield(),
|
2020-02-06 05:56:44 +08:00
|
|
|
|
TimeRange = time_range
|
2018-11-06 14:46:36 +08:00
|
|
|
|
},
|
2019-12-27 03:17:51 +08:00
|
|
|
|
scrollContainers[1] = new ScrollingTestContainer(ScrollingDirection.Down)
|
2018-11-06 14:46:36 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-12-27 23:47:46 +08:00
|
|
|
|
Child = playfields[1] = new TestPlayfield(),
|
2020-02-06 05:56:44 +08:00
|
|
|
|
TimeRange = time_range
|
2018-11-06 14:46:36 +08:00
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new Drawable[]
|
|
|
|
|
{
|
2019-12-27 03:17:51 +08:00
|
|
|
|
scrollContainers[2] = new ScrollingTestContainer(ScrollingDirection.Left)
|
2018-11-06 14:46:36 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-12-27 23:47:46 +08:00
|
|
|
|
Child = playfields[2] = new TestPlayfield(),
|
2020-02-06 05:56:44 +08:00
|
|
|
|
TimeRange = time_range
|
2018-11-06 14:46:36 +08:00
|
|
|
|
},
|
2019-12-27 03:17:51 +08:00
|
|
|
|
scrollContainers[3] = new ScrollingTestContainer(ScrollingDirection.Right)
|
2018-11-06 14:46:36 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-12-27 23:47:46 +08:00
|
|
|
|
Child = playfields[3] = new TestPlayfield(),
|
2020-02-06 05:56:44 +08:00
|
|
|
|
TimeRange = time_range
|
2018-11-06 14:46:36 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-27 23:47:46 +08:00
|
|
|
|
};
|
2018-11-06 11:01:54 +08:00
|
|
|
|
|
2019-12-27 23:47:46 +08:00
|
|
|
|
setUpHitObjects();
|
2019-12-28 00:16:43 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-27 23:47:46 +08:00
|
|
|
|
private void setUpHitObjects()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
|
scrollContainers.ForEach(c => c.ControlPoints.Add(new MultiplierControlPoint(0)));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-02-06 05:56:44 +08:00
|
|
|
|
for (int i = spawn_rate / 2; i <= time_range; i += spawn_rate)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
addHitObject(Time.Current + i);
|
|
|
|
|
|
2019-12-27 23:47:46 +08:00
|
|
|
|
hitObjectSpawnDelegate?.Cancel();
|
2020-02-06 05:56:44 +08:00
|
|
|
|
hitObjectSpawnDelegate = Scheduler.AddDelayed(() => addHitObject(Time.Current + time_range), spawn_rate, true);
|
2019-12-27 23:47:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-06 05:56:44 +08:00
|
|
|
|
private IList<MultiplierControlPoint> testControlPoints => new List<MultiplierControlPoint>
|
|
|
|
|
{
|
|
|
|
|
new MultiplierControlPoint(time_range) { DifficultyPoint = { SpeedMultiplier = 1.25 } },
|
|
|
|
|
new MultiplierControlPoint(1.5 * time_range) { DifficultyPoint = { SpeedMultiplier = 1 } },
|
|
|
|
|
new MultiplierControlPoint(2 * time_range) { DifficultyPoint = { SpeedMultiplier = 1.5 } }
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-27 23:47:46 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestScrollAlgorithms()
|
|
|
|
|
{
|
2020-02-06 05:56:44 +08:00
|
|
|
|
AddStep("constant scroll", () => setScrollAlgorithm(ScrollVisualisationMethod.Constant));
|
|
|
|
|
AddStep("overlapping scroll", () => setScrollAlgorithm(ScrollVisualisationMethod.Overlapping));
|
|
|
|
|
AddStep("sequential scroll", () => setScrollAlgorithm(ScrollVisualisationMethod.Sequential));
|
|
|
|
|
|
|
|
|
|
AddSliderStep("time range", 100, 10000, time_range, v => scrollContainers.Where(c => c != null).ForEach(c => c.TimeRange = v));
|
2019-12-27 23:47:46 +08:00
|
|
|
|
|
2020-02-06 05:56:44 +08:00
|
|
|
|
AddStep("add control points", () => addControlPoints(testControlPoints, Time.Current));
|
2019-12-27 23:47:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2020-02-06 05:56:44 +08:00
|
|
|
|
public void TestConstantScrollLifetime()
|
2019-12-27 23:47:46 +08:00
|
|
|
|
{
|
2020-02-06 05:56:44 +08:00
|
|
|
|
AddStep("set constant scroll", () => setScrollAlgorithm(ScrollVisualisationMethod.Constant));
|
2019-12-27 23:47:46 +08:00
|
|
|
|
// scroll container time range must be less than the rate of spawning hitobjects
|
|
|
|
|
// otherwise the hitobjects will spawn already partly visible on screen and look wrong
|
2020-02-06 05:56:44 +08:00
|
|
|
|
AddStep("set time range", () => scrollContainers.ForEach(c => c.TimeRange = time_range / 2.0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestSequentialScrollLifetime()
|
|
|
|
|
{
|
|
|
|
|
AddStep("set sequential scroll", () => setScrollAlgorithm(ScrollVisualisationMethod.Sequential));
|
|
|
|
|
AddStep("set time range", () => scrollContainers.ForEach(c => c.TimeRange = time_range / 2.0));
|
|
|
|
|
AddStep("add control points", () => addControlPoints(testControlPoints, Time.Current));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestOverlappingScrollLifetime()
|
|
|
|
|
{
|
|
|
|
|
AddStep("set overlapping scroll", () => setScrollAlgorithm(ScrollVisualisationMethod.Overlapping));
|
|
|
|
|
AddStep("set time range", () => scrollContainers.ForEach(c => c.TimeRange = time_range / 2.0));
|
|
|
|
|
AddStep("add control points", () => addControlPoints(testControlPoints, Time.Current));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void addHitObject(double time)
|
|
|
|
|
{
|
|
|
|
|
playfields.ForEach(p =>
|
|
|
|
|
{
|
|
|
|
|
var hitObject = new TestDrawableHitObject(time);
|
|
|
|
|
setAnchor(hitObject, p);
|
|
|
|
|
|
|
|
|
|
p.Add(hitObject);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-06 05:56:44 +08:00
|
|
|
|
private TestDrawableControlPoint createDrawablePoint(TestPlayfield playfield, double t)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-02-06 05:56:44 +08:00
|
|
|
|
var obj = new TestDrawableControlPoint(playfield.Direction, t);
|
|
|
|
|
setAnchor(obj, playfield);
|
|
|
|
|
return obj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void addControlPoints(IList<MultiplierControlPoint> controlPoints, double sequenceStartTime)
|
|
|
|
|
{
|
|
|
|
|
controlPoints.ForEach(point => point.StartTime += sequenceStartTime);
|
|
|
|
|
|
|
|
|
|
scrollContainers.ForEach(container =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-02-06 05:56:44 +08:00
|
|
|
|
container.ControlPoints.AddRange(controlPoints);
|
2018-11-06 14:46:36 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-02-06 05:56:44 +08:00
|
|
|
|
foreach (var playfield in playfields)
|
2018-11-06 14:46:36 +08:00
|
|
|
|
{
|
2020-02-06 05:56:44 +08:00
|
|
|
|
foreach (var controlPoint in controlPoints)
|
|
|
|
|
playfield.Add(createDrawablePoint(playfield, controlPoint.StartTime));
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void setAnchor(DrawableHitObject obj, TestPlayfield playfield)
|
|
|
|
|
{
|
|
|
|
|
switch (playfield.Direction)
|
|
|
|
|
{
|
|
|
|
|
case ScrollingDirection.Up:
|
|
|
|
|
obj.Anchor = Anchor.TopCentre;
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case ScrollingDirection.Down:
|
|
|
|
|
obj.Anchor = Anchor.BottomCentre;
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case ScrollingDirection.Left:
|
|
|
|
|
obj.Anchor = Anchor.CentreLeft;
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case ScrollingDirection.Right:
|
|
|
|
|
obj.Anchor = Anchor.CentreRight;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-12 16:36:19 +08:00
|
|
|
|
private void setScrollAlgorithm(ScrollVisualisationMethod algorithm) => scrollContainers.ForEach(c => c.ScrollAlgorithm = algorithm);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private class TestPlayfield : ScrollingPlayfield
|
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
|
public new ScrollingDirection Direction => base.Direction.Value;
|
2018-11-06 11:01:54 +08:00
|
|
|
|
|
2018-11-06 14:46:36 +08:00
|
|
|
|
public TestPlayfield()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Padding = new MarginPadding(2);
|
|
|
|
|
|
2018-09-21 13:35:50 +08:00
|
|
|
|
InternalChildren = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-21 13:35:50 +08:00
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Child = HitObjectContainer
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class TestDrawableControlPoint : DrawableHitObject<HitObject>
|
|
|
|
|
{
|
|
|
|
|
public TestDrawableControlPoint(ScrollingDirection direction, double time)
|
|
|
|
|
: base(new HitObject { StartTime = time })
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2019-03-25 12:47:28 +08:00
|
|
|
|
AddInternal(new Box
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both
|
2019-03-25 12:47:28 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
switch (direction)
|
|
|
|
|
{
|
|
|
|
|
case ScrollingDirection.Up:
|
|
|
|
|
case ScrollingDirection.Down:
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
Height = 2;
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case ScrollingDirection.Left:
|
|
|
|
|
case ScrollingDirection.Right:
|
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
|
Width = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class TestDrawableHitObject : DrawableHitObject<HitObject>
|
|
|
|
|
{
|
|
|
|
|
public TestDrawableHitObject(double time)
|
|
|
|
|
: base(new HitObject { StartTime = time })
|
|
|
|
|
{
|
2019-12-27 03:17:51 +08:00
|
|
|
|
Origin = Anchor.Custom;
|
|
|
|
|
OriginPosition = new Vector2(75 / 4.0f);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
2020-02-06 04:52:36 +08:00
|
|
|
|
AddInternal(new Box
|
|
|
|
|
{
|
|
|
|
|
Size = new Vector2(75),
|
|
|
|
|
Colour = new Color4(RNG.NextSingle(), RNG.NextSingle(), RNG.NextSingle(), 1)
|
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|