1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Merge branch 'master' into system-title-basic

This commit is contained in:
Dean Herbert 2023-12-28 15:19:33 +09:00 committed by GitHub
commit be3fc45da5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 105 additions and 82 deletions

View File

@ -47,7 +47,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
private const float spinning_sample_initial_frequency = 1.0f; private const float spinning_sample_initial_frequency = 1.0f;
private const float spinning_sample_modulated_base_frequency = 0.5f; private const float spinning_sample_modulated_base_frequency = 0.5f;
private SkinnableSound maxBonusSample; private PausableSkinnableSound maxBonusSample;
/// <summary> /// <summary>
/// The amount of bonus score gained from spinning after the required number of spins, for display purposes. /// The amount of bonus score gained from spinning after the required number of spins, for display purposes.
@ -114,7 +114,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
Looping = true, Looping = true,
Frequency = { Value = spinning_sample_initial_frequency } Frequency = { Value = spinning_sample_initial_frequency }
}, },
maxBonusSample = new SkinnableSound maxBonusSample = new PausableSkinnableSound
{ {
MinimumSampleVolume = MINIMUM_SAMPLE_VOLUME, MinimumSampleVolume = MINIMUM_SAMPLE_VOLUME,
} }

View File

@ -20,7 +20,7 @@ namespace osu.Game.Overlays.Mods.Input
{ {
[Key.Q] = new[] { typeof(ModEasy) }, [Key.Q] = new[] { typeof(ModEasy) },
[Key.W] = new[] { typeof(ModNoFail) }, [Key.W] = new[] { typeof(ModNoFail) },
[Key.E] = new[] { typeof(ModHalfTime) }, [Key.E] = new[] { typeof(ModHalfTime), typeof(ModDaycore) },
[Key.A] = new[] { typeof(ModHardRock) }, [Key.A] = new[] { typeof(ModHardRock) },
[Key.S] = new[] { typeof(ModSuddenDeath), typeof(ModPerfect) }, [Key.S] = new[] { typeof(ModSuddenDeath), typeof(ModPerfect) },
[Key.D] = new[] { typeof(ModDoubleTime), typeof(ModNightcore) }, [Key.D] = new[] { typeof(ModDoubleTime), typeof(ModNightcore) },

View File

@ -224,9 +224,9 @@ namespace osu.Game.Overlays.Toolbar
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomLeft, Anchor = Anchor.BottomLeft,
Alpha = 0, Alpha = 0,
Height = 100, Height = 80,
Colour = ColourInfo.GradientVertical( Colour = ColourInfo.GradientVertical(
OsuColour.Gray(0).Opacity(0.9f), OsuColour.Gray(0).Opacity(0)), OsuColour.Gray(0f).Opacity(0.7f), OsuColour.Gray(0).Opacity(0)),
}, },
}; };
} }
@ -241,9 +241,9 @@ namespace osu.Game.Overlays.Toolbar
private void updateState() private void updateState()
{ {
if (ShowGradient.Value) if (ShowGradient.Value)
gradientBackground.FadeIn(transition_time, Easing.OutQuint); gradientBackground.FadeIn(2500, Easing.OutQuint);
else else
gradientBackground.FadeOut(transition_time, Easing.OutQuint); gradientBackground.FadeOut(200, Easing.OutQuint);
} }
} }

View File

