Skip to content

Commit

Permalink
Merge pull request ppy#7889 from smoogipoo/fix-ogg-samples
Browse files Browse the repository at this point in the history
Fix ogg beatmap/skin samples not loading
  • Loading branch information
peppy authored Feb 18, 2020
2 parents c49637d + ee13632 commit 181774e
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 0 deletions.
Binary file added osu.Game.Tests/Resources/Archives/ogg-beatmap.osz
Binary file not shown.
Binary file added osu.Game.Tests/Resources/Archives/ogg-skin.osk
Binary file not shown.
37 changes: 37 additions & 0 deletions osu.Game.Tests/Skins/TestSceneBeatmapSkinResources.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. 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.Track;
using osu.Framework.Testing;
using osu.Game.Audio;
using osu.Game.Beatmaps;
using osu.Game.IO.Archives;
using osu.Game.Tests.Resources;
using osu.Game.Tests.Visual;

namespace osu.Game.Tests.Skins
{
[HeadlessTest]
public class TestSceneBeatmapSkinResources : OsuTestScene
{
[Resolved]
private BeatmapManager beatmaps { get; set; }

private WorkingBeatmap beatmap;

[BackgroundDependencyLoader]
private void load()
{
var imported = beatmaps.Import(new ZipArchiveReader(TestResources.OpenResource("Archives/ogg-beatmap.osz"))).Result;
beatmap = beatmaps.GetWorkingBeatmap(imported.Beatmaps[0]);
}

[Test]
public void TestRetrieveOggSample() => AddAssert("sample is non-null", () => beatmap.Skin.GetSample(new SampleInfo("sample")) != null);

[Test]
public void TestRetrieveOggTrack() => AddAssert("track is non-null", () => !(beatmap.Track is TrackVirtual));
}
}
33 changes: 33 additions & 0 deletions osu.Game.Tests/Skins/TestSceneSkinResources.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. 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.Testing;
using osu.Game.Audio;
using osu.Game.IO.Archives;
using osu.Game.Skinning;
using osu.Game.Tests.Resources;
using osu.Game.Tests.Visual;

namespace osu.Game.Tests.Skins
{
[HeadlessTest]
public class TestSceneSkinResources : OsuTestScene
{
[Resolved]
private SkinManager skins { get; set; }

private ISkin skin;

[BackgroundDependencyLoader]
private void load()
{
var imported = skins.Import(new ZipArchiveReader(TestResources.OpenResource("Archives/ogg-skin.osk"))).Result;
skin = skins.GetSkin(imported);
}

[Test]
public void TestRetrieveOggSample() => AddAssert("sample is non-null", () => skin.GetSample(new SampleInfo("sample")) != null);
}
}
2 changes: 2 additions & 0 deletions osu.Game/Skinning/LegacySkin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ protected LegacySkin(SkinInfo skin, IResourceStore<byte[]> storage, AudioManager
{
Samples = audioManager?.GetSampleStore(storage);
Textures = new TextureStore(new TextureLoaderStore(storage));

(storage as ResourceStore<byte[]>)?.AddExtension("ogg");
}
}

Expand Down

0 comments on commit 181774e

Please sign in to comment.