1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:52:55 +08:00

Merge branch 'master' of https://github.com/ppy/osu into linkify-metadata

This commit is contained in:
unknown 2020-01-30 12:31:17 +08:00
commit 0d3ccae1c2
5 changed files with 73 additions and 42 deletions

View File

@ -16,7 +16,8 @@ namespace osu.Game.Tests.Visual.UserInterface
{ {
public override IReadOnlyList<Type> RequiredTypes => new[] public override IReadOnlyList<Type> RequiredTypes => new[]
{ {
typeof(FooterButtonMods) typeof(FooterButtonMods),
typeof(FooterButton)
}; };
private readonly TestFooterButtonMods footerButtonMods; private readonly TestFooterButtonMods footerButtonMods;

View File

@ -41,7 +41,7 @@ namespace osu.Game.Screens.Play.HUD
} }
} }
private readonly FillFlowContainer<ModIcon> iconsContainer; protected readonly FillFlowContainer<ModIcon> IconsContainer;
private readonly OsuSpriteText unrankedText; private readonly OsuSpriteText unrankedText;
public ModDisplay() public ModDisplay()
@ -50,7 +50,7 @@ namespace osu.Game.Screens.Play.HUD
Children = new Drawable[] Children = new Drawable[]
{ {
iconsContainer = new ReverseChildIDFillFlowContainer<ModIcon> IconsContainer = new ReverseChildIDFillFlowContainer<ModIcon>
{ {
Anchor = Anchor.TopCentre, Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre, Origin = Anchor.TopCentre,
@ -69,11 +69,11 @@ namespace osu.Game.Screens.Play.HUD
Current.ValueChanged += mods => Current.ValueChanged += mods =>
{ {
iconsContainer.Clear(); IconsContainer.Clear();
foreach (Mod mod in mods.NewValue) foreach (Mod mod in mods.NewValue)
{ {
iconsContainer.Add(new ModIcon(mod) { Scale = new Vector2(0.6f) }); IconsContainer.Add(new ModIcon(mod) { Scale = new Vector2(0.6f) });
} }
if (IsLoaded) if (IsLoaded)
@ -92,7 +92,7 @@ namespace osu.Game.Screens.Play.HUD
base.LoadComplete(); base.LoadComplete();
appearTransform(); appearTransform();
iconsContainer.FadeInFromZero(fade_duration, Easing.OutQuint); IconsContainer.FadeInFromZero(fade_duration, Easing.OutQuint);
} }
private void appearTransform() private void appearTransform()
@ -104,17 +104,17 @@ namespace osu.Game.Screens.Play.HUD
expand(); expand();
using (iconsContainer.BeginDelayedSequence(1200)) using (IconsContainer.BeginDelayedSequence(1200))
contract(); contract();
} }
private void expand() private void expand()
{ {
if (AllowExpand) if (AllowExpand)
iconsContainer.TransformSpacingTo(new Vector2(5, 0), 500, Easing.OutQuint); IconsContainer.TransformSpacingTo(new Vector2(5, 0), 500, Easing.OutQuint);
} }
private void contract() => iconsContainer.TransformSpacingTo(new Vector2(-25, 0), 500, Easing.OutQuint); private void contract() => IconsContainer.TransformSpacingTo(new Vector2(-25, 0), 500, Easing.OutQuint);
protected override bool OnHover(HoverEvent e) protected override bool OnHover(HoverEvent e)
{ {

View File

@ -56,6 +56,7 @@ namespace osu.Game.Screens.Select
} }
} }
protected FillFlowContainer ButtonContentContainer;
protected readonly Container TextContainer; protected readonly Container TextContainer;
protected readonly SpriteText SpriteText; protected readonly SpriteText SpriteText;
private readonly Box box; private readonly Box box;
@ -80,15 +81,36 @@ namespace osu.Game.Screens.Select
EdgeSmoothness = new Vector2(2, 0), EdgeSmoothness = new Vector2(2, 0),
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
}, },
TextContainer = new Container new Container
{ {
Size = new Vector2(100 - SHEAR_WIDTH, 50), AutoSizeAxes = Axes.Both,
Shear = -SHEAR, Children = new Drawable[]
Child = SpriteText = new OsuSpriteText
{ {
Anchor = Anchor.Centre, ButtonContentContainer = new FillFlowContainer
Origin = Anchor.Centre, {
} Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Direction = FillDirection.Horizontal,
Shear = -SHEAR,
AutoSizeAxes = Axes.X,
Height = 50,
Spacing = new Vector2(15, 0),
Children = new Drawable[]
{
TextContainer = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
AutoSizeAxes = Axes.Both,
Child = SpriteText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
}
},
},
},
},
}, },
}; };
} }
@ -97,6 +119,19 @@ namespace osu.Game.Screens.Select
public Action HoverLost; public Action HoverLost;
public Key? Hotkey; public Key? Hotkey;
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
float horizontalMargin = (100 - TextContainer.Width) / 2;
ButtonContentContainer.Padding = new MarginPadding
{
Left = horizontalMargin,
// right side margin offset to compensate for shear
Right = horizontalMargin - SHEAR_WIDTH / 2
};
}
protected override bool OnHover(HoverEvent e) protected override bool OnHover(HoverEvent e)
{ {
Hovered?.Invoke(); Hovered?.Invoke();

View File

@ -3,7 +3,6 @@
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Screens.Play.HUD; using osu.Game.Screens.Play.HUD;
using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Mods;
using System.Collections.Generic; using System.Collections.Generic;
@ -34,31 +33,18 @@ namespace osu.Game.Screens.Select
public FooterButtonMods() public FooterButtonMods()
{ {
Add(new FillFlowContainer ButtonContentContainer.Add(modDisplay = new FooterModDisplay
{ {
Anchor = Anchor.CentreLeft, Anchor = Anchor.Centre,
Origin = Anchor.CentreLeft, Origin = Anchor.Centre,
Direction = FillDirection.Horizontal, DisplayUnrankedText = false,
Shear = -SHEAR, Scale = new Vector2(0.8f)
Children = new Drawable[] });
{ ButtonContentContainer.Add(MultiplierText = new OsuSpriteText
modDisplay = new FooterModDisplay {
{ Anchor = Anchor.Centre,
Anchor = Anchor.Centre, Origin = Anchor.Centre,
Origin = Anchor.Centre, Font = OsuFont.GetFont(weight: FontWeight.Bold),
DisplayUnrankedText = false,
Scale = new Vector2(0.8f)
},
MultiplierText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(weight: FontWeight.Bold),
Margin = new MarginPadding { Right = 10 }
}
},
AutoSizeAxes = Axes.Both,
Margin = new MarginPadding { Left = 70 }
}); });
} }
@ -92,6 +78,11 @@ namespace osu.Game.Screens.Select
MultiplierText.FadeColour(lowMultiplierColour, 200); MultiplierText.FadeColour(lowMultiplierColour, 200);
else else
MultiplierText.FadeColour(Color4.White, 200); MultiplierText.FadeColour(Color4.White, 200);
if (Current.Value?.Count > 0)
modDisplay.FadeIn();
else
modDisplay.FadeOut();
} }
private class FooterModDisplay : ModDisplay private class FooterModDisplay : ModDisplay
@ -101,6 +92,7 @@ namespace osu.Game.Screens.Select
public FooterModDisplay() public FooterModDisplay()
{ {
AllowExpand = false; AllowExpand = false;
IconsContainer.Margin = new MarginPadding();
} }
} }
} }

View File

@ -24,8 +24,11 @@ namespace osu.Game.Screens.Select
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
Text = @"rewind", Text = @"rewind",
Alpha = 0 Alpha = 0,
}); });
// force both text sprites to always be present to avoid width flickering while they're being swapped out
SpriteText.AlwaysPresent = secondaryText.AlwaysPresent = true;
} }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]