mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
90 lines
3.1 KiB
C#
90 lines
3.1 KiB
C#
// 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.Collections.Generic;
|
|
|
|
namespace osu.Game.Screens.Select.Carousel
|
|
{
|
|
/// <summary>
|
|
/// A group which ensures only one child is selected.
|
|
/// </summary>
|
|
public class CarouselGroup : CarouselItem
|
|
{
|
|
protected override DrawableCarouselItem CreateDrawableRepresentation() => null;
|
|
|
|
public IReadOnlyList<CarouselItem> Children => InternalChildren;
|
|
|
|
protected List<CarouselItem> InternalChildren = new List<CarouselItem>();
|
|
|
|
public override List<DrawableCarouselItem> Drawables
|
|
{
|
|
get
|
|
{
|
|
var drawables = base.Drawables;
|
|
foreach (var c in InternalChildren)
|
|
drawables.AddRange(c.Drawables);
|
|
return drawables;
|
|
}
|
|
}
|
|
|
|
public virtual void RemoveChild(CarouselItem i)
|
|
{
|
|
InternalChildren.Remove(i);
|
|
|
|
// it's important we do the deselection after removing, so any further actions based on
|
|
// State.ValueChanged make decisions post-removal.
|
|
i.State.Value = CarouselItemState.Collapsed;
|
|
}
|
|
|
|
public virtual void AddChild(CarouselItem i)
|
|
{
|
|
i.State.ValueChanged += v => ChildItemStateChanged(i, v);
|
|
InternalChildren.Add(i);
|
|
}
|
|
|
|
public CarouselGroup(List<CarouselItem> items = null)
|
|
{
|
|
if (items != null) InternalChildren = items;
|
|
|
|
State.ValueChanged += v =>
|
|
{
|
|
switch (v)
|
|
{
|
|
case CarouselItemState.Collapsed:
|
|
case CarouselItemState.NotSelected:
|
|
InternalChildren.ForEach(c => c.State.Value = CarouselItemState.Collapsed);
|
|
break;
|
|
case CarouselItemState.Selected:
|
|
InternalChildren.ForEach(c =>
|
|
{
|
|
if (c.State == CarouselItemState.Collapsed) c.State.Value = CarouselItemState.NotSelected;
|
|
});
|
|
break;
|
|
}
|
|
};
|
|
}
|
|
|
|
public override void Filter(FilterCriteria criteria)
|
|
{
|
|
base.Filter(criteria);
|
|
InternalChildren.Sort((x, y) => x.CompareTo(criteria, y));
|
|
InternalChildren.ForEach(c => c.Filter(criteria));
|
|
}
|
|
|
|
protected virtual void ChildItemStateChanged(CarouselItem item, CarouselItemState value)
|
|
{
|
|
// ensure we are the only item selected
|
|
if (value == CarouselItemState.Selected)
|
|
{
|
|
foreach (var b in InternalChildren)
|
|
{
|
|
if (item == b) continue;
|
|
b.State.Value = CarouselItemState.NotSelected;
|
|
}
|
|
|
|
State.Value = CarouselItemState.Selected;
|
|
}
|
|
}
|
|
}
|
|
}
|