2019-07-03 03:02:35 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-07-03 13:43:42 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-06-04 09:29:35 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2019-01-18 05:28:06 +00:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-07-13 07:28:18 +00:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2019-06-11 17:31:01 +00:00
|
|
|
|
using osu.Game.Online;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Direct
|
|
|
|
|
{
|
2019-07-03 03:02:35 +00:00
|
|
|
|
public class PanelDownloadButton : BeatmapDownloadTrackingComposite
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-06-27 04:38:21 +00:00
|
|
|
|
protected bool DownloadEnabled => button.Enabled.Value;
|
2019-06-27 04:35:14 +00:00
|
|
|
|
|
2019-01-18 05:28:06 +00:00
|
|
|
|
private readonly bool noVideo;
|
2018-07-03 13:43:42 +00:00
|
|
|
|
|
2019-01-18 05:28:06 +00:00
|
|
|
|
private readonly ShakeContainer shakeContainer;
|
2019-07-03 03:02:35 +00:00
|
|
|
|
private readonly DownloadButton button;
|
2019-01-18 05:28:06 +00:00
|
|
|
|
|
2019-07-03 03:02:35 +00:00
|
|
|
|
public PanelDownloadButton(BeatmapSetInfo beatmapSet, bool noVideo = false)
|
2019-01-18 05:28:06 +00:00
|
|
|
|
: base(beatmapSet)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-01-18 05:28:06 +00:00
|
|
|
|
this.noVideo = noVideo;
|
2018-07-17 12:36:33 +00:00
|
|
|
|
|
2019-01-18 05:28:06 +00:00
|
|
|
|
InternalChild = shakeContainer = new ShakeContainer
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-01-18 05:28:06 +00:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-07-03 03:02:35 +00:00
|
|
|
|
Child = button = new DownloadButton
|
2018-07-03 13:43:42 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-07-02 10:25:30 +00:00
|
|
|
|
},
|
2019-01-18 05:28:06 +00:00
|
|
|
|
};
|
2018-07-03 13:43:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2019-01-18 05:28:06 +00:00
|
|
|
|
|
2019-07-02 10:25:30 +00:00
|
|
|
|
button.State.BindTo(State);
|
2018-07-13 12:19:10 +00:00
|
|
|
|
FinishTransforms(true);
|
2018-07-03 13:43:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-27 04:35:14 +00:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2019-07-02 10:43:47 +00:00
|
|
|
|
private void load(OsuGame game, BeatmapManager beatmaps)
|
2018-07-03 13:43:42 +00:00
|
|
|
|
{
|
2020-02-14 06:01:30 +00:00
|
|
|
|
if (BeatmapSet.Value?.OnlineInfo?.Availability?.DownloadDisabled ?? false)
|
2019-06-10 18:13:37 +00:00
|
|
|
|
{
|
2019-06-27 04:35:14 +00:00
|
|
|
|
button.Enabled.Value = false;
|
2020-01-14 19:26:54 +00:00
|
|
|
|
button.TooltipText = "this beatmap is currently not available for download.";
|
2019-06-10 18:14:12 +00:00
|
|
|
|
return;
|
2019-06-10 18:13:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-18 05:28:06 +00:00
|
|
|
|
button.Action = () =>
|
2018-07-17 12:36:33 +00:00
|
|
|
|
{
|
2019-01-18 05:28:06 +00:00
|
|
|
|
switch (State.Value)
|
2018-07-17 12:36:33 +00:00
|
|
|
|
{
|
2019-01-18 05:28:06 +00:00
|
|
|
|
case DownloadState.Downloading:
|
|
|
|
|
case DownloadState.Downloaded:
|
|
|
|
|
shakeContainer.Shake();
|
2018-07-17 12:36:33 +00:00
|
|
|
|
break;
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2019-01-18 05:28:06 +00:00
|
|
|
|
case DownloadState.LocallyAvailable:
|
2020-02-14 06:01:30 +00:00
|
|
|
|
game?.PresentBeatmap(BeatmapSet.Value);
|
2018-07-17 12:36:33 +00:00
|
|
|
|
break;
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-07-17 12:36:33 +00:00
|
|
|
|
default:
|
2019-02-21 09:56:34 +00:00
|
|
|
|
beatmaps.Download(BeatmapSet.Value, noVideo);
|
2018-07-17 12:36:33 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|