mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
110 lines
3.5 KiB
C#
110 lines
3.5 KiB
C#
// 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.Framework.Allocation;
|
|
using osu.Framework.Audio;
|
|
using osu.Framework.Audio.Track;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Audio;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Rulesets.Osu;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneWaveform : OsuTestScene
|
|
{
|
|
private WorkingBeatmap waveformBeatmap;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(AudioManager audio)
|
|
{
|
|
waveformBeatmap = new WaveformTestBeatmap(audio);
|
|
}
|
|
|
|
[TestCase(1f)]
|
|
[TestCase(1f / 2)]
|
|
[TestCase(1f / 4)]
|
|
[TestCase(1f / 8)]
|
|
[TestCase(1f / 16)]
|
|
[TestCase(0f)]
|
|
public void TestResolution(float resolution)
|
|
{
|
|
TestWaveformGraph graph = null;
|
|
|
|
AddStep("add graph", () =>
|
|
{
|
|
Child = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 100,
|
|
Children = new Drawable[]
|
|
{
|
|
graph = new TestWaveformGraph
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Resolution = resolution,
|
|
Waveform = waveformBeatmap.Waveform,
|
|
},
|
|
new Container
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
AutoSizeAxes = Axes.Both,
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.Black,
|
|
Alpha = 0.75f
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Text = $"Resolution: {resolution:0.00}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
});
|
|
|
|
AddUntilStep("wait for load", () => graph.ResampledWaveform != null);
|
|
}
|
|
|
|
[Test]
|
|
public void TestDefaultBeatmap()
|
|
{
|
|
TestWaveformGraph graph = null;
|
|
|
|
AddStep("add graph", () =>
|
|
{
|
|
Child = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 100,
|
|
Child = graph = new TestWaveformGraph
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Waveform = CreateWorkingBeatmap(new OsuRuleset().RulesetInfo).Waveform,
|
|
},
|
|
};
|
|
});
|
|
|
|
AddUntilStep("wait for load", () => graph.ResampledWaveform != null);
|
|
}
|
|
|
|
public class TestWaveformGraph : WaveformGraph
|
|
{
|
|
public new Waveform ResampledWaveform => base.ResampledWaveform;
|
|
}
|
|
}
|
|
}
|