1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game/Screens/Play/SkipOverlay.cs

355 lines
12 KiB
C#
Raw Normal View History

// 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
using System;
using osu.Framework;
using osu.Framework.Allocation;
2018-07-23 04:57:55 +08:00
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Framework.Input.Bindings;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Framework.Threading;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Input.Bindings;
using osu.Game.Screens.Ranking;
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play
{
2020-05-18 18:37:49 +08:00
public class SkipOverlay : CompositeDrawable, IKeyBindingHandler<GlobalAction>
2018-04-13 17:19:50 +08:00
{
private readonly double startTime;
2019-11-21 17:57:19 +08:00
public Action RequestSkip;
2018-04-13 17:19:50 +08:00
private Button button;
private ButtonContainer buttonContainer;
2018-04-13 17:19:50 +08:00
private Box remainingTimeBox;
private FadeContainer fadeContainer;
private double displayTime;
[Resolved]
private GameplayClock gameplayClock { get; set; }
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
2018-04-13 17:19:50 +08:00
/// <summary>
/// Displays a skip overlay, giving the user the ability to skip forward.
/// </summary>
/// <param name="startTime">The time at which gameplay begins to appear.</param>
2018-04-13 17:19:50 +08:00
public SkipOverlay(double startTime)
{
this.startTime = startTime;
RelativePositionAxes = Axes.Both;
RelativeSizeAxes = Axes.X;
2018-04-13 17:19:50 +08:00
Position = new Vector2(0.5f, 0.7f);
Size = new Vector2(1, 100);
2018-04-13 17:19:50 +08:00
Origin = Anchor.Centre;
}
[BackgroundDependencyLoader(true)]
private void load(OsuColour colours)
2018-04-13 17:19:50 +08:00
{
2020-05-18 18:37:49 +08:00
InternalChild = buttonContainer = new ButtonContainer
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
Child = fadeContainer = new FadeContainer
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
button = new Button
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
remainingTimeBox = new Box
{
Height = 5,
RelativeSizeAxes = Axes.X,
Colour = colours.Yellow,
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
}
}
}
};
}
private const double fade_time = 300;
2021-04-14 16:47:11 +08:00
private double fadeOutBeginTime => startTime - MasterGameplayClockContainer.MINIMUM_SKIP_TIME;
2018-04-13 17:19:50 +08:00
public override void Hide()
{
base.Hide();
fadeContainer.Hide();
}
public override void Show()
{
base.Show();
fadeContainer.Show();
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
// skip is not required if there is no extra "empty" time to skip.
// we may need to remove this if rewinding before the initial player load position becomes a thing.
if (fadeOutBeginTime < gameplayClock.CurrentTime)
2018-04-13 17:19:50 +08:00
{
Expire();
return;
}
2019-11-21 17:57:19 +08:00
button.Action = () => RequestSkip?.Invoke();
displayTime = gameplayClock.CurrentTime;
2018-04-13 17:19:50 +08:00
}
protected override void Update()
{
base.Update();
2019-11-21 17:57:19 +08:00
2020-03-06 01:08:49 +08:00
var progress = fadeOutBeginTime <= displayTime ? 1 : Math.Max(0, 1 - (gameplayClock.CurrentTime - displayTime) / (fadeOutBeginTime - displayTime));
remainingTimeBox.Width = (float)Interpolation.Lerp(remainingTimeBox.Width, progress, Math.Clamp(Time.Elapsed / 40, 0, 1));
button.Enabled.Value = progress > 0;
buttonContainer.State.Value = progress > 0 ? Visibility.Visible : Visibility.Hidden;
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override bool OnMouseMove(MouseMoveEvent e)
2018-04-13 17:19:50 +08:00
{
if (!e.HasAnyButtonPressed)
fadeContainer.Show();
2018-10-02 11:02:47 +08:00
return base.OnMouseMove(e);
2018-04-13 17:19:50 +08:00
}
public bool OnPressed(GlobalAction action)
{
switch (action)
{
case GlobalAction.SkipCutscene:
if (!button.Enabled.Value)
return false;
button.Click();
2018-04-13 17:19:50 +08:00
return true;
}
return false;
}
public void OnReleased(GlobalAction action)
{
}
2018-04-13 17:19:50 +08:00
public class FadeContainer : Container, IStateful<Visibility>
2018-04-13 17:19:50 +08:00
{
public event Action<Visibility> StateChanged;
private Visibility state;
private ScheduledDelegate scheduledHide;
2019-07-04 15:53:08 +08:00
public override bool IsPresent => true;
2018-04-13 17:19:50 +08:00
public Visibility State
{
get => state;
2018-04-13 17:19:50 +08:00
set
{
bool stateChanged = value != state;
state = value;
scheduledHide?.Cancel();
switch (state)
{
case Visibility.Visible:
// we may be triggered to become visible multiple times but we only want to transform once.
2018-04-13 17:19:50 +08:00
if (stateChanged)
this.FadeIn(500, Easing.OutExpo);
if (!IsHovered && !IsDragged)
2019-11-11 19:53:22 +08:00
{
2018-04-13 17:19:50 +08:00
using (BeginDelayedSequence(1000))
scheduledHide = Schedule(Hide);
2019-11-11 19:53:22 +08:00
}
2018-04-13 17:19:50 +08:00
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case Visibility.Hidden:
this.FadeOut(1000, Easing.OutExpo);
break;
}
StateChanged?.Invoke(State);
}
}
protected override void LoadComplete()
{
base.LoadComplete();
Show();
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override bool OnMouseDown(MouseDownEvent e)
2018-04-13 17:19:50 +08:00
{
Show();
2018-04-13 17:19:50 +08:00
scheduledHide?.Cancel();
return true;
2018-04-13 17:19:50 +08:00
}
protected override void OnMouseUp(MouseUpEvent e)
2018-04-13 17:19:50 +08:00
{
Show();
2018-04-13 17:19:50 +08:00
}
public override void Hide() => State = Visibility.Hidden;
public override void Show() => State = Visibility.Visible;
2018-04-13 17:19:50 +08:00
}
private class ButtonContainer : VisibilityContainer
{
protected override void PopIn() => this.FadeIn(fade_time);
protected override void PopOut() => this.FadeOut(fade_time);
}
2018-04-13 17:19:50 +08:00
private class Button : OsuClickableContainer
{
private Color4 colourNormal;
private Color4 colourHover;
private Box box;
private FillFlowContainer flow;
private Box background;
private AspectContainer aspect;
2021-01-19 16:11:40 +08:00
private Sample sampleConfirm;
2018-07-23 04:57:55 +08:00
2018-04-13 17:19:50 +08:00
public Button()
{
RelativeSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
2018-08-31 06:04:40 +08:00
private void load(OsuColour colours, AudioManager audio)
2018-04-13 17:19:50 +08:00
{
colourNormal = colours.Yellow;
colourHover = colours.YellowDark;
sampleConfirm = audio.Samples.Get(@"SongSelect/confirm-selection");
2018-07-23 04:57:55 +08:00
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
background = new Box
{
Alpha = 0.2f,
Colour = Color4.Black,
RelativeSizeAxes = Axes.Both,
},
aspect = new AspectContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Y,
Height = 0.6f,
Masking = true,
CornerRadius = 15,
Children = new Drawable[]
{
box = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = colourNormal,
},
flow = new FillFlowContainer
{
Anchor = Anchor.TopCentre,
RelativePositionAxes = Axes.Y,
Y = 0.4f,
AutoSizeAxes = Axes.Both,
Origin = Anchor.Centre,
Direction = FillDirection.Horizontal,
Children = new[]
{
2019-04-02 18:55:24 +08:00
new SpriteIcon { Size = new Vector2(15), Shadow = true, Icon = FontAwesome.Solid.ChevronRight },
new SpriteIcon { Size = new Vector2(15), Shadow = true, Icon = FontAwesome.Solid.ChevronRight },
new SpriteIcon { Size = new Vector2(15), Shadow = true, Icon = FontAwesome.Solid.ChevronRight },
2018-04-13 17:19:50 +08:00
}
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
RelativePositionAxes = Axes.Y,
Y = 0.7f,
Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 12),
2018-04-13 17:19:50 +08:00
Origin = Anchor.Centre,
Text = @"SKIP",
},
}
}
};
}
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2018-04-13 17:19:50 +08:00
{
flow.TransformSpacingTo(new Vector2(5), 500, Easing.OutQuint);
box.FadeColour(colourHover, 500, Easing.OutQuint);
background.FadeTo(0.4f, 500, Easing.OutQuint);
return true;
}
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2018-04-13 17:19:50 +08:00
{
flow.TransformSpacingTo(new Vector2(0), 500, Easing.OutQuint);
box.FadeColour(colourNormal, 500, Easing.OutQuint);
background.FadeTo(0.2f, 500, Easing.OutQuint);
2018-10-02 11:02:47 +08:00
base.OnHoverLost(e);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override bool OnMouseDown(MouseDownEvent e)
2018-04-13 17:19:50 +08:00
{
aspect.ScaleTo(0.75f, 2000, Easing.OutQuint);
2018-10-02 11:02:47 +08:00
return base.OnMouseDown(e);
2018-04-13 17:19:50 +08:00
}
protected override void OnMouseUp(MouseUpEvent e)
2018-04-13 17:19:50 +08:00
{
aspect.ScaleTo(1, 1000, Easing.OutElastic);
base.OnMouseUp(e);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override bool OnClick(ClickEvent e)
2018-04-13 17:19:50 +08:00
{
2019-02-21 17:56:34 +08:00
if (!Enabled.Value)
2018-04-13 17:19:50 +08:00
return false;
2018-07-23 04:57:55 +08:00
sampleConfirm.Play();
2018-04-13 17:19:50 +08:00
box.FlashColour(Color4.White, 500, Easing.OutQuint);
aspect.ScaleTo(1.2f, 2000, Easing.OutQuint);
2019-11-21 17:57:19 +08:00
return base.OnClick(e);
2018-04-13 17:19:50 +08:00
}
}
}
}