1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:07:24 +08:00
osu-lazer/osu.Game/Graphics/Containers/SectionsContainer.cs

187 lines
6.0 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Linq;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Graphics.Containers
{
/// <summary>
/// A container that can scroll to each section inside it.
/// </summary>
2017-06-09 16:24:19 +08:00
public class SectionsContainer<T> : Container<T>
where T : Drawable
{
private Drawable expandableHeader, fixedHeader, footer, headerBackground;
public readonly ScrollContainer ScrollContainer;
2017-06-09 16:24:19 +08:00
private readonly Container headerBackgroundContainer;
2017-06-12 14:39:49 +08:00
private readonly FlowContainer<T> scrollContentContainer;
2017-06-09 16:24:19 +08:00
2017-06-12 14:39:49 +08:00
protected override Container<T> Content => scrollContentContainer;
public Drawable ExpandableHeader
{
get { return expandableHeader; }
set
{
if (value == expandableHeader) return;
2017-06-09 16:24:19 +08:00
expandableHeader?.Expire();
expandableHeader = value;
2017-05-21 02:11:55 +08:00
if (value == null) return;
2017-06-09 16:24:19 +08:00
AddInternal(expandableHeader);
lastKnownScroll = float.NaN;
}
}
public Drawable FixedHeader
{
get { return fixedHeader; }
set
{
if (value == fixedHeader) return;
2017-06-09 16:24:19 +08:00
fixedHeader?.Expire();
fixedHeader = value;
2017-05-21 02:11:55 +08:00
if (value == null) return;
2017-06-09 16:24:19 +08:00
AddInternal(fixedHeader);
lastKnownScroll = float.NaN;
}
}
2017-05-21 03:44:03 +08:00
public Drawable Footer
{
get { return footer; }
set
{
if (value == footer) return;
if (footer != null)
ScrollContainer.Remove(footer);
footer = value;
if (value == null) return;
footer.Anchor |= Anchor.y2;
footer.Origin |= Anchor.y2;
ScrollContainer.Add(footer);
lastKnownScroll = float.NaN;
}
}
public Drawable HeaderBackground
{
get { return headerBackground; }
set
{
if (value == headerBackground) return;
headerBackgroundContainer.Clear();
headerBackground = value;
if (value == null) return;
headerBackgroundContainer.Add(headerBackground);
lastKnownScroll = float.NaN;
}
}
2017-06-09 16:24:19 +08:00
public Bindable<T> SelectedSection { get; } = new Bindable<T>();
2017-06-09 16:24:19 +08:00
protected virtual FlowContainer<T> CreateScrollContentContainer()
=> new FillFlowContainer<T>
2017-05-20 07:20:46 +08:00
{
Direction = FillDirection.Vertical,
2017-06-09 14:53:00 +08:00
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
2017-05-20 07:20:46 +08:00
};
2017-06-09 16:24:19 +08:00
public override void Add(T drawable)
{
2017-06-09 16:24:19 +08:00
base.Add(drawable);
lastKnownScroll = float.NaN;
}
2017-05-21 03:44:03 +08:00
private float headerHeight, footerHeight;
2017-05-21 04:48:43 +08:00
private readonly MarginPadding originalSectionsMargin;
2017-05-21 03:44:03 +08:00
private void updateSectionsMargin()
{
2017-06-09 16:24:19 +08:00
if (!Children.Any()) return;
2017-05-21 03:44:03 +08:00
var newMargin = originalSectionsMargin;
2017-05-21 02:11:55 +08:00
newMargin.Top += headerHeight;
2017-05-21 03:44:03 +08:00
newMargin.Bottom += footerHeight;
2017-06-12 14:39:49 +08:00
scrollContentContainer.Margin = newMargin;
}
public SectionsContainer()
{
2017-06-09 16:24:19 +08:00
AddInternal(ScrollContainer = new ScrollContainer()
{
2017-05-20 07:20:46 +08:00
RelativeSizeAxes = Axes.Both,
2017-06-09 14:53:00 +08:00
Masking = true,
2017-06-12 14:39:49 +08:00
Children = new Drawable[] { scrollContentContainer = CreateScrollContentContainer() },
2017-06-09 13:37:55 +08:00
Depth = float.MaxValue
});
2017-06-09 16:24:19 +08:00
AddInternal(headerBackgroundContainer = new Container
2017-06-09 13:37:55 +08:00
{
RelativeSizeAxes = Axes.X,
Depth = float.MaxValue / 2
});
2017-06-12 14:39:49 +08:00
originalSectionsMargin = scrollContentContainer.Margin;
}
2017-05-21 04:48:43 +08:00
private float lastKnownScroll;
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
2017-05-21 04:48:43 +08:00
float headerH = (ExpandableHeader?.LayoutSize.Y ?? 0) + (FixedHeader?.LayoutSize.Y ?? 0);
float footerH = Footer?.LayoutSize.Y ?? 0;
if (headerH != headerHeight || footerH != footerHeight)
2017-05-21 02:11:55 +08:00
{
2017-05-21 04:48:43 +08:00
headerHeight = headerH;
footerHeight = footerH;
2017-05-21 03:44:03 +08:00
updateSectionsMargin();
2017-05-21 02:11:55 +08:00
}
float currentScroll = Math.Max(0, ScrollContainer.Current);
if (currentScroll != lastKnownScroll)
{
lastKnownScroll = currentScroll;
if (expandableHeader != null && fixedHeader != null)
2017-05-21 02:11:55 +08:00
{
float offset = Math.Min(expandableHeader.LayoutSize.Y, currentScroll);
2017-05-21 02:11:55 +08:00
expandableHeader.Y = -offset;
fixedHeader.Y = -offset + expandableHeader.LayoutSize.Y;
2017-05-21 02:11:55 +08:00
}
headerBackgroundContainer.Height = (ExpandableHeader?.LayoutSize.Y ?? 0) + (FixedHeader?.LayoutSize.Y ?? 0);
headerBackgroundContainer.Y = ExpandableHeader?.Y ?? 0;
2017-06-09 16:24:19 +08:00
T bestMatch = null;
float minDiff = float.MaxValue;
2017-06-09 16:24:19 +08:00
foreach (var section in Children)
{
float diff = Math.Abs(ScrollContainer.GetChildPosInContent(section) - currentScroll);
if (diff < minDiff)
{
minDiff = diff;
bestMatch = section;
}
}
if (bestMatch != null)
SelectedSection.Value = bestMatch;
}
}
}
}