2021-04-28 17:34:34 +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.
|
|
|
|
|
2022-03-11 22:27:27 +08:00
|
|
|
using System;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Extensions.TypeExtensions;
|
2021-05-13 16:03:17 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-11-09 15:03:29 +08:00
|
|
|
using osu.Game.Configuration;
|
2021-05-13 16:03:17 +08:00
|
|
|
|
2021-04-30 11:42:32 +08:00
|
|
|
namespace osu.Game.Skinning
|
2021-04-28 17:34:34 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Denotes a drawable which, as a drawable, can be adjusted via skinning specifications.
|
|
|
|
/// </summary>
|
2022-11-09 15:03:29 +08:00
|
|
|
/// <remarks>
|
|
|
|
/// Attaching this interface to any <see cref="IDrawable"/> will make it serialisable to skin settings.
|
|
|
|
/// Adding <see cref="SettingSourceAttribute"/> annotated bindables will also serialise these settings alongside each instance.
|
|
|
|
/// </remarks>
|
2021-05-13 16:06:00 +08:00
|
|
|
public interface ISkinnableDrawable : IDrawable
|
2021-04-28 17:34:34 +08:00
|
|
|
{
|
2021-05-13 16:03:17 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Whether this component should be editable by an end user.
|
|
|
|
/// </summary>
|
|
|
|
bool IsEditable => true;
|
2021-06-07 11:47:47 +08:00
|
|
|
|
|
|
|
/// <summary>
|
2021-06-22 15:40:48 +08:00
|
|
|
/// In the context of the skin layout editor, whether this <see cref="ISkinnableDrawable"/> has a permanent anchor defined.
|
|
|
|
/// If <see langword="false"/>, this <see cref="ISkinnableDrawable"/>'s <see cref="Drawable.Anchor"/> is automatically determined by proximity,
|
|
|
|
/// If <see langword="true"/>, a fixed anchor point has been defined.
|
2021-06-07 11:47:47 +08:00
|
|
|
/// </summary>
|
2021-06-08 20:22:35 +08:00
|
|
|
bool UsesFixedAnchor { get; set; }
|
2022-03-11 22:27:27 +08:00
|
|
|
|
|
|
|
void CopyAdjustedSetting(IBindable target, object source)
|
|
|
|
{
|
|
|
|
if (source is IBindable sourceBindable)
|
|
|
|
{
|
|
|
|
// copy including transfer of default values.
|
|
|
|
target.BindTo(sourceBindable);
|
|
|
|
target.UnbindFrom(sourceBindable);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(target is IParseable parseable))
|
|
|
|
throw new InvalidOperationException($"Bindable type {target.GetType().ReadableName()} is not {nameof(IParseable)}.");
|
|
|
|
|
|
|
|
parseable.Parse(source);
|
|
|
|
}
|
|
|
|
}
|
2021-04-28 17:34:34 +08:00
|
|
|
}
|
|
|
|
}
|