2022-03-23 09:37:53 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using Humanizer;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
|
|
|
|
{
|
|
|
|
public class CountdownButton : IconButton, IHasPopover
|
|
|
|
{
|
|
|
|
private static readonly TimeSpan[] available_delays =
|
|
|
|
{
|
|
|
|
TimeSpan.FromSeconds(10),
|
|
|
|
TimeSpan.FromSeconds(30),
|
|
|
|
TimeSpan.FromMinutes(1),
|
|
|
|
TimeSpan.FromMinutes(2)
|
|
|
|
};
|
|
|
|
|
|
|
|
public new Action<TimeSpan> Action;
|
|
|
|
|
|
|
|
private readonly Drawable background;
|
|
|
|
|
|
|
|
public CountdownButton()
|
|
|
|
{
|
|
|
|
Icon = FontAwesome.Solid.CaretDown;
|
|
|
|
IconScale = new Vector2(0.6f);
|
|
|
|
|
|
|
|
Add(background = new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Depth = float.MaxValue
|
|
|
|
});
|
|
|
|
|
|
|
|
base.Action = this.ShowPopover;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
background.Colour = colours.Green;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Popover GetPopover()
|
|
|
|
{
|
|
|
|
var flow = new FillFlowContainer
|
|
|
|
{
|
|
|
|
Width = 200,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
Spacing = new Vector2(2),
|
|
|
|
};
|
|
|
|
|
|
|
|
foreach (var duration in available_delays)
|
|
|
|
{
|
2022-03-24 10:15:51 +08:00
|
|
|
flow.Add(new PopoverButton
|
2022-03-23 09:37:53 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Text = $"Start match in {duration.Humanize()}",
|
|
|
|
BackgroundColour = background.Colour,
|
|
|
|
Action = () =>
|
|
|
|
{
|
|
|
|
Action(duration);
|
|
|
|
this.HidePopover();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return new OsuPopover { Child = flow };
|
|
|
|
}
|
2022-03-24 10:15:51 +08:00
|
|
|
|
|
|
|
public class PopoverButton : OsuButton
|
|
|
|
{
|
|
|
|
}
|
2022-03-23 09:37:53 +08:00
|
|
|
}
|
|
|
|
}
|