1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 11:27:38 +08:00
osu-lazer/osu.Game.Tests/Visual/Gameplay/TestSceneGameplaySampleTriggerSource.cs

211 lines
8.2 KiB
C#
Raw Normal View History

2021-08-25 15:55: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.
using System.Diagnostics;
2021-08-25 15:55:03 +08:00
using System.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Timing;
using osu.Framework.Utils;
2021-08-25 15:55:03 +08:00
using osu.Game.Audio;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Beatmaps.Legacy;
2021-08-25 15:55:03 +08:00
using osu.Game.Rulesets;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Objects.Types;
2021-08-25 15:55:03 +08:00
using osu.Game.Rulesets.Osu;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.UI;
using osu.Game.Storyboards;
using osuTK;
2021-08-25 15:55:03 +08:00
using osuTK.Input;
namespace osu.Game.Tests.Visual.Gameplay
{
2022-11-24 13:32:20 +08:00
public partial class TestSceneGameplaySampleTriggerSource : PlayerTestScene
2021-08-25 15:55:03 +08:00
{
private TestGameplaySampleTriggerSource sampleTriggerSource = null!;
2021-08-25 15:55:03 +08:00
protected override Ruleset CreatePlayerRuleset() => new OsuRuleset();
private Beatmap beatmap = null!;
2021-08-25 15:55:03 +08:00
[Resolved]
private AudioManager audio { get; set; } = null!;
protected override WorkingBeatmap CreateWorkingBeatmap(IBeatmap beatmap, Storyboard? storyboard = null)
=> new ClockBackedTestWorkingBeatmap(beatmap, storyboard, new FramedClock(new ManualClock { Rate = 1 }), audio);
2021-08-25 15:55:03 +08:00
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
{
ControlPointInfo controlPointInfo = new LegacyControlPointInfo();
2021-08-25 15:55:03 +08:00
beatmap = new Beatmap
{
BeatmapInfo = new BeatmapInfo
{
Difficulty = new BeatmapDifficulty { CircleSize = 6, SliderMultiplier = 3 },
2021-08-25 15:55:03 +08:00
Ruleset = ruleset
},
ControlPointInfo = controlPointInfo
2021-08-25 15:55:03 +08:00
};
const double start_offset = 8000;
const double spacing = 2000;
// intentionally start objects a bit late so we can test the case of no alive objects.
2021-08-25 15:55:03 +08:00
double t = start_offset;
beatmap.HitObjects.AddRange(new HitObject[]
2021-08-25 15:55:03 +08:00
{
new HitCircle
{
StartTime = t += spacing,
Samples = new[] { new HitSampleInfo(HitSampleInfo.HIT_NORMAL) }
},
new HitCircle
{
StartTime = t += spacing,
Samples = new[] { new HitSampleInfo(HitSampleInfo.HIT_WHISTLE) }
},
new HitCircle
{
StartTime = t += spacing,
Samples = new[] { new HitSampleInfo(HitSampleInfo.HIT_NORMAL, HitSampleInfo.BANK_SOFT) },
2021-08-25 15:55:03 +08:00
},
new HitCircle
{
StartTime = t += spacing,
},
new Slider
{
StartTime = t += spacing,
Path = new SliderPath(PathType.Linear, new[] { Vector2.Zero, Vector2.UnitY * 200 }),
Samples = new[] { new HitSampleInfo(HitSampleInfo.HIT_WHISTLE, HitSampleInfo.BANK_SOFT) },
2021-08-25 15:55:03 +08:00
},
});
// Add a change in volume halfway through final slider.
controlPointInfo.Add(t, new SampleControlPoint
{
SampleBank = "normal",
SampleVolume = 20,
});
2021-08-25 15:55:03 +08:00
return beatmap;
}
public override void SetUpSteps()
{
base.SetUpSteps();
AddStep("Add trigger source", () => Player.HUDOverlay.Add(sampleTriggerSource = new TestGameplaySampleTriggerSource(Player.DrawableRuleset.Playfield.HitObjectContainer)));
}
[Test]
public void TestCorrectHitObject()
{
waitForAliveObjectIndex(null);
checkValidObjectIndex(0);
2021-08-25 15:55:03 +08:00
seekBeforeIndex(0);
waitForAliveObjectIndex(0);
checkValidObjectIndex(0);
2021-08-25 15:55:03 +08:00
AddAssert("first object not hit", () => getNextAliveObject()?.Entry?.Result?.HasResult != true);
2021-08-25 15:55:03 +08:00
AddStep("hit first object", () =>
2021-08-25 15:55:03 +08:00
{
var next = getNextAliveObject();
2021-08-25 15:55:03 +08:00
if (next != null)
2021-08-25 15:55:03 +08:00
{
Debug.Assert(next.Entry?.Result?.HasResult != true);
2021-08-25 15:55:03 +08:00
InputManager.MoveMouseTo(next.ScreenSpaceDrawQuad.Centre);
InputManager.Click(MouseButton.Left);
}
2021-08-25 15:55:03 +08:00
});
AddAssert("first object hit", () => getNextAliveObject()?.Entry?.Result?.HasResult == true);
checkValidObjectIndex(1);
2021-08-25 15:55:03 +08:00
// Still object 1 as it's not hit yet.
seekBeforeIndex(1);
waitForAliveObjectIndex(1);
checkValidObjectIndex(1);
2021-08-25 15:55:03 +08:00
seekBeforeIndex(2);
waitForAliveObjectIndex(2);
checkValidObjectIndex(2);
2021-08-25 15:55:03 +08:00
seekBeforeIndex(3);
waitForAliveObjectIndex(3);
checkValidObjectIndex(3);
seekBeforeIndex(4);
waitForAliveObjectIndex(4);
// Even before the object, we should prefer the first nested object's sample.
// This is because the (parent) object will only play its sample at the final EndTime.
AddAssert("check valid object is slider's first nested", () => sampleTriggerSource.GetMostValidObject(), () => Is.EqualTo(beatmap.HitObjects[4].NestedHitObjects.First()));
2021-08-25 15:55:03 +08:00
2023-02-22 13:41:20 +08:00
AddStep("seek to just before slider ends", () => Player.GameplayClockContainer.Seek(beatmap.HitObjects[4].GetEndTime() - 100));
waitForCatchUp();
AddUntilStep("wait until valid object is slider's last nested", () => sampleTriggerSource.GetMostValidObject(), () => Is.EqualTo(beatmap.HitObjects[4].NestedHitObjects.Last()));
2021-08-25 15:55:03 +08:00
// After we get far enough away, the samples of the object itself should be used, not any nested object.
2023-02-22 13:41:20 +08:00
AddStep("seek to further after slider", () => Player.GameplayClockContainer.Seek(beatmap.HitObjects[4].GetEndTime() + 1000));
waitForCatchUp();
AddUntilStep("wait until valid object is slider itself", () => sampleTriggerSource.GetMostValidObject(), () => Is.EqualTo(beatmap.HitObjects[4]));
2021-08-25 15:55:03 +08:00
2023-02-22 13:41:20 +08:00
AddStep("Seek into future", () => Player.GameplayClockContainer.Seek(beatmap.HitObjects.Last().GetEndTime() + 10000));
waitForCatchUp();
waitForAliveObjectIndex(null);
checkValidObjectIndex(4);
2021-08-25 15:55:03 +08:00
}
private void seekBeforeIndex(int index)
{
2023-02-22 13:41:20 +08:00
AddStep($"seek to just before object {index}", () => Player.GameplayClockContainer.Seek(beatmap.HitObjects[index].StartTime - 100));
waitForCatchUp();
}
private void waitForCatchUp() =>
AddUntilStep("wait for frame stable clock to catch up", () => Precision.AlmostEquals(Player.GameplayClockContainer.CurrentTime, Player.DrawableRuleset.FrameStableClock.CurrentTime));
private void waitForAliveObjectIndex(int? index)
{
if (index == null)
AddUntilStep("wait for no alive objects", getNextAliveObject, () => Is.Null);
else
AddUntilStep($"wait for next alive to be {index}", () => getNextAliveObject()?.HitObject, () => Is.EqualTo(beatmap.HitObjects[index.Value]));
}
private void checkValidObjectIndex(int index) =>
AddAssert($"check valid object is {index}", () => sampleTriggerSource.GetMostValidObject(), () => Is.EqualTo(beatmap.HitObjects[index]));
private DrawableHitObject? getNextAliveObject() =>
2021-08-25 15:55:03 +08:00
Player.DrawableRuleset.Playfield.HitObjectContainer.AliveObjects.FirstOrDefault();
[Test]
public void TestSampleTriggering()
{
AddRepeatStep("trigger sample", () => sampleTriggerSource.Play(), 10);
}
2022-11-24 13:32:20 +08:00
public partial class TestGameplaySampleTriggerSource : GameplaySampleTriggerSource
2021-08-25 15:55:03 +08:00
{
public TestGameplaySampleTriggerSource(HitObjectContainer hitObjectContainer)
: base(hitObjectContainer)
{
}
public new HitObject GetMostValidObject() => base.GetMostValidObject();
}
}
}