mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
110 lines
4.0 KiB
C#
110 lines
4.0 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
|
using osu.Game.Rulesets.Mania.Skinning;
|
|
using osu.Game.Skinning;
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
{
|
|
/// <summary>
|
|
/// A <see cref="Drawable"/> which flows its contents according to the <see cref="Column"/>s in a <see cref="Stage"/>.
|
|
/// Content can be added to individual columns via <see cref="SetContentForColumn"/>.
|
|
/// </summary>
|
|
/// <typeparam name="TContent">The type of content in each column.</typeparam>
|
|
public class ColumnFlow<TContent> : CompositeDrawable
|
|
where TContent : Drawable
|
|
{
|
|
/// <summary>
|
|
/// All contents added to this <see cref="ColumnFlow{TContent}"/>.
|
|
/// </summary>
|
|
public IReadOnlyList<TContent> Content => columns.Children.Select(c => c.Count == 0 ? null : (TContent)c.Child).ToList();
|
|
|
|
private readonly FillFlowContainer<Container> columns;
|
|
private readonly StageDefinition stageDefinition;
|
|
|
|
public ColumnFlow(StageDefinition stageDefinition)
|
|
{
|
|
this.stageDefinition = stageDefinition;
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
Masking = true;
|
|
|
|
InternalChild = columns = new FillFlowContainer<Container>
|
|
{
|
|
RelativeSizeAxes = Axes.Y,
|
|
AutoSizeAxes = Axes.X,
|
|
Direction = FillDirection.Horizontal,
|
|
};
|
|
|
|
for (int i = 0; i < stageDefinition.Columns; i++)
|
|
columns.Add(new Container { RelativeSizeAxes = Axes.Y });
|
|
}
|
|
|
|
private ISkinSource currentSkin;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(ISkinSource skin)
|
|
{
|
|
currentSkin = skin;
|
|
|
|
skin.SourceChanged += onSkinChanged;
|
|
onSkinChanged();
|
|
}
|
|
|
|
private void onSkinChanged()
|
|
{
|
|
for (int i = 0; i < stageDefinition.Columns; i++)
|
|
{
|
|
if (i > 0)
|
|
{
|
|
float spacing = currentSkin.GetConfig<ManiaSkinConfigurationLookup, float>(
|
|
new ManiaSkinConfigurationLookup(LegacyManiaSkinConfigurationLookups.ColumnSpacing, i - 1))
|
|
?.Value ?? Stage.COLUMN_SPACING;
|
|
|
|
columns[i].Margin = new MarginPadding { Left = spacing };
|
|
}
|
|
|
|
float? width = currentSkin.GetConfig<ManiaSkinConfigurationLookup, float>(
|
|
new ManiaSkinConfigurationLookup(LegacyManiaSkinConfigurationLookups.ColumnWidth, i))
|
|
?.Value;
|
|
|
|
if (width == null)
|
|
// only used by default skin (legacy skins get defaults set in LegacyManiaSkinConfiguration)
|
|
columns[i].Width = stageDefinition.IsSpecialColumn(i) ? Column.SPECIAL_COLUMN_WIDTH : Column.COLUMN_WIDTH;
|
|
else
|
|
columns[i].Width = width.Value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the content of one of the columns of this <see cref="ColumnFlow{TContent}"/>.
|
|
/// </summary>
|
|
/// <param name="column">The index of the column to set the content of.</param>
|
|
/// <param name="content">The content.</param>
|
|
public void SetContentForColumn(int column, TContent content) => columns[column].Child = content;
|
|
|
|
public new MarginPadding Padding
|
|
{
|
|
get => base.Padding;
|
|
set => base.Padding = value;
|
|
}
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
{
|
|
base.Dispose(isDisposing);
|
|
|
|
if (currentSkin != null)
|
|
currentSkin.SourceChanged -= onSkinChanged;
|
|
}
|
|
}
|
|
}
|