2020-12-19 01:55:48 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-19 01:55:48 +08:00
|
|
|
using System;
|
2021-10-26 15:55:24 +08:00
|
|
|
using System.Linq;
|
2020-12-19 01:55:48 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2021-10-26 15:55:24 +08:00
|
|
|
using osu.Framework.Localisation;
|
2021-01-17 04:02:30 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2020-12-19 01:55:48 +08:00
|
|
|
using osu.Game.Graphics;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
2020-12-19 01:55:48 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
2020-12-19 01:55:48 +08:00
|
|
|
{
|
2020-12-25 12:11:21 +08:00
|
|
|
public class PlaylistsReadyButton : ReadyButton
|
2020-12-19 01:55:48 +08:00
|
|
|
{
|
|
|
|
[Resolved(typeof(Room), nameof(Room.EndDate))]
|
2020-12-21 15:18:39 +08:00
|
|
|
private Bindable<DateTimeOffset?> endDate { get; set; }
|
2020-12-19 01:55:48 +08:00
|
|
|
|
2021-10-26 15:55:24 +08:00
|
|
|
[Resolved(typeof(Room), nameof(Room.MaxAttempts))]
|
|
|
|
private Bindable<int?> maxAttempts { get; set; }
|
|
|
|
|
|
|
|
[Resolved(typeof(Room), nameof(Room.UserScore))]
|
|
|
|
private Bindable<PlaylistAggregateScore> userScore { get; set; }
|
|
|
|
|
2021-01-17 04:02:30 +08:00
|
|
|
[Resolved]
|
|
|
|
private IBindable<WorkingBeatmap> gameBeatmap { get; set; }
|
|
|
|
|
2020-12-25 12:11:21 +08:00
|
|
|
public PlaylistsReadyButton()
|
2020-12-19 01:55:48 +08:00
|
|
|
{
|
|
|
|
Text = "Start";
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
BackgroundColour = colours.Green;
|
|
|
|
Triangles.ColourDark = colours.Green;
|
|
|
|
Triangles.ColourLight = colours.GreenLight;
|
|
|
|
}
|
|
|
|
|
2021-10-26 15:54:55 +08:00
|
|
|
private bool hasRemainingAttempts = true;
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
userScore.BindValueChanged(aggregate =>
|
|
|
|
{
|
|
|
|
if (maxAttempts.Value == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
int remaining = maxAttempts.Value.Value - aggregate.NewValue.PlaylistItemAttempts.Sum(a => a.Attempts);
|
|
|
|
|
|
|
|
hasRemainingAttempts = remaining > 0;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-12-19 01:55:48 +08:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
2021-10-26 15:54:55 +08:00
|
|
|
Enabled.Value = hasRemainingAttempts && enoughTimeLeft;
|
2020-12-19 01:55:48 +08:00
|
|
|
}
|
2021-10-26 15:54:55 +08:00
|
|
|
|
2021-10-26 15:55:24 +08:00
|
|
|
public override LocalisableString TooltipText
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (Enabled.Value)
|
|
|
|
return string.Empty;
|
|
|
|
|
|
|
|
if (!enoughTimeLeft)
|
|
|
|
return "No time left!";
|
|
|
|
|
|
|
|
if (!hasRemainingAttempts)
|
|
|
|
return "Attempts exhausted!";
|
|
|
|
|
|
|
|
return base.TooltipText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-26 15:54:55 +08:00
|
|
|
private bool enoughTimeLeft =>
|
|
|
|
// This should probably consider the length of the currently selected item, rather than a constant 30 seconds.
|
|
|
|
endDate.Value != null && DateTimeOffset.UtcNow.AddSeconds(30).AddMilliseconds(gameBeatmap.Value.Track.Length) < endDate.Value;
|
2020-12-19 01:55:48 +08:00
|
|
|
}
|
|
|
|
}
|