2019-06-24 13:39:20 +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;
|
|
|
|
using osu.Framework.Allocation;
|
2019-07-19 17:38:24 +08:00
|
|
|
using osu.Framework.Graphics;
|
2019-06-24 13:39:20 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2019-06-24 14:25:01 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A skinnable element which uses a stable sprite and can therefore share implementation logic.
|
|
|
|
/// </summary>
|
2019-07-19 17:38:24 +08:00
|
|
|
public class SkinnableSprite : SkinnableDrawable
|
2019-06-24 13:39:20 +08:00
|
|
|
{
|
2019-06-24 14:25:01 +08:00
|
|
|
protected override bool ApplySizeRestrictionsToDefault => true;
|
2019-06-24 13:39:20 +08:00
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private TextureStore textures { get; set; }
|
|
|
|
|
2019-12-06 13:40:45 +08:00
|
|
|
public SkinnableSprite(string textureName, Func<ISkinSource, bool> allowFallback = null, ConfineMode confineMode = ConfineMode.NoScaling)
|
2019-09-03 13:21:54 +08:00
|
|
|
: base(new SpriteComponent(textureName), allowFallback, confineMode)
|
2019-06-24 13:39:20 +08:00
|
|
|
{
|
|
|
|
}
|
2019-06-24 14:27:46 +08:00
|
|
|
|
2020-11-18 15:18:27 +08:00
|
|
|
protected override Drawable CreateDefault(ISkinComponent component)
|
|
|
|
{
|
|
|
|
var texture = textures.Get(component.LookupName);
|
|
|
|
|
|
|
|
if (texture == null)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
return new Sprite { Texture = texture };
|
|
|
|
}
|
2019-09-03 13:21:54 +08:00
|
|
|
|
|
|
|
private class SpriteComponent : ISkinComponent
|
|
|
|
{
|
|
|
|
public SpriteComponent(string textureName)
|
|
|
|
{
|
2019-11-12 17:45:42 +08:00
|
|
|
LookupName = textureName;
|
2019-09-03 13:21:54 +08:00
|
|
|
}
|
|
|
|
|
2019-11-12 17:45:42 +08:00
|
|
|
public string LookupName { get; }
|
2019-09-03 13:21:54 +08:00
|
|
|
}
|
2019-06-24 13:39:20 +08:00
|
|
|
}
|
|
|
|
}
|