1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/BreadcrumbControl.cs

108 lines
3.8 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using osu.Framework;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.UserInterface;
using System.Linq;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.UserInterface
{
public class BreadcrumbControl<T> : OsuTabControl<T>
{
private const float padding = 10;
2019-12-30 13:26:49 +08:00
protected virtual float ItemChevronSize => 10;
protected override TabItem<T> CreateTabItem(T value) => new BreadcrumbTabItem(value, ItemChevronSize)
{
AccentColour = AccentColour,
};
2018-04-13 17:19:50 +08:00
2020-01-02 13:19:31 +08:00
protected override float StripWidth => base.StripWidth - (padding + ItemChevronSize);
2018-04-13 17:19:50 +08:00
2019-12-30 13:26:49 +08:00
public BreadcrumbControl()
2018-04-13 17:19:50 +08:00
{
Height = 32;
2018-04-13 17:19:50 +08:00
TabContainer.Spacing = new Vector2(padding, 0f);
Current.ValueChanged += index =>
2018-04-13 17:19:50 +08:00
{
foreach (var t in TabContainer.Children.OfType<BreadcrumbTabItem>())
{
var tIndex = TabContainer.IndexOf(t);
var tabIndex = TabContainer.IndexOf(TabMap[index.NewValue]);
2018-04-13 17:19:50 +08:00
t.State = tIndex < tabIndex ? Visibility.Hidden : Visibility.Visible;
t.Chevron.FadeTo(tIndex <= tabIndex ? 0f : 1f, 500, Easing.OutQuint);
}
};
}
protected class BreadcrumbTabItem : OsuTabItem, IStateful<Visibility>
2018-04-13 17:19:50 +08:00
{
public event Action<Visibility> StateChanged;
public readonly SpriteIcon Chevron;
//don't allow clicking between transitions and don't make the chevron clickable
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Alpha == 1f && Text.ReceivePositionalInputAt(screenSpacePos);
2018-04-13 17:19:50 +08:00
public override bool HandleNonPositionalInput => State == Visibility.Visible;
public override bool HandlePositionalInput => State == Visibility.Visible;
2018-04-13 17:19:50 +08:00
private Visibility state;
public Visibility State
{
get => state;
2018-04-13 17:19:50 +08:00
set
{
if (value == state) return;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
state = value;
const float transition_duration = 500;
if (State == Visibility.Visible)
{
this.FadeIn(transition_duration, Easing.OutQuint);
this.ScaleTo(new Vector2(1f), transition_duration, Easing.OutQuint);
}
else
{
this.FadeOut(transition_duration, Easing.OutQuint);
this.ScaleTo(new Vector2(0.8f, 1f), transition_duration, Easing.OutQuint);
}
StateChanged?.Invoke(State);
}
}
public override void Hide() => State = Visibility.Hidden;
public override void Show() => State = Visibility.Visible;
public BreadcrumbTabItem(T value, float itemChevronSize)
2019-02-28 12:31:40 +08:00
: base(value)
2018-04-13 17:19:50 +08:00
{
Text.Font = Text.Font.With(size: 18);
Text.Margin = new MarginPadding { Vertical = 8 };
Padding = new MarginPadding { Right = padding + itemChevronSize };
2018-04-13 17:19:50 +08:00
Add(Chevron = new SpriteIcon
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreLeft,
Size = new Vector2(itemChevronSize),
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Solid.ChevronRight,
2018-04-13 17:19:50 +08:00
Margin = new MarginPadding { Left = padding },
Alpha = 0f,
});
}
}
}
}