2020-01-02 14:23:41 +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.
|
|
|
|
|
2020-06-15 10:18:12 +08:00
|
|
|
using System;
|
2020-01-02 14:23:41 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
using osu.Framework.Audio.Sample;
|
|
|
|
using osu.Framework.IO.Stores;
|
2020-01-06 14:33:59 +08:00
|
|
|
using osu.Framework.Testing;
|
2020-01-02 14:23:41 +08:00
|
|
|
using osu.Game.Audio;
|
2020-06-15 10:18:12 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
using osu.Game.Screens.Play;
|
2020-01-02 14:23:41 +08:00
|
|
|
using osu.Game.Skinning;
|
2020-06-15 10:18:12 +08:00
|
|
|
using osu.Game.Storyboards;
|
|
|
|
using osu.Game.Storyboards.Drawables;
|
2020-01-02 14:23:41 +08:00
|
|
|
using osu.Game.Tests.Resources;
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Gameplay
|
|
|
|
{
|
2020-01-06 14:33:59 +08:00
|
|
|
[HeadlessTest]
|
2020-01-02 14:23:41 +08:00
|
|
|
public class TestSceneStoryboardSamples : OsuTestScene
|
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void TestRetrieveTopLevelSample()
|
|
|
|
{
|
|
|
|
ISkin skin = null;
|
|
|
|
SampleChannel channel = null;
|
|
|
|
|
|
|
|
AddStep("create skin", () => skin = new TestSkin("test-sample", Audio));
|
|
|
|
AddStep("retrieve sample", () => channel = skin.GetSample(new SampleInfo("test-sample")));
|
|
|
|
|
|
|
|
AddAssert("sample is non-null", () => channel != null);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestRetrieveSampleInSubFolder()
|
|
|
|
{
|
|
|
|
ISkin skin = null;
|
|
|
|
SampleChannel channel = null;
|
|
|
|
|
|
|
|
AddStep("create skin", () => skin = new TestSkin("folder/test-sample", Audio));
|
|
|
|
AddStep("retrieve sample", () => channel = skin.GetSample(new SampleInfo("folder/test-sample")));
|
|
|
|
|
|
|
|
AddAssert("sample is non-null", () => channel != null);
|
|
|
|
}
|
|
|
|
|
2020-06-15 10:18:12 +08:00
|
|
|
[Test]
|
|
|
|
public void TestSamplePlaybackAtZero()
|
|
|
|
{
|
|
|
|
GameplayClockContainer gameplayContainer = null;
|
|
|
|
DrawableStoryboardSample sample = null;
|
|
|
|
|
|
|
|
AddStep("create container", () =>
|
|
|
|
{
|
|
|
|
Add(gameplayContainer = new GameplayClockContainer(CreateWorkingBeatmap(new OsuRuleset().RulesetInfo), Array.Empty<Mod>(), 0));
|
|
|
|
|
|
|
|
gameplayContainer.Add(sample = new DrawableStoryboardSample(new StoryboardSampleInfo(string.Empty, 0, 1))
|
|
|
|
{
|
|
|
|
Clock = gameplayContainer.GameplayClock
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep("start time", () => gameplayContainer.Start());
|
|
|
|
|
|
|
|
AddUntilStep("sample playback succeeded", () => sample.LifetimeEnd < double.MaxValue);
|
|
|
|
}
|
|
|
|
|
2020-01-02 14:23:41 +08:00
|
|
|
private class TestSkin : LegacySkin
|
|
|
|
{
|
|
|
|
public TestSkin(string resourceName, AudioManager audioManager)
|
|
|
|
: base(DefaultLegacySkin.Info, new TestResourceStore(resourceName), audioManager, "skin.ini")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class TestResourceStore : IResourceStore<byte[]>
|
|
|
|
{
|
|
|
|
private readonly string resourceName;
|
|
|
|
|
|
|
|
public TestResourceStore(string resourceName)
|
|
|
|
{
|
|
|
|
this.resourceName = resourceName;
|
|
|
|
}
|
|
|
|
|
2020-04-11 09:24:34 +08:00
|
|
|
public byte[] Get(string name) => name == resourceName ? TestResources.GetStore().Get("Resources/Samples/test-sample.mp3") : null;
|
2020-01-02 14:23:41 +08:00
|
|
|
|
2020-04-11 09:24:34 +08:00
|
|
|
public Task<byte[]> GetAsync(string name) => name == resourceName ? TestResources.GetStore().GetAsync("Resources/Samples/test-sample.mp3") : null;
|
2020-01-02 14:23:41 +08:00
|
|
|
|
2020-04-11 09:24:34 +08:00
|
|
|
public Stream GetStream(string name) => name == resourceName ? TestResources.GetStore().GetStream("Resources/Samples/test-sample.mp3") : null;
|
2020-01-02 14:23:41 +08:00
|
|
|
|
|
|
|
public IEnumerable<string> GetAvailableResources() => new[] { resourceName };
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|