2019-01-24 08:43:03 +00: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-12-11 08:32:01 +00:00
|
|
|
|
2018-12-19 01:52:15 +00:00
|
|
|
using System;
|
2018-12-14 06:04:04 +00:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 10:04:31 +00:00
|
|
|
using osu.Framework.Bindables;
|
2018-12-14 06:04:04 +00:00
|
|
|
using osu.Game.Beatmaps;
|
2020-02-20 09:39:10 +00:00
|
|
|
using osu.Game.Graphics;
|
2020-02-14 11:14:25 +00:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2020-12-25 04:38:11 +00:00
|
|
|
using osu.Game.Online.Rooms;
|
2018-12-11 08:32:01 +00:00
|
|
|
|
2020-12-25 15:50:00 +00:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Components
|
2018-12-11 08:32:01 +00:00
|
|
|
{
|
2020-12-18 17:55:48 +00:00
|
|
|
public abstract class ReadyButton : TriangleButton
|
2018-12-11 08:32:01 +00:00
|
|
|
{
|
2020-02-14 11:18:53 +00:00
|
|
|
public readonly Bindable<PlaylistItem> SelectedItem = new Bindable<PlaylistItem>();
|
2018-12-14 06:04:04 +00:00
|
|
|
|
2020-12-18 17:55:48 +00:00
|
|
|
public new readonly BindableBool Enabled = new BindableBool();
|
2018-12-19 01:52:15 +00:00
|
|
|
|
|
|
|
[Resolved]
|
2020-12-18 17:55:48 +00:00
|
|
|
protected IBindable<WorkingBeatmap> GameBeatmap { get; private set; }
|
2018-12-19 01:52:15 +00:00
|
|
|
|
2018-12-14 06:04:04 +00:00
|
|
|
[Resolved]
|
|
|
|
private BeatmapManager beatmaps { get; set; }
|
|
|
|
|
2018-12-19 01:52:15 +00:00
|
|
|
private bool hasBeatmap;
|
|
|
|
|
2020-05-27 07:08:47 +00:00
|
|
|
private IBindable<WeakReference<BeatmapSetInfo>> managerUpdated;
|
2020-05-19 07:44:22 +00:00
|
|
|
private IBindable<WeakReference<BeatmapSetInfo>> managerRemoved;
|
|
|
|
|
2018-12-14 06:04:04 +00:00
|
|
|
[BackgroundDependencyLoader]
|
2020-02-20 09:39:10 +00:00
|
|
|
private void load(OsuColour colours)
|
2018-12-14 06:04:04 +00:00
|
|
|
{
|
2020-05-27 07:08:47 +00:00
|
|
|
managerUpdated = beatmaps.ItemUpdated.GetBoundCopy();
|
|
|
|
managerUpdated.BindValueChanged(beatmapUpdated);
|
2020-05-19 07:44:22 +00:00
|
|
|
managerRemoved = beatmaps.ItemRemoved.GetBoundCopy();
|
|
|
|
managerRemoved.BindValueChanged(beatmapRemoved);
|
2018-12-14 06:04:04 +00:00
|
|
|
|
2020-02-14 11:18:53 +00:00
|
|
|
SelectedItem.BindValueChanged(item => updateSelectedItem(item.NewValue), true);
|
2018-12-14 06:04:04 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 07:27:08 +00:00
|
|
|
private void updateSelectedItem(PlaylistItem _) => Scheduler.AddOnce(updateBeatmapState);
|
|
|
|
private void beatmapUpdated(ValueChangedEvent<WeakReference<BeatmapSetInfo>> _) => Scheduler.AddOnce(updateBeatmapState);
|
|
|
|
private void beatmapRemoved(ValueChangedEvent<WeakReference<BeatmapSetInfo>> _) => Scheduler.AddOnce(updateBeatmapState);
|
2018-12-19 01:52:15 +00:00
|
|
|
|
2021-01-04 05:51:37 +00:00
|
|
|
private void updateBeatmapState()
|
2020-06-02 05:03:50 +00:00
|
|
|
{
|
|
|
|
int? beatmapId = SelectedItem.Value?.Beatmap.Value?.OnlineBeatmapID;
|
|
|
|
string checksum = SelectedItem.Value?.Beatmap.Value?.MD5Hash;
|
|
|
|
|
|
|
|
if (beatmapId == null || checksum == null)
|
2021-01-04 05:51:37 +00:00
|
|
|
return;
|
2020-06-02 05:03:50 +00:00
|
|
|
|
2021-01-04 05:51:37 +00:00
|
|
|
var databasedBeatmap = beatmaps.QueryBeatmap(b => b.OnlineBeatmapID == beatmapId && b.MD5Hash == checksum);
|
2021-01-04 07:28:41 +00:00
|
|
|
|
2021-01-05 05:54:59 +00:00
|
|
|
hasBeatmap = databasedBeatmap?.BeatmapSet?.DeletePending == false;
|
2020-06-02 05:03:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-19 01:52:15 +00:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
updateEnabledState();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateEnabledState()
|
|
|
|
{
|
2020-12-18 17:55:48 +00:00
|
|
|
if (GameBeatmap.Value == null || SelectedItem.Value == null)
|
2018-12-19 01:52:15 +00:00
|
|
|
{
|
2020-12-18 17:55:48 +00:00
|
|
|
base.Enabled.Value = false;
|
2018-12-19 01:52:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-18 17:55:48 +00:00
|
|
|
base.Enabled.Value = hasBeatmap && Enabled.Value;
|
2018-12-14 06:04:04 +00:00
|
|
|
}
|
2018-12-11 08:32:01 +00:00
|
|
|
}
|
|
|
|
}
|