2019-01-24 16:43:03 +08:00
|
|
|
|
// 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-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.Break
|
|
|
|
|
{
|
|
|
|
|
public class BreakArrows : CompositeDrawable
|
|
|
|
|
{
|
|
|
|
|
private const int glow_icon_size = 60;
|
|
|
|
|
private const int glow_icon_blur_sigma = 10;
|
|
|
|
|
private const float glow_icon_final_offset = 0.22f;
|
|
|
|
|
private const float glow_icon_offscreen_offset = 0.6f;
|
|
|
|
|
|
|
|
|
|
private const int blurred_icon_blur_sigma = 20;
|
|
|
|
|
private const int blurred_icon_size = 130;
|
|
|
|
|
private const float blurred_icon_final_offset = 0.35f;
|
|
|
|
|
private const float blurred_icon_offscreen_offset = 0.7f;
|
|
|
|
|
|
|
|
|
|
private readonly GlowIcon leftGlowIcon;
|
|
|
|
|
private readonly GlowIcon rightGlowIcon;
|
|
|
|
|
|
|
|
|
|
private readonly BlurredIcon leftBlurredIcon;
|
|
|
|
|
private readonly BlurredIcon rightBlurredIcon;
|
|
|
|
|
|
|
|
|
|
public BreakArrows()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
|
{
|
2018-08-22 16:41:13 +08:00
|
|
|
|
new ParallaxContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-22 16:41:13 +08:00
|
|
|
|
ParallaxAmount = -0.01f,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
leftGlowIcon = new GlowIcon
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
X = -glow_icon_offscreen_offset,
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.ChevronRight,
|
2018-08-22 16:41:13 +08:00
|
|
|
|
BlurSigma = new Vector2(glow_icon_blur_sigma),
|
|
|
|
|
Size = new Vector2(glow_icon_size),
|
|
|
|
|
},
|
|
|
|
|
rightGlowIcon = new GlowIcon
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
X = glow_icon_offscreen_offset,
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.ChevronLeft,
|
2018-08-22 16:41:13 +08:00
|
|
|
|
BlurSigma = new Vector2(glow_icon_blur_sigma),
|
|
|
|
|
Size = new Vector2(glow_icon_size),
|
|
|
|
|
},
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new ParallaxContainer
|
|
|
|
|
{
|
|
|
|
|
ParallaxAmount = -0.02f,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
leftBlurredIcon = new BlurredIcon
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
Alpha = 0.7f,
|
|
|
|
|
X = -blurred_icon_offscreen_offset,
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.ChevronRight,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
BlurSigma = new Vector2(blurred_icon_blur_sigma),
|
|
|
|
|
Size = new Vector2(blurred_icon_size),
|
|
|
|
|
},
|
|
|
|
|
rightBlurredIcon = new BlurredIcon
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
Alpha = 0.7f,
|
|
|
|
|
X = blurred_icon_offscreen_offset,
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.ChevronLeft,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
BlurSigma = new Vector2(blurred_icon_blur_sigma),
|
|
|
|
|
Size = new Vector2(blurred_icon_size),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Show(double duration)
|
|
|
|
|
{
|
|
|
|
|
leftGlowIcon.MoveToX(-glow_icon_final_offset, duration, Easing.OutQuint);
|
|
|
|
|
rightGlowIcon.MoveToX(glow_icon_final_offset, duration, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
leftBlurredIcon.MoveToX(-blurred_icon_final_offset, duration, Easing.OutQuint);
|
|
|
|
|
rightBlurredIcon.MoveToX(blurred_icon_final_offset, duration, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Hide(double duration)
|
|
|
|
|
{
|
|
|
|
|
leftGlowIcon.MoveToX(-glow_icon_offscreen_offset, duration, Easing.OutQuint);
|
|
|
|
|
rightGlowIcon.MoveToX(glow_icon_offscreen_offset, duration, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
leftBlurredIcon.MoveToX(-blurred_icon_offscreen_offset, duration, Easing.OutQuint);
|
|
|
|
|
rightBlurredIcon.MoveToX(blurred_icon_offscreen_offset, duration, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|