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
|
|
|
|
|
|
2022-06-19 22:59:37 +08:00
|
|
|
|
using System;
|
2022-06-29 21:50:47 +08:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using osu.Game.Scoring;
|
2017-04-02 02:29:17 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2022-06-21 19:06:38 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osuTK;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2017-04-06 03:51:43 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2022-06-21 19:06:38 +08:00
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-03 09:17:39 +08:00
|
|
|
|
namespace osu.Game.Screens.Play
|
2017-02-02 16:33:39 +08:00
|
|
|
|
{
|
2018-06-09 15:28:02 +08:00
|
|
|
|
public class FailOverlay : GameplayMenuOverlay
|
2017-02-02 16:33:39 +08:00
|
|
|
|
{
|
2022-06-29 21:50:47 +08:00
|
|
|
|
public Func<Task<ScoreInfo>> SaveReplay;
|
2022-07-08 17:36:46 +08:00
|
|
|
|
|
2017-04-06 03:36:03 +08:00
|
|
|
|
public override string Header => "failed";
|
|
|
|
|
public override string Description => "you're dead, try again?";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-04-13 10:35:36 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-12-18 18:13:25 +08:00
|
|
|
|
AddButton("Retry", colours.YellowDark, () => OnRetry?.Invoke());
|
|
|
|
|
AddButton("Quit", new Color4(170, 27, 39, 255), () => OnQuit?.Invoke());
|
2022-06-21 19:06:38 +08:00
|
|
|
|
// from #10339 maybe this is a better visual effect
|
|
|
|
|
Add(new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = TwoLayerButton.SIZE_EXTENDED.Y,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4Extensions.FromHex("#333")
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Spacing = new Vector2(5),
|
|
|
|
|
Padding = new MarginPadding(10),
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2022-07-16 04:39:04 +08:00
|
|
|
|
new SaveFailedScoreButton(SaveReplay)
|
2022-06-21 19:06:38 +08:00
|
|
|
|
{
|
|
|
|
|
Width = 300
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
2017-04-13 10:35:36 +08:00
|
|
|
|
}
|
2017-02-02 16:33:39 +08:00
|
|
|
|
}
|
|
|
|
|
}
|