// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Game.Beatmaps; using osu.Game.Graphics; using osu.Game.Graphics.UserInterface; using osu.Game.Online.Multiplayer; namespace osu.Game.Screens.Multi.Match.Components { public class ReadyButton : TriangleButton { public readonly Bindable SelectedItem = new Bindable(); [Resolved(typeof(Room), nameof(Room.EndDate))] private Bindable endDate { get; set; } [Resolved] private IBindable gameBeatmap { get; set; } [Resolved] private BeatmapManager beatmaps { get; set; } private bool hasBeatmap; public ReadyButton() { Text = "Start"; } [BackgroundDependencyLoader] private void load(OsuColour colours) { beatmaps.ItemAdded += beatmapAdded; beatmaps.ItemRemoved += beatmapRemoved; SelectedItem.BindValueChanged(item => updateSelectedItem(item.NewValue), true); BackgroundColour = colours.Green; Triangles.ColourDark = colours.Green; Triangles.ColourLight = colours.GreenLight; } private void updateSelectedItem(PlaylistItem item) { hasBeatmap = false; int? beatmapId = SelectedItem.Value?.Beatmap.Value?.OnlineBeatmapID; if (beatmapId == null) return; hasBeatmap = beatmaps.QueryBeatmap(b => b.OnlineBeatmapID == beatmapId) != null; } private void beatmapAdded(BeatmapSetInfo model) { int? beatmapId = SelectedItem.Value?.Beatmap.Value?.OnlineBeatmapID; if (beatmapId == null) return; if (model.Beatmaps.Any(b => b.OnlineBeatmapID == beatmapId)) Schedule(() => hasBeatmap = true); } private void beatmapRemoved(BeatmapSetInfo model) { int? beatmapId = SelectedItem.Value?.Beatmap.Value?.OnlineBeatmapID; if (beatmapId == null) return; if (model.Beatmaps.Any(b => b.OnlineBeatmapID == beatmapId)) Schedule(() => hasBeatmap = false); } protected override void Update() { base.Update(); updateEnabledState(); } private void updateEnabledState() { if (gameBeatmap.Value == null || SelectedItem.Value == null) { Enabled.Value = false; return; } bool hasEnoughTime = DateTimeOffset.UtcNow.AddSeconds(30).AddMilliseconds(gameBeatmap.Value.Track.Length) < endDate.Value; Enabled.Value = hasBeatmap && hasEnoughTime; } protected override void Dispose(bool isDisposing) { base.Dispose(isDisposing); if (beatmaps != null) { beatmaps.ItemAdded -= beatmapAdded; beatmaps.ItemRemoved -= beatmapRemoved; } } } }