@ -7,7 +7,6 @@ using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Extensions.EnumExtensions; using osu.Framework.Extensions.EnumExtensions;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Effects;
using osu.Framework.Graphics.Shapes; using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.Sprites;
using osu.Framework.Input; using osu.Framework.Input;
@ -74,6 +73,8 @@ namespace osu.Game.Overlays.Toolbar
private readonly SpriteText keyBindingTooltip; private readonly SpriteText keyBindingTooltip;
protected FillFlowContainer Flow; protected FillFlowContainer Flow;
protected readonly Container BackgroundContent;
[Resolved] [Resolved]
private RealmAccess realm { get; set; } = null!; private RealmAccess realm { get; set; } = null!;
@ -82,21 +83,33 @@ namespace osu.Game.Overlays.Toolbar
Width = Toolbar.HEIGHT; Width = Toolbar.HEIGHT;
RelativeSizeAxes = Axes.Y; RelativeSizeAxes = Axes.Y;
Padding = new MarginPadding(3);
Children = new Drawable[] Children = new Drawable[]
{ {
HoverBackground = new Box BackgroundContent = new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(80).Opacity(180), Masking = true,
Blending = BlendingParameters.Additive, CornerRadius = 6,
Alpha = 0, CornerExponent = 3f,
}, Children = new Drawable[]
flashBackground = new Box {
{ HoverBackground = new Box
RelativeSizeAxes = Axes.Both, {
Alpha = 0, RelativeSizeAxes = Axes.Both,
Colour = Color4.White.Opacity(100), Colour = OsuColour.Gray(80).Opacity(180),
Blending = BlendingParameters.Additive, Blending = BlendingParameters.Additive,
Alpha = 0,
},
flashBackground = new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
Colour = Color4.White.Opacity(100),
Blending = BlendingParameters.Additive,
},
}
}, },
Flow = new FillFlowContainer Flow = new FillFlowContainer
{ {
@ -170,7 +183,7 @@ namespace osu.Game.Overlays.Toolbar
protected override bool OnClick(ClickEvent e) protected override bool OnClick(ClickEvent e)
{ {
flashBackground.FadeOutFromOne(800, Easing.OutQuint); flashBackground.FadeIn(50).Then().FadeOutFromOne(800, Easing.OutQuint);
tooltipContainer.FadeOut(100); tooltipContainer.FadeOut(100);
return base.OnClick(e); return base.OnClick(e);
} }
@ -219,14 +232,6 @@ namespace osu.Game.Overlays.Toolbar
public OpaqueBackground() public OpaqueBackground()
{ {
RelativeSizeAxes = Axes.Both; RelativeSizeAxes = Axes.Both;
Masking = true;
MaskingSmoothness = 0;
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Shadow,
Colour = Color4.Black.Opacity(40),
Radius = 5,
};
Children = new Drawable[] Children = new Drawable[]
{ {

View File

@ -42,21 +42,33 @@ namespace osu.Game.Overlays.Toolbar
clockDisplayMode = config.GetBindable<ToolbarClockDisplayMode>(OsuSetting.ToolbarClockDisplayMode); clockDisplayMode = config.GetBindable<ToolbarClockDisplayMode>(OsuSetting.ToolbarClockDisplayMode);
prefer24HourTime = config.GetBindable<bool>(OsuSetting.Prefer24HourTime); prefer24HourTime = config.GetBindable<bool>(OsuSetting.Prefer24HourTime);
Padding = new MarginPadding(3);
Children = new Drawable[] Children = new Drawable[]
{ {
hoverBackground = new Box new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(80).Opacity(180), Masking = true,
Blending = BlendingParameters.Additive, CornerRadius = 6,
Alpha = 0, CornerExponent = 3f,
}, Children = new Drawable[]
flashBackground = new Box {
{ hoverBackground = new Box
RelativeSizeAxes = Axes.Both, {
Alpha = 0, RelativeSizeAxes = Axes.Both,
Colour = Color4.White.Opacity(100), Colour = OsuColour.Gray(80).Opacity(180),
Blending = BlendingParameters.Additive, Blending = BlendingParameters.Additive,
Alpha = 0,
},
flashBackground = new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
Colour = Color4.White.Opacity(100),
Blending = BlendingParameters.Additive,
},
}
}, },
new FillFlowContainer new FillFlowContainer
{ {

View File

@ -3,6 +3,7 @@
#nullable disable #nullable disable
using osu.Framework.Allocation;
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics; using osu.Framework.Graphics;
@ -14,7 +15,7 @@ namespace osu.Game.Overlays.Toolbar
{ {
public partial class ToolbarOverlayToggleButton : ToolbarButton public partial class ToolbarOverlayToggleButton : ToolbarButton
{ {
private readonly Box stateBackground; private Box stateBackground;
private OverlayContainer stateContainer; private OverlayContainer stateContainer;
@ -44,14 +45,15 @@ namespace osu.Game.Overlays.Toolbar
} }
} }
public ToolbarOverlayToggleButton() [BackgroundDependencyLoader]
private void load(OsuColour colours)
{ {
Add(stateBackground = new Box BackgroundContent.Add(stateBackground = new Box
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(150).Opacity(180), Colour = colours.Carmine.Opacity(180),
Blending = BlendingParameters.Additive, Blending = BlendingParameters.Additive,
Depth = 2, Depth = float.MaxValue,
Alpha = 0, Alpha = 0,
}); });
@ -63,11 +65,11 @@ namespace osu.Game.Overlays.Toolbar
switch (state.NewValue) switch (state.NewValue)
{ {
case Visibility.Hidden: case Visibility.Hidden:
stateBackground.FadeOut(200); stateBackground.FadeOut(200, Easing.OutQuint);
break; break;
case Visibility.Visible: case Visibility.Visible:
stateBackground.FadeIn(200); stateBackground.FadeIn(200, Easing.OutQuint);
break; break;
} }
} }

View File

@ -4,20 +4,19 @@
#nullable disable #nullable disable
using System.Collections.Generic; using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Effects;
using osuTK;
using osuTK.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Game.Rulesets;
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events;
using osuTK.Input;
using System.Linq; using System.Linq;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Audio; using osu.Framework.Audio;
using osu.Framework.Audio.Sample; using osu.Framework.Audio.Sample;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events;
using osu.Game.Rulesets;
using osuTK;
using osuTK.Graphics;
using osuTK.Input;
namespace osu.Game.Overlays.Toolbar namespace osu.Game.Overlays.Toolbar
{ {
@ -41,25 +40,24 @@ namespace osu.Game.Overlays.Toolbar
new OpaqueBackground new OpaqueBackground
{ {
Depth = 1, Depth = 1,
Masking = true,
}, },
ModeButtonLine = new Container ModeButtonLine = new Container
{ {
Size = new Vector2(Toolbar.HEIGHT, 3), Size = new Vector2(Toolbar.HEIGHT, 3),
Anchor = Anchor.BottomLeft, Anchor = Anchor.BottomLeft,
Origin = Anchor.TopLeft, Origin = Anchor.BottomLeft,
Masking = true, Y = -1,
EdgeEffect = new EdgeEffectParameters Children = new Drawable[]
{ {
Type = EdgeEffectType.Glow, new Circle
Colour = new Color4(255, 194, 224, 100), {
Radius = 15, Anchor = Anchor.Centre,
Roundness = 15, Origin = Anchor.Centre,
}, Size = new Vector2(18, 3),
Child = new Box }
{
RelativeSizeAxes = Axes.Both,
} }
} },
}); });
foreach (var ruleset in Rulesets.AvailableRulesets) foreach (var ruleset in Rulesets.AvailableRulesets)
@ -89,7 +87,7 @@ namespace osu.Game.Overlays.Toolbar
{ {
if (SelectedTab != null) if (SelectedTab != null)
{ {
ModeButtonLine.MoveToX(SelectedTab.DrawPosition.X, !hasInitialPosition ? 0 : 200, Easing.OutQuint); ModeButtonLine.MoveToX(SelectedTab.DrawPosition.X, !hasInitialPosition ? 0 : 500, Easing.OutElasticQuarter);
if (hasInitialPosition) if (hasInitialPosition)
selectionSamples[SelectedTab.Value.ShortName]?.Play(); selectionSamples[SelectedTab.Value.ShortName]?.Play();

View File

@ -1,14 +1,16 @@
// 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 osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Graphics.Effects; using osu.Framework.Graphics.Effects;
using osu.Framework.Graphics.UserInterface; using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events; using osu.Framework.Input.Events;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface; using osu.Game.Graphics.UserInterface;
using osu.Game.Localisation; using osu.Game.Localisation;
using osu.Game.Rulesets; using osu.Game.Rulesets;
using osuTK.Graphics;
namespace osu.Game.Overlays.Toolbar namespace osu.Game.Overlays.Toolbar
{ {
@ -41,27 +43,31 @@ namespace osu.Game.Overlays.Toolbar
{ {
protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new HoverSounds(); protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new HoverSounds();
[Resolved]
private OsuColour colours { get; set; } = null!;
public RulesetButton()
{
Padding = new MarginPadding(3)
{
Bottom = 5
};
}
public bool Active public bool Active
{ {
set set => Scheduler.AddOnce(() =>
{ {
if (value) if (value)
{ {
IconContainer.Colour = Color4.White; IconContainer.Colour = Color4Extensions.FromHex("#00FFAA");
IconContainer.EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow,
Colour = new Color4(255, 194, 224, 100),
Radius = 15,
Roundness = 15,
};
} }
else else
{ {
IconContainer.Colour = new Color4(255, 194, 224, 255); IconContainer.Colour = colours.GrayF;
IconContainer.EdgeEffect = new EdgeEffectParameters(); IconContainer.EdgeEffect = new EdgeEffectParameters();
} }
} });
} }
protected override bool OnClick(ClickEvent e) protected override bool OnClick(ClickEvent e)

View File

@ -40,7 +40,7 @@ namespace osu.Game.Overlays.Toolbar
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load(OsuColour colours, IAPIProvider api, LoginOverlay? login) private void load(OsuColour colours, IAPIProvider api, LoginOverlay? login)
{ {
Add(new OpaqueBackground { Depth = 1 }); BackgroundContent.Add(new OpaqueBackground { Depth = 1 });
Flow.Add(new Container Flow.Add(new Container
{ {