mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 21:03:08 +08:00
Re-style multiplayer header
This commit is contained in:
parent
01fa664b7d
commit
7c1dd43899
@ -1,12 +1,14 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// 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.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using System.Linq;
|
||||||
|
using Humanizer;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Extensions.Color4Extensions;
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Graphics.Shapes;
|
using osu.Framework.Graphics.Shapes;
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.UserInterface;
|
||||||
using osu.Framework.Screens;
|
using osu.Framework.Screens;
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
@ -19,41 +21,41 @@ namespace osu.Game.Screens.Multi
|
|||||||
{
|
{
|
||||||
public class Header : Container
|
public class Header : Container
|
||||||
{
|
{
|
||||||
public const float HEIGHT = 121;
|
public const float HEIGHT = 100;
|
||||||
|
|
||||||
private readonly HeaderBreadcrumbControl breadcrumbs;
|
|
||||||
|
|
||||||
public Header(ScreenStack stack)
|
public Header(ScreenStack stack)
|
||||||
{
|
{
|
||||||
MultiHeaderTitle title;
|
|
||||||
RelativeSizeAxes = Axes.X;
|
RelativeSizeAxes = Axes.X;
|
||||||
Height = HEIGHT;
|
Height = HEIGHT;
|
||||||
|
|
||||||
|
HeaderBreadcrumbControl breadcrumbs;
|
||||||
|
MultiHeaderTitle title;
|
||||||
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new Box
|
new Box
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Colour = Color4Extensions.FromHex(@"2f2043"),
|
Colour = Color4Extensions.FromHex(@"#1f1921"),
|
||||||
},
|
},
|
||||||
new Container
|
new Container
|
||||||
{
|
{
|
||||||
|
Anchor = Anchor.CentreLeft,
|
||||||
|
Origin = Anchor.CentreLeft,
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Padding = new MarginPadding { Horizontal = SearchableListOverlay.WIDTH_PADDING + OsuScreen.HORIZONTAL_OVERFLOW_PADDING },
|
Padding = new MarginPadding { Left = SearchableListOverlay.WIDTH_PADDING + OsuScreen.HORIZONTAL_OVERFLOW_PADDING },
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
title = new MultiHeaderTitle
|
title = new MultiHeaderTitle
|
||||||
{
|
{
|
||||||
Anchor = Anchor.CentreLeft,
|
Anchor = Anchor.CentreLeft,
|
||||||
Origin = Anchor.BottomLeft,
|
Origin = Anchor.CentreLeft,
|
||||||
X = -MultiHeaderTitle.ICON_WIDTH,
|
|
||||||
},
|
},
|
||||||
breadcrumbs = new HeaderBreadcrumbControl(stack)
|
breadcrumbs = new HeaderBreadcrumbControl(stack)
|
||||||
{
|
{
|
||||||
Anchor = Anchor.BottomLeft,
|
Anchor = Anchor.BottomLeft,
|
||||||
Origin = Anchor.BottomLeft,
|
Origin = Anchor.BottomLeft
|
||||||
RelativeSizeAxes = Axes.X,
|
}
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -62,37 +64,26 @@ namespace osu.Game.Screens.Multi
|
|||||||
{
|
{
|
||||||
if (screen.NewValue is IMultiplayerSubScreen multiScreen)
|
if (screen.NewValue is IMultiplayerSubScreen multiScreen)
|
||||||
title.Screen = multiScreen;
|
title.Screen = multiScreen;
|
||||||
|
|
||||||
|
if (breadcrumbs.Items.Any() && screen.NewValue == breadcrumbs.Items.First())
|
||||||
|
breadcrumbs.FadeOut(500, Easing.OutQuint);
|
||||||
|
else
|
||||||
|
breadcrumbs.FadeIn(500, Easing.OutQuint);
|
||||||
};
|
};
|
||||||
|
|
||||||
breadcrumbs.Current.TriggerChange();
|
breadcrumbs.Current.TriggerChange();
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
private class MultiHeaderTitle : CompositeDrawable
|
||||||
private void load(OsuColour colours)
|
|
||||||
{
|
{
|
||||||
breadcrumbs.StripColour = colours.Green;
|
|
||||||
}
|
|
||||||
|
|
||||||
private class MultiHeaderTitle : CompositeDrawable, IHasAccentColour
|
|
||||||
{
|
|
||||||
public const float ICON_WIDTH = icon_size + spacing;
|
|
||||||
|
|
||||||
private const float icon_size = 25;
|
|
||||||
private const float spacing = 6;
|
private const float spacing = 6;
|
||||||
private const int text_offset = 2;
|
|
||||||
|
|
||||||
private readonly SpriteIcon iconSprite;
|
private readonly OsuSpriteText dot;
|
||||||
private readonly OsuSpriteText title, pageText;
|
private readonly OsuSpriteText pageTitle;
|
||||||
|
|
||||||
public IMultiplayerSubScreen Screen
|
public IMultiplayerSubScreen Screen
|
||||||
{
|
{
|
||||||
set => pageText.Text = value.ShortTitle.ToLowerInvariant();
|
set => pageTitle.Text = value.ShortTitle.Titleize();
|
||||||
}
|
|
||||||
|
|
||||||
public Color4 AccentColour
|
|
||||||
{
|
|
||||||
get => pageText.Colour;
|
|
||||||
set => pageText.Colour = value;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public MultiHeaderTitle()
|
public MultiHeaderTitle()
|
||||||
@ -108,32 +99,26 @@ namespace osu.Game.Screens.Multi
|
|||||||
Direction = FillDirection.Horizontal,
|
Direction = FillDirection.Horizontal,
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
iconSprite = new SpriteIcon
|
new OsuSpriteText
|
||||||
{
|
|
||||||
Size = new Vector2(icon_size),
|
|
||||||
Anchor = Anchor.Centre,
|
|
||||||
Origin = Anchor.Centre
|
|
||||||
},
|
|
||||||
title = new OsuSpriteText
|
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Font = OsuFont.GetFont(size: 20, weight: FontWeight.Bold),
|
Font = OsuFont.GetFont(size: 24),
|
||||||
Margin = new MarginPadding { Bottom = text_offset }
|
Text = "Multiplayer"
|
||||||
},
|
},
|
||||||
new Circle
|
dot = new OsuSpriteText
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Size = new Vector2(4),
|
Font = OsuFont.GetFont(size: 24),
|
||||||
Colour = Color4.Gray,
|
Text = "·"
|
||||||
},
|
},
|
||||||
pageText = new OsuSpriteText
|
pageTitle = new OsuSpriteText
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Font = OsuFont.GetFont(size: 20),
|
Font = OsuFont.GetFont(size: 24),
|
||||||
Margin = new MarginPadding { Bottom = text_offset }
|
Text = "Lounge"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -143,9 +128,7 @@ namespace osu.Game.Screens.Multi
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(OsuColour colours)
|
private void load(OsuColour colours)
|
||||||
{
|
{
|
||||||
title.Text = "multi";
|
pageTitle.Colour = dot.Colour = colours.Yellow;
|
||||||
iconSprite.Icon = OsuIcon.Multi;
|
|
||||||
AccentColour = colours.Yellow;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,12 +137,28 @@ namespace osu.Game.Screens.Multi
|
|||||||
public HeaderBreadcrumbControl(ScreenStack stack)
|
public HeaderBreadcrumbControl(ScreenStack stack)
|
||||||
: base(stack)
|
: base(stack)
|
||||||
{
|
{
|
||||||
|
RelativeSizeAxes = Axes.X;
|
||||||
|
StripColour = Color4.Transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void LoadComplete()
|
protected override void LoadComplete()
|
||||||
{
|
{
|
||||||
base.LoadComplete();
|
base.LoadComplete();
|
||||||
AccentColour = Color4.White;
|
AccentColour = Color4Extensions.FromHex("#e35c99");
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override TabItem<IScreen> CreateTabItem(IScreen value) => new HeaderBreadcrumbTabItem(value)
|
||||||
|
{
|
||||||
|
AccentColour = AccentColour
|
||||||
|
};
|
||||||
|
|
||||||
|
private class HeaderBreadcrumbTabItem : BreadcrumbTabItem
|
||||||
|
{
|
||||||
|
public HeaderBreadcrumbTabItem(IScreen value)
|
||||||
|
: base(value)
|
||||||
|
{
|
||||||
|
Bar.Colour = Color4.Transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user