mirror of
https://github.com/ppy/osu.git
synced 2025-02-05 05:52:56 +08:00
Initial redesign following flyte's design
This commit is contained in:
parent
1cafb09977
commit
789a9f4dfa
@ -3,10 +3,12 @@
|
|||||||
|
|
||||||
using System;
|
using System;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
|
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.Sprites;
|
||||||
|
using osu.Framework.Graphics.UserInterface;
|
||||||
using osu.Framework.Localisation;
|
using osu.Framework.Localisation;
|
||||||
using osu.Framework.Threading;
|
using osu.Framework.Threading;
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
@ -21,7 +23,12 @@ namespace osu.Game.Screens.Play
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class DelayedResumeOverlay : ResumeOverlay
|
public partial class DelayedResumeOverlay : ResumeOverlay
|
||||||
{
|
{
|
||||||
private const double countdown_time = 800;
|
private const float outer_size = 200;
|
||||||
|
private const float inner_size = 150;
|
||||||
|
private const float progress_stroke_width = 7;
|
||||||
|
private const float progress_size = inner_size + progress_stroke_width / 2f;
|
||||||
|
|
||||||
|
private const double countdown_time = 3000;
|
||||||
|
|
||||||
protected override LocalisableString Message => string.Empty;
|
protected override LocalisableString Message => string.Empty;
|
||||||
|
|
||||||
@ -31,9 +38,15 @@ namespace osu.Game.Screens.Play
|
|||||||
private ScheduledDelegate? scheduledResume;
|
private ScheduledDelegate? scheduledResume;
|
||||||
private int countdownCount = 3;
|
private int countdownCount = 3;
|
||||||
private double countdownStartTime;
|
private double countdownStartTime;
|
||||||
|
private bool countdownComplete;
|
||||||
|
|
||||||
private Drawable content = null!;
|
private Drawable outerContent = null!;
|
||||||
private SpriteText countdown = null!;
|
private Container innerContent = null!;
|
||||||
|
|
||||||
|
private Container countdownComponents = null!;
|
||||||
|
private Drawable countdownBackground = null!;
|
||||||
|
private SpriteText countdownText = null!;
|
||||||
|
private CircularProgress countdownProgress = null!;
|
||||||
|
|
||||||
public DelayedResumeOverlay()
|
public DelayedResumeOverlay()
|
||||||
{
|
{
|
||||||
@ -44,44 +57,48 @@ namespace osu.Game.Screens.Play
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load()
|
private void load()
|
||||||
{
|
{
|
||||||
Add(content = new CircularContainer
|
Add(outerContent = new Circle
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
AutoSizeAxes = Axes.Both,
|
Size = new Vector2(outer_size),
|
||||||
Masking = true,
|
Colour = Color4.Black.Opacity(0.25f)
|
||||||
BorderColour = colours.Yellow,
|
});
|
||||||
BorderThickness = 2,
|
|
||||||
Children = new Drawable[]
|
Add(innerContent = new Container
|
||||||
{
|
{
|
||||||
new Box
|
Anchor = Anchor.Centre,
|
||||||
|
Origin = Anchor.Centre,
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Children = new[]
|
||||||
{
|
{
|
||||||
Size = new Vector2(250, 40),
|
countdownBackground = new Circle
|
||||||
Colour = Color4.Black,
|
{
|
||||||
Alpha = 0.8f
|
Anchor = Anchor.Centre,
|
||||||
|
Origin = Anchor.Centre,
|
||||||
|
Size = new Vector2(inner_size),
|
||||||
|
Colour = Color4.Black.Opacity(0.25f)
|
||||||
},
|
},
|
||||||
new Container
|
countdownComponents = new Container
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Origin = Anchor.Centre,
|
|
||||||
AutoSizeAxes = Axes.Both,
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new FillFlowContainer
|
countdownProgress = new CircularProgress
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
AutoSizeAxes = Axes.Both,
|
Size = new Vector2(progress_size),
|
||||||
Spacing = new Vector2(5),
|
InnerRadius = progress_stroke_width / progress_size,
|
||||||
Colour = colours.Yellow,
|
RoundedCaps = true
|
||||||
Child = countdown = new OsuSpriteText
|
},
|
||||||
|
countdownText = new OsuSpriteText
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
UseFullGlyphHeight = false,
|
UseFullGlyphHeight = false,
|
||||||
AlwaysPresent = true,
|
AlwaysPresent = true,
|
||||||
Font = OsuFont.Numeric.With(size: 20, fixedWidth: true)
|
Font = OsuFont.Torus.With(size: 70, weight: FontWeight.Light)
|
||||||
},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -93,14 +110,26 @@ namespace osu.Game.Screens.Play
|
|||||||
{
|
{
|
||||||
this.FadeIn();
|
this.FadeIn();
|
||||||
|
|
||||||
content.FadeInFromZero(150, Easing.OutQuint);
|
// The transition effects.
|
||||||
content.ScaleTo(new Vector2(1.5f, 1)).Then().ScaleTo(1, 150, Easing.OutElasticQuarter);
|
outerContent.FadeIn().ScaleTo(Vector2.Zero).Then().ScaleTo(Vector2.One, 200, Easing.OutQuint);
|
||||||
|
innerContent.FadeIn().ScaleTo(Vector2.Zero).Then().ScaleTo(Vector2.One, 400, Easing.OutElasticHalf);
|
||||||
|
countdownComponents.FadeOut().Then().Delay(50).FadeTo(1, 100);
|
||||||
|
|
||||||
|
// Reset states for various components.
|
||||||
|
countdownBackground.FadeIn();
|
||||||
|
countdownText.FadeIn();
|
||||||
|
countdownProgress.FadeIn().ScaleTo(1);
|
||||||
|
|
||||||
|
countdownComplete = false;
|
||||||
countdownCount = 3;
|
countdownCount = 3;
|
||||||
countdownStartTime = Time.Current;
|
countdownStartTime = Time.Current;
|
||||||
|
|
||||||
scheduledResume?.Cancel();
|
scheduledResume?.Cancel();
|
||||||
scheduledResume = Scheduler.AddDelayed(Resume, countdown_time);
|
scheduledResume = Scheduler.AddDelayed(() =>
|
||||||
|
{
|
||||||
|
countdownComplete = true;
|
||||||
|
Resume();
|
||||||
|
}, countdown_time);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update()
|
protected override void Update()
|
||||||
@ -114,20 +143,14 @@ namespace osu.Game.Screens.Play
|
|||||||
double amountTimePassed = Math.Min(countdown_time, Time.Current - countdownStartTime) / countdown_time;
|
double amountTimePassed = Math.Min(countdown_time, Time.Current - countdownStartTime) / countdown_time;
|
||||||
int newCount = 3 - (int)Math.Floor(amountTimePassed * 3);
|
int newCount = 3 - (int)Math.Floor(amountTimePassed * 3);
|
||||||
|
|
||||||
if (newCount > 0)
|
countdownProgress.Current.Value = amountTimePassed;
|
||||||
{
|
countdownText.Text = Math.Max(1, newCount).ToString();
|
||||||
countdown.Alpha = 1;
|
countdownProgress.InnerRadius = progress_stroke_width / progress_size / countdownProgress.Scale.X;
|
||||||
countdown.Text = newCount.ToString();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
countdown.Alpha = 0;
|
|
||||||
|
|
||||||
if (newCount != countdownCount)
|
if (countdownCount != newCount && newCount > 0)
|
||||||
{
|
{
|
||||||
if (newCount == 0)
|
countdownText.ScaleTo(0.25f).Then().ScaleTo(1, 200, Easing.OutQuint);
|
||||||
content.ScaleTo(new Vector2(1.5f, 1), 150, Easing.OutQuint);
|
outerContent.Delay(25).Then().ScaleTo(1.05f, 100).Then().ScaleTo(1f, 200, Easing.Out);
|
||||||
else
|
|
||||||
content.ScaleTo(new Vector2(1.05f, 1), 50, Easing.OutQuint).Then().ScaleTo(1, 50, Easing.Out);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
countdownCount = newCount;
|
countdownCount = newCount;
|
||||||
@ -135,9 +158,19 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
protected override void PopOut()
|
protected override void PopOut()
|
||||||
{
|
{
|
||||||
this.Delay(150).FadeOut();
|
this.Delay(300).FadeOut();
|
||||||
|
|
||||||
content.FadeOut(150, Easing.OutQuint);
|
outerContent.FadeOut();
|
||||||
|
countdownBackground.FadeOut();
|
||||||
|
countdownText.FadeOut();
|
||||||
|
|
||||||
|
if (countdownComplete)
|
||||||
|
{
|
||||||
|
countdownProgress.ScaleTo(2f, 300, Easing.OutQuint);
|
||||||
|
countdownProgress.Delay(200).FadeOut(100, Easing.Out);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
countdownProgress.FadeOut();
|
||||||
|
|
||||||
scheduledResume?.Cancel();
|
scheduledResume?.Cancel();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user