1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game/Skinning/SkinnableDrawable.cs

66 lines
2.1 KiB
C#
Raw Normal View History

2018-02-22 16:33:47 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Framework.Graphics;
using OpenTK;
2018-02-22 16:33:47 +08:00
namespace osu.Game.Skinning
{
public class SkinnableDrawable : SkinnableDrawable<Drawable>
{
public SkinnableDrawable(string name, Func<string, Drawable> defaultImplementation, bool fallback = true, bool restrictSize = true)
: base(name, defaultImplementation, fallback, restrictSize)
2018-02-22 16:33:47 +08:00
{
}
}
public class SkinnableDrawable<T> : SkinReloadableDrawable
2018-02-22 16:33:47 +08:00
where T : Drawable
{
private readonly Func<string, T> createDefault;
2018-02-22 16:33:47 +08:00
private readonly string componentName;
2018-02-22 16:33:47 +08:00
/// <summary>
/// Whether a user-skin drawable should be limited to the size of our parent.
/// </summary>
public readonly bool RestrictSize;
public SkinnableDrawable(string name, Func<string, T> defaultImplementation, bool fallback = true, bool restrictSize = true) : base(fallback)
2018-02-22 16:33:47 +08:00
{
componentName = name;
createDefault = defaultImplementation;
RestrictSize = restrictSize;
2018-02-22 16:33:47 +08:00
RelativeSizeAxes = Axes.Both;
2018-02-22 16:33:47 +08:00
}
protected override void SkinChanged(Skin skin, bool allowFallback)
2018-02-22 16:33:47 +08:00
{
var drawable = skin.GetDrawableComponent(componentName);
if (drawable != null)
{
if (RestrictSize)
{
drawable.RelativeSizeAxes = Axes.Both;
drawable.Size = Vector2.One;
drawable.FillMode = FillMode.Fit;
}
}
else if (allowFallback)
drawable = createDefault(componentName);
2018-02-22 16:33:47 +08:00
if (drawable != null)
{
drawable.Origin = Anchor.Centre;
drawable.Anchor = Anchor.Centre;
2018-02-22 16:33:47 +08:00
InternalChild = drawable;
}
2018-02-22 16:33:47 +08:00
else
ClearInternal();
}
}
}