mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 00:27:51 +08:00
49 lines
1.5 KiB
C#
49 lines
1.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 JetBrains.Annotations;
|
|
using osu.Framework.Audio.Sample;
|
|
using osu.Game.Audio;
|
|
using osu.Game.Extensions;
|
|
using osu.Game.IO;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class ArgonProSkin : ArgonSkin
|
|
{
|
|
public new static SkinInfo CreateInfo() => new SkinInfo
|
|
{
|
|
ID = Skinning.SkinInfo.ARGON_PRO_SKIN,
|
|
Name = "osu! \"argon\" pro (2022)",
|
|
Creator = "team osu!",
|
|
Protected = true,
|
|
InstantiationInfo = typeof(ArgonProSkin).GetInvariantInstantiationInfo()
|
|
};
|
|
|
|
public override ISample? GetSample(ISampleInfo sampleInfo)
|
|
{
|
|
foreach (string lookup in sampleInfo.LookupNames)
|
|
{
|
|
string remappedLookup = lookup.Replace(@"Gameplay/", @"Gameplay/ArgonPro/");
|
|
|
|
var sample = Samples?.Get(remappedLookup) ?? Resources.AudioManager?.Samples.Get(remappedLookup);
|
|
if (sample != null)
|
|
return sample;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public ArgonProSkin(IStorageResourceProvider resources)
|
|
: this(CreateInfo(), resources)
|
|
{
|
|
}
|
|
|
|
[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
|
|
public ArgonProSkin(SkinInfo skin, IStorageResourceProvider resources)
|
|
: base(skin, resources)
|
|
{
|
|
}
|
|
}
|
|
}
|