1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game/Screens/Multi/Header.cs

103 lines
3.1 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-16 07:34:14 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Screens;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays.SearchableList;
2018-11-20 15:51:59 +08:00
using osuTK.Graphics;
2018-05-16 07:34:14 +08:00
namespace osu.Game.Screens.Multi
{
public class Header : Container
{
public const float HEIGHT = 121;
2018-05-17 17:19:55 +08:00
private readonly HeaderBreadcrumbControl breadcrumbs;
2018-05-16 07:34:14 +08:00
2019-01-23 19:52:00 +08:00
public Header(ScreenStack stack)
2018-05-16 07:34:14 +08:00
{
MultiHeaderTitle title;
2018-05-16 07:34:14 +08:00
RelativeSizeAxes = Axes.X;
Height = HEIGHT;
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.FromHex(@"2f2043"),
},
new Container
{
RelativeSizeAxes = Axes.Both,
2019-01-25 13:10:59 +08:00
Padding = new MarginPadding { Horizontal = SearchableListOverlay.WIDTH_PADDING + OsuScreen.HORIZONTAL_OVERFLOW_PADDING },
2018-05-16 07:34:14 +08:00
Children = new Drawable[]
{
2019-03-12 01:37:36 +08:00
title = new MultiHeaderTitle
2018-05-16 07:34:14 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.BottomLeft,
2019-04-04 06:24:42 +08:00
X = -ScreenTitle.ICON_WIDTH,
2018-05-16 07:34:14 +08:00
},
2019-01-23 19:52:00 +08:00
breadcrumbs = new HeaderBreadcrumbControl(stack)
2018-05-16 07:34:14 +08:00
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
RelativeSizeAxes = Axes.X,
},
},
},
};
2019-03-12 01:37:36 +08:00
breadcrumbs.Current.ValueChanged += screen =>
{
2019-03-12 01:37:36 +08:00
if (screen.NewValue is IMultiplayerSubScreen multiScreen)
title.Screen = multiScreen;
};
2018-05-16 07:34:14 +08:00
breadcrumbs.Current.TriggerChange();
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
breadcrumbs.StripColour = colours.Green;
}
2018-05-17 17:19:55 +08:00
2019-03-12 01:37:36 +08:00
private class MultiHeaderTitle : ScreenTitle
{
public IMultiplayerSubScreen Screen
{
set => Section = value.ShortTitle.ToLowerInvariant();
}
2019-03-12 01:37:36 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2019-04-23 13:44:43 +08:00
Title = "multi";
Icon = OsuIcon.Multi;
2019-03-12 01:37:36 +08:00
AccentColour = colours.Yellow;
}
}
2018-05-17 17:19:55 +08:00
private class HeaderBreadcrumbControl : ScreenBreadcrumbControl
{
2019-01-23 19:52:00 +08:00
public HeaderBreadcrumbControl(ScreenStack stack)
: base(stack)
2018-05-17 17:19:55 +08:00
{
}
protected override void LoadComplete()
{
base.LoadComplete();
AccentColour = Color4.White;
}
}
2018-05-16 07:34:14 +08:00
}
}