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.
|
|
|
|
|
2023-02-15 17:48:13 +08:00
|
|
|
using System;
|
2019-08-30 13:39:02 +08:00
|
|
|
using System.Linq;
|
2023-02-15 17:48:13 +08:00
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2019-08-30 13:39:02 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2023-02-15 17:48:13 +08:00
|
|
|
/// <summary>
|
2023-02-16 14:27:30 +08:00
|
|
|
/// A lookup type intended for use for skinnable gameplay components (not HUD level components).
|
2023-02-15 17:48:13 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// The most common usage of this class is for ruleset-specific skinning implementations, but it can also be used directly
|
|
|
|
/// (see <see cref="DrawableJudgement"/>'s usage for <see cref="HitResult"/>) where ruleset-agnostic elements are required.
|
|
|
|
/// </remarks>
|
|
|
|
/// <typeparam name="T">An enum lookup type.</typeparam>
|
2022-11-09 15:04:56 +08:00
|
|
|
public class GameplaySkinComponentLookup<T> : ISkinComponentLookup
|
2023-02-15 17:48:13 +08:00
|
|
|
where T : Enum
|
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;
|
2023-02-15 17:48:13 +08:00
|
|
|
protected virtual string ComponentName => Component.ToString();
|
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
|
|
|
}
|
|
|
|
}
|