2017-01-30 20:04:39 +08:00
|
|
|
|
using OpenTK;
|
2017-01-27 17:24:49 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2017-01-28 02:18:57 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-01-27 17:24:49 +08:00
|
|
|
|
using osu.Framework.Graphics.Transformations;
|
2017-01-28 02:18:57 +08:00
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-01-27 17:24:49 +08:00
|
|
|
|
using osu.Framework.Audio.Sample;
|
2017-01-30 16:08:14 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-01-28 02:18:57 +08:00
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
2017-01-27 17:24:49 +08:00
|
|
|
|
|
2017-01-28 02:18:57 +08:00
|
|
|
|
namespace osu.Game.Overlays.Pause
|
|
|
|
|
{
|
|
|
|
|
public class PauseButton : ClickableContainer
|
2017-01-27 17:24:49 +08:00
|
|
|
|
{
|
2017-01-30 16:43:06 +08:00
|
|
|
|
private const float colourWidth = 0.8f;
|
|
|
|
|
private const float colourExpandedWidth = 0.9f;
|
|
|
|
|
private const float colourExpandTime = 500;
|
|
|
|
|
private Vector2 colourShear = new Vector2(0.2f, 0);
|
2017-01-27 17:24:49 +08:00
|
|
|
|
|
2017-01-28 02:18:57 +08:00
|
|
|
|
private Color4 backgroundColour = OsuColour.Gray(34);
|
2017-01-27 17:24:49 +08:00
|
|
|
|
|
2017-01-30 20:04:39 +08:00
|
|
|
|
private Color4 buttonColour;
|
|
|
|
|
public Color4 ButtonColour
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return buttonColour;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
buttonColour = value;
|
|
|
|
|
if (colourContainer == null) return;
|
|
|
|
|
colourContainer.Colour = ButtonColour;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-28 02:18:57 +08:00
|
|
|
|
|
2017-01-30 20:04:39 +08:00
|
|
|
|
private string text;
|
2017-01-28 02:18:57 +08:00
|
|
|
|
public string Text
|
2017-01-27 17:24:49 +08:00
|
|
|
|
{
|
2017-01-28 02:18:57 +08:00
|
|
|
|
get
|
|
|
|
|
{
|
2017-01-30 20:04:39 +08:00
|
|
|
|
return text;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
text = value;
|
|
|
|
|
if (spriteText == null) return;
|
|
|
|
|
spriteText.Text = Text;
|
2017-01-28 02:18:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-30 20:04:39 +08:00
|
|
|
|
public AudioSample SampleClick, SampleHover;
|
2017-01-30 17:04:57 +08:00
|
|
|
|
|
2017-01-30 20:04:39 +08:00
|
|
|
|
private Container backgroundContainer, colourContainer, glowContainer;
|
2017-01-30 17:04:57 +08:00
|
|
|
|
private SpriteText spriteText;
|
2017-01-28 02:18:57 +08:00
|
|
|
|
|
2017-01-30 16:43:06 +08:00
|
|
|
|
private bool didClick; // Used for making sure that the OnMouseDown animation can call instead of OnHoverLost's
|
2017-01-30 16:08:14 +08:00
|
|
|
|
|
2017-01-28 02:18:57 +08:00
|
|
|
|
public override bool Contains(Vector2 screenSpacePos) => backgroundContainer.Contains(screenSpacePos);
|
2017-01-27 17:24:49 +08:00
|
|
|
|
|
2017-01-29 04:55:42 +08:00
|
|
|
|
protected override bool OnMouseDown(Framework.Input.InputState state, MouseDownEventArgs args)
|
2017-01-28 02:18:57 +08:00
|
|
|
|
{
|
2017-01-30 16:08:14 +08:00
|
|
|
|
didClick = true;
|
|
|
|
|
colourContainer.ResizeTo(new Vector2(1.5f, 1f), 200, EasingTypes.In);
|
2017-01-30 20:04:39 +08:00
|
|
|
|
SampleClick?.Play();
|
2017-01-29 08:30:37 +08:00
|
|
|
|
Action?.Invoke();
|
2017-01-30 16:08:14 +08:00
|
|
|
|
|
|
|
|
|
Delay(200);
|
|
|
|
|
Schedule(delegate {
|
|
|
|
|
colourContainer.ResizeTo(new Vector2(colourWidth, 1f), 0, EasingTypes.None);
|
2017-01-30 17:04:57 +08:00
|
|
|
|
spriteText.Spacing = Vector2.Zero;
|
2017-01-30 16:08:14 +08:00
|
|
|
|
glowContainer.Alpha = 0;
|
|
|
|
|
});
|
|
|
|
|
|
2017-01-27 17:24:49 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-30 16:08:14 +08:00
|
|
|
|
protected override bool OnClick(Framework.Input.InputState state) => false;
|
|
|
|
|
|
2017-01-27 17:24:49 +08:00
|
|
|
|
protected override bool OnHover(Framework.Input.InputState state)
|
|
|
|
|
{
|
2017-01-28 02:18:57 +08:00
|
|
|
|
colourContainer.ResizeTo(new Vector2(colourExpandedWidth, 1f), colourExpandTime, EasingTypes.OutElastic);
|
2017-01-30 17:04:57 +08:00
|
|
|
|
spriteText.TransformSpacingTo(new Vector2(3f, 0f), colourExpandTime, EasingTypes.OutElastic);
|
2017-01-29 04:55:42 +08:00
|
|
|
|
glowContainer.FadeTo(1f, colourExpandTime / 2, EasingTypes.Out);
|
2017-01-30 20:04:39 +08:00
|
|
|
|
SampleHover?.Play();
|
2017-01-27 17:24:49 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnHoverLost(Framework.Input.InputState state)
|
|
|
|
|
{
|
2017-01-30 16:08:14 +08:00
|
|
|
|
if (!didClick)
|
|
|
|
|
{
|
|
|
|
|
colourContainer.ResizeTo(new Vector2(colourWidth, 1f), colourExpandTime, EasingTypes.OutElastic);
|
2017-01-30 17:04:57 +08:00
|
|
|
|
spriteText.TransformSpacingTo(Vector2.Zero, colourExpandTime, EasingTypes.OutElastic);
|
2017-01-30 16:08:14 +08:00
|
|
|
|
glowContainer.FadeTo(0f, colourExpandTime / 2, EasingTypes.Out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
didClick = false;
|
2017-01-27 17:24:49 +08:00
|
|
|
|
}
|
2017-01-28 02:18:57 +08:00
|
|
|
|
|
2017-01-30 20:04:39 +08:00
|
|
|
|
public PauseButton()
|
2017-01-27 17:39:15 +08:00
|
|
|
|
{
|
2017-01-28 02:18:57 +08:00
|
|
|
|
Add(new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
backgroundContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Width = 1f,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-01-29 09:50:06 +08:00
|
|
|
|
Colour = backgroundColour
|
|
|
|
|
}
|
2017-01-28 02:18:57 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
glowContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Width = 1f,
|
|
|
|
|
Alpha = 0f,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Width = 0.125f,
|
2017-01-30 20:04:39 +08:00
|
|
|
|
ColourInfo = ColourInfo.GradientHorizontal(new Color4(ButtonColour.R, ButtonColour.G, ButtonColour.B, 0f), ButtonColour)
|
2017-01-29 09:50:06 +08:00
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Width = 0.75f,
|
2017-01-30 20:04:39 +08:00
|
|
|
|
Colour = ButtonColour
|
2017-01-28 02:18:57 +08:00
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Width = 0.125f,
|
2017-01-30 20:04:39 +08:00
|
|
|
|
ColourInfo = ColourInfo.GradientHorizontal(ButtonColour, new Color4(ButtonColour.R, ButtonColour.G, ButtonColour.B, 0f))
|
2017-01-29 09:50:06 +08:00
|
|
|
|
}
|
2017-01-28 02:18:57 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
2017-01-30 16:43:06 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-01-28 02:18:57 +08:00
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
colourContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Width = colourWidth,
|
|
|
|
|
Masking = true,
|
|
|
|
|
EdgeEffect = new EdgeEffect
|
|
|
|
|
{
|
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
|
Colour = Color4.Black.Opacity(0.2f),
|
2017-01-29 09:50:06 +08:00
|
|
|
|
Radius = 5
|
2017-01-28 02:18:57 +08:00
|
|
|
|
},
|
2017-01-30 20:04:39 +08:00
|
|
|
|
Colour = ButtonColour,
|
2017-01-30 16:43:06 +08:00
|
|
|
|
Shear = colourShear,
|
2017-01-28 02:18:57 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
EdgeSmoothness = new Vector2(2, 0),
|
2017-01-29 09:50:06 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both
|
2017-01-28 02:18:57 +08:00
|
|
|
|
},
|
|
|
|
|
new Triangles
|
|
|
|
|
{
|
|
|
|
|
BlendingMode = BlendingMode.Additive,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
TriangleScale = 4,
|
|
|
|
|
Alpha = 0.05f,
|
2017-01-30 16:43:06 +08:00
|
|
|
|
Shear = -colourShear
|
2017-01-29 09:50:06 +08:00
|
|
|
|
}
|
2017-01-28 02:18:57 +08:00
|
|
|
|
}
|
2017-01-29 09:50:06 +08:00
|
|
|
|
}
|
2017-01-28 02:18:57 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-01-30 17:04:57 +08:00
|
|
|
|
spriteText = new SpriteText
|
2017-01-28 02:18:57 +08:00
|
|
|
|
{
|
|
|
|
|
Text = Text,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2017-01-30 17:04:57 +08:00
|
|
|
|
TextSize = 28,
|
2017-01-28 02:18:57 +08:00
|
|
|
|
Font = "Exo2.0-Bold",
|
|
|
|
|
Shadow = true,
|
|
|
|
|
ShadowColour = new Color4(0, 0, 0, 0.1f),
|
2017-01-29 17:04:48 +08:00
|
|
|
|
Colour = Color4.White,
|
2017-01-29 09:50:06 +08:00
|
|
|
|
}
|
2017-01-28 02:18:57 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|