2019-08-30 13:39:02 +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.Linq;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2022-11-09 15:04:56 +08:00
|
|
|
public class GameplaySkinComponentLookup<T> : ISkinComponentLookup
|
2022-11-09 12:44:59 +08:00
|
|
|
where T : notnull
|
2019-08-30 13:39:02 +08:00
|
|
|
{
|
|
|
|
public readonly T Component;
|
|
|
|
|
2022-11-09 15:04:56 +08:00
|
|
|
public GameplaySkinComponentLookup(T component)
|
2019-08-30 13:39:02 +08:00
|
|
|
{
|
2019-08-30 14:29:44 +08:00
|
|
|
Component = component;
|
2019-08-30 13:39:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual string RulesetPrefix => string.Empty;
|
2022-12-16 17:16:26 +08:00
|
|
|
protected virtual string ComponentName => Component.ToString() ?? string.Empty;
|
2019-08-30 13:39:02 +08:00
|
|
|
|
|
|
|
public string LookupName =>
|
2020-10-16 17:52:29 +08:00
|
|
|
string.Join('/', new[] { "Gameplay", RulesetPrefix, ComponentName }.Where(s => !string.IsNullOrEmpty(s)));
|
2019-08-30 13:39:02 +08:00
|
|
|
}
|
|
|
|
}
|