2021-05-06 14:16:16 +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.
2021-05-11 16:48:08 +08:00
using System ;
2023-02-03 17:53:09 +08:00
using System.Collections.Generic ;
2021-05-10 21:36:20 +08:00
using System.Linq ;
2021-10-11 15:11:15 +08:00
using System.Threading ;
2021-05-11 16:48:08 +08:00
using osu.Framework.Bindables ;
2021-05-11 10:56:14 +08:00
using osu.Framework.Graphics ;
2023-02-15 16:24:34 +08:00
using osu.Framework.Graphics.Containers ;
2021-05-06 14:16:16 +08:00
2021-05-12 14:59:33 +08:00
namespace osu.Game.Skinning
2021-05-06 14:16:16 +08:00
{
2023-02-15 17:31:55 +08:00
/// <summary>
/// A container which holds many skinnable components, with functionality to add, remove and reload layouts.
/// Used to allow user customisation of skin layouts.
/// </summary>
/// <remarks>
/// This is currently used as a means of serialising skin layouts to files.
/// Currently, one json file in a skin will represent one <see cref="SkinComponentsContainer"/>, containing
/// the output of <see cref="ISerialisableDrawableContainer.CreateSerialisedInfo"/>.
/// </remarks>
public partial class SkinComponentsContainer : SkinReloadableDrawable , ISerialisableDrawableContainer
2021-05-06 14:16:16 +08:00
{
2023-02-15 16:24:34 +08:00
private Container ? content ;
2021-05-10 21:36:20 +08:00
2023-02-17 13:18:05 +08:00
/// <summary>
/// The lookup criteria which will be used to retrieve components from the active skin.
/// </summary>
2023-02-15 17:31:55 +08:00
public SkinComponentsContainerLookup Lookup { get ; }
2021-05-07 18:13:38 +08:00
2023-02-15 15:01:26 +08:00
public IBindableList < ISerialisableDrawable > Components = > components ;
2021-05-11 16:48:08 +08:00
2023-02-15 15:01:26 +08:00
private readonly BindableList < ISerialisableDrawable > components = new BindableList < ISerialisableDrawable > ( ) ;
2021-05-11 16:48:08 +08:00
2021-08-24 15:54:19 +08:00
public override bool IsPresent = > base . IsPresent | | Scheduler . HasPendingTasks ; // ensure that components are loaded even if the target container is hidden (ie. due to user toggle).
2021-08-24 14:18:27 +08:00
2021-06-16 18:52:58 +08:00
public bool ComponentsLoaded { get ; private set ; }
2022-11-09 12:44:59 +08:00
private CancellationTokenSource ? cancellationSource ;
2021-10-11 15:11:15 +08:00
2023-02-15 17:31:55 +08:00
public SkinComponentsContainer ( SkinComponentsContainerLookup lookup )
2021-05-07 18:13:38 +08:00
{
2023-02-15 17:31:55 +08:00
Lookup = lookup ;
2021-05-07 18:13:38 +08:00
}
2023-02-15 14:47:41 +08:00
public void Reload ( SerialisedDrawableInfo [ ] skinnableInfo )
2023-02-03 17:53:09 +08:00
{
var drawables = new List < Drawable > ( ) ;
foreach ( var i in skinnableInfo )
drawables . Add ( i . CreateInstance ( ) ) ;
2023-02-15 16:24:34 +08:00
Reload ( new Container
2023-02-03 17:53:09 +08:00
{
2023-02-15 16:24:34 +08:00
RelativeSizeAxes = Axes . Both ,
2023-02-03 17:53:09 +08:00
Children = drawables ,
} ) ;
}
2023-02-15 17:31:55 +08:00
public void Reload ( ) = > Reload ( CurrentSkin . GetDrawableComponent ( Lookup ) as Container ) ;
2023-02-03 17:53:09 +08:00
2023-02-15 16:24:34 +08:00
public void Reload ( Container ? componentsContainer )
2021-05-11 10:56:14 +08:00
{
ClearInternal ( ) ;
2021-05-11 16:48:08 +08:00
components . Clear ( ) ;
2021-06-16 18:52:58 +08:00
ComponentsLoaded = false ;
2021-05-11 16:48:08 +08:00
2023-02-16 18:25:55 +08:00
content = componentsContainer ? ? new Container
{
RelativeSizeAxes = Axes . Both
} ;
2021-05-11 10:56:14 +08:00
2021-10-11 15:11:15 +08:00
cancellationSource ? . Cancel ( ) ;
cancellationSource = null ;
2023-02-20 18:53:04 +08:00
LoadComponentAsync ( content , wrapper = >
2021-05-11 16:48:08 +08:00
{
2023-02-20 18:53:04 +08:00
AddInternal ( wrapper ) ;
components . AddRange ( wrapper . Children . OfType < ISerialisableDrawable > ( ) ) ;
2021-06-16 18:52:58 +08:00
ComponentsLoaded = true ;
2023-02-20 18:53:04 +08:00
} , ( cancellationSource = new CancellationTokenSource ( ) ) . Token ) ;
2021-05-11 10:56:14 +08:00
}
2023-02-15 15:28:42 +08:00
/// <inheritdoc cref="ISerialisableDrawableContainer"/>
2021-05-13 12:13:22 +08:00
/// <exception cref="NotSupportedException">Thrown when attempting to add an element to a target which is not supported by the current skin.</exception>
/// <exception cref="ArgumentException">Thrown if the provided instance is not a <see cref="Drawable"/>.</exception>
2023-02-15 15:01:26 +08:00
public void Add ( ISerialisableDrawable component )
2021-05-11 10:56:14 +08:00
{
2021-05-11 16:48:08 +08:00
if ( content = = null )
throw new NotSupportedException ( "Attempting to add a new component to a target container which is not supported by the current skin." ) ;
if ( ! ( component is Drawable drawable ) )
2021-05-15 04:16:37 +08:00
throw new ArgumentException ( $"Provided argument must be of type {nameof(Drawable)}." , nameof ( component ) ) ;
2021-05-11 16:48:08 +08:00
2021-05-11 10:56:14 +08:00
content . Add ( drawable ) ;
2021-05-11 16:48:08 +08:00
components . Add ( component ) ;
2021-05-11 10:56:14 +08:00
}
2023-02-15 15:28:42 +08:00
/// <inheritdoc cref="ISerialisableDrawableContainer"/>
2021-05-14 15:03:22 +08:00
/// <exception cref="NotSupportedException">Thrown when attempting to add an element to a target which is not supported by the current skin.</exception>
/// <exception cref="ArgumentException">Thrown if the provided instance is not a <see cref="Drawable"/>.</exception>
2023-02-22 16:45:38 +08:00
public void Remove ( ISerialisableDrawable component , bool disposeImmediately )
2021-05-14 15:03:22 +08:00
{
if ( content = = null )
2021-05-15 04:15:43 +08:00
throw new NotSupportedException ( "Attempting to remove a new component from a target container which is not supported by the current skin." ) ;
2021-05-14 15:03:22 +08:00
if ( ! ( component is Drawable drawable ) )
2021-05-15 04:16:37 +08:00
throw new ArgumentException ( $"Provided argument must be of type {nameof(Drawable)}." , nameof ( component ) ) ;
2021-05-14 15:03:22 +08:00
2023-02-22 16:45:38 +08:00
content . Remove ( drawable , disposeImmediately ) ;
2021-05-14 15:03:22 +08:00
components . Remove ( component ) ;
}
2021-05-27 13:50:42 +08:00
protected override void SkinChanged ( ISkinSource skin )
2021-05-07 17:18:29 +08:00
{
2021-05-27 13:50:42 +08:00
base . SkinChanged ( skin ) ;
2021-05-07 17:18:29 +08:00
2021-05-11 10:56:14 +08:00
Reload ( ) ;
2021-05-07 17:18:29 +08:00
}
2021-05-06 14:16:16 +08:00
}
}