osu/osu.Game/Screens/Play/HUD/HoldToQuit.cs

125 lines
4.2 KiB
C#
Raw Normal View History

2018-04-21 15:24:31 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input;
using osu.Framework.Threading;
2018-04-21 16:25:21 +00:00
using osu.Framework.Timing;
2018-04-21 15:24:31 +00:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using OpenTK;
namespace osu.Game.Screens.Play.HUD
{
public class HoldToQuit : FillFlowContainer
2018-04-21 15:24:31 +00:00
{
private readonly OsuSpriteText text;
public readonly HoldToQuitButton Button;
2018-04-21 15:24:31 +00:00
public HoldToQuit()
{
Direction = FillDirection.Horizontal;
Spacing = new Vector2(20, 0);
2018-04-21 15:24:31 +00:00
Children = new Drawable[]
{
text = new OsuSpriteText
{
Text = "Hold to Quit",
Font = @"Exo2.0-Bold",
2018-04-21 15:24:31 +00:00
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft
},
Button = new HoldToQuitButton(text)
2018-04-21 15:24:31 +00:00
};
AutoSizeAxes = Axes.Both;
}
public class HoldToQuitButton : CircularContainer
2018-04-21 15:24:31 +00:00
{
private readonly OsuSpriteText text;
private SpriteIcon icon;
private CircularProgress progress;
public Action ExitAction { get; set; }
2018-04-21 15:24:31 +00:00
private ScheduledDelegate scheduledExitAction;
2018-04-21 16:25:21 +00:00
private readonly Scheduler scheduler;
private readonly StopwatchClock stopwatchClock;
2018-04-21 15:24:31 +00:00
private const int fade_duration = 200;
2018-04-21 16:25:21 +00:00
private const int text_display_time = 5000;
2018-04-21 15:24:31 +00:00
public HoldToQuitButton(OsuSpriteText text)
{
this.text = text;
scheduler = new Scheduler();
2018-04-21 16:25:21 +00:00
stopwatchClock = new StopwatchClock();
2018-04-21 15:24:31 +00:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
Masking = true;
Size = new Vector2(60);
AddRange(new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = colours.Gray1,
Alpha = 0.8f,
},
icon = new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(15),
Icon = FontAwesome.fa_close
},
2018-04-21 16:25:21 +00:00
progress = new CircularProgress { RelativeSizeAxes = Axes.Both, InnerRadius = 0.1f }
2018-04-21 15:24:31 +00:00
});
2018-04-21 16:25:21 +00:00
scheduler.AddDelayed(() => text.FadeOut(fade_duration), text_display_time);
2018-04-21 15:24:31 +00:00
}
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args)
{
icon.ScaleTo(1.5f);
text.FadeIn(fade_duration);
2018-04-21 16:25:21 +00:00
stopwatchClock.Restart();
scheduledExitAction = scheduler.AddDelayed(ExitAction, 1000);
2018-04-21 16:25:21 +00:00
2018-04-21 15:24:31 +00:00
return base.OnMouseDown(state, args);
}
protected override bool OnMouseUp(InputState state, MouseUpEventArgs args)
{
icon.ScaleTo(1f);
2018-04-21 16:25:21 +00:00
scheduler.AddDelayed(() => text.FadeOut(fade_duration), text_display_time);
stopwatchClock.Stop();
2018-04-21 15:24:31 +00:00
if (scheduledExitAction != null && !scheduledExitAction.Completed)
scheduledExitAction.Cancel();
2018-04-21 16:25:21 +00:00
progress.Current.SetDefault();
2018-04-21 15:24:31 +00:00
return base.OnMouseUp(state, args);
}
protected override void Update()
{
scheduler.Update();
2018-04-21 16:25:21 +00:00
if (stopwatchClock.IsRunning)
{
var clampedTime = MathHelper.Clamp(stopwatchClock.CurrentTime, 0, 1000);
progress.Current.Value = clampedTime / 1000;
}
2018-04-21 15:24:31 +00:00
base.Update();
}
}
}
}