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

41 lines
1.3 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-05-11 08:35:26 +08:00
using System.Linq;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Screens;
namespace osu.Game.Graphics.UserInterface
{
2018-05-15 20:08:55 +08:00
/// <summary>
2019-04-25 16:36:17 +08:00
/// A <see cref="BreadcrumbControl{IScreen}"/> which follows the active screen (and allows navigation) in a <see cref="Screen"/> stack.
2018-05-15 20:08:55 +08:00
/// </summary>
2019-01-23 19:52:00 +08:00
public class ScreenBreadcrumbControl : BreadcrumbControl<IScreen>
2018-05-11 08:35:26 +08:00
{
2019-01-23 19:52:00 +08:00
public ScreenBreadcrumbControl(ScreenStack stack)
2018-05-11 08:35:26 +08:00
{
2019-01-23 19:52:00 +08:00
stack.ScreenPushed += onPushed;
stack.ScreenExited += onExited;
2018-05-11 08:35:26 +08:00
if (stack.CurrentScreen != null)
onPushed(null, stack.CurrentScreen);
Current.ValueChanged += current => current.NewValue.MakeCurrent();
2018-05-11 08:35:26 +08:00
}
2019-01-23 19:52:00 +08:00
private void onPushed(IScreen lastScreen, IScreen newScreen)
2018-05-11 08:35:26 +08:00
{
2019-01-23 19:52:00 +08:00
AddItem(newScreen);
Current.Value = newScreen;
2018-05-11 08:35:26 +08:00
}
2019-01-23 19:52:00 +08:00
private void onExited(IScreen lastScreen, IScreen newScreen)
2018-05-11 08:35:26 +08:00
{
if (newScreen != null)
Current.Value = newScreen;
2019-01-23 19:52:00 +08:00
Items.ToList().SkipWhile(s => s != Current.Value).Skip(1).ForEach(RemoveItem);
2018-05-11 08:35:26 +08:00
}
}
}