1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 23:17:29 +08:00
osu-lazer/osu.Game/Beatmaps/Drawables/Cards/Buttons/DownloadButton.cs

102 lines
3.4 KiB
C#
Raw Normal View History

2021-10-18 03:34:31 +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;
2021-10-23 21:01:53 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2021-10-23 21:01:53 +08:00
using osu.Framework.Graphics;
2021-10-18 03:34:31 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
2021-10-23 21:01:53 +08:00
using osu.Game.Online;
using osu.Game.Resources.Localisation.Web;
using osuTK;
2021-10-18 03:34:31 +08:00
namespace osu.Game.Beatmaps.Drawables.Cards.Buttons
{
public class DownloadButton : BeatmapCardIconButton
2021-10-18 03:34:31 +08:00
{
public Bindable<DownloadState> State { get; } = new Bindable<DownloadState>();
private readonly APIBeatmapSet beatmapSet;
2021-11-19 05:50:41 +08:00
private Bindable<bool> preferNoVideo = null!;
2021-10-23 21:01:53 +08:00
private readonly LoadingSpinner spinner;
[Resolved]
private BeatmapModelDownloader beatmaps { get; set; } = null!;
2021-10-23 21:01:53 +08:00
2021-10-18 03:34:31 +08:00
public DownloadButton(APIBeatmapSet beatmapSet)
{
Icon.Icon = FontAwesome.Solid.Download;
2021-10-23 21:01:53 +08:00
Content.Add(spinner = new LoadingSpinner { Size = new Vector2(IconSize) });
this.beatmapSet = beatmapSet;
2021-10-23 21:01:53 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
preferNoVideo = config.GetBindable<bool>(OsuSetting.PreferNoVideo);
}
protected override void LoadComplete()
2021-10-23 21:01:53 +08:00
{
base.LoadComplete();
preferNoVideo.BindValueChanged(_ => updateState());
State.BindValueChanged(_ => updateState(), true);
FinishTransforms(true);
2021-10-23 21:01:53 +08:00
}
private void updateState()
2021-10-23 21:01:53 +08:00
{
switch (State.Value)
2021-10-23 21:01:53 +08:00
{
case DownloadState.Unknown:
Action = null;
TooltipText = string.Empty;
break;
case DownloadState.Downloading:
case DownloadState.Importing:
Action = null;
TooltipText = string.Empty;
spinner.Show();
Icon.Hide();
break;
case DownloadState.LocallyAvailable:
Action = null;
TooltipText = string.Empty;
2021-12-21 15:26:19 +08:00
this.FadeOut(BeatmapCard.TRANSITION_DURATION, Easing.OutQuint);
break;
case DownloadState.NotDownloaded:
if (beatmapSet.Availability.DownloadDisabled)
{
Enabled.Value = false;
TooltipText = BeatmapsetsStrings.AvailabilityDisabled;
return;
}
Action = () => beatmaps.Download(beatmapSet, preferNoVideo.Value);
2021-12-21 15:26:19 +08:00
this.FadeIn(BeatmapCard.TRANSITION_DURATION, Easing.OutQuint);
spinner.Hide();
Icon.Show();
if (!beatmapSet.HasVideo)
TooltipText = BeatmapsetsStrings.PanelDownloadAll;
else
TooltipText = preferNoVideo.Value ? BeatmapsetsStrings.PanelDownloadNoVideo : BeatmapsetsStrings.PanelDownloadVideo;
break;
default:
throw new InvalidOperationException($"Unknown {nameof(DownloadState)} specified.");
}
}
2021-10-18 03:34:31 +08:00
}
}