mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
122 lines
4.1 KiB
C#
122 lines
4.1 KiB
C#
// 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;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Extensions;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Online;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
namespace osu.Game.Beatmaps.Drawables
|
|
{
|
|
public class BeatmapDownloadButton : CompositeDrawable
|
|
{
|
|
protected bool DownloadEnabled => button.Enabled.Value;
|
|
|
|
/// <summary>
|
|
/// Currently selected beatmap. Used to present the correct difficulty after completing a download.
|
|
/// </summary>
|
|
public readonly IBindable<APIBeatmap> SelectedBeatmap = new Bindable<APIBeatmap>();
|
|
|
|
private readonly ShakeContainer shakeContainer;
|
|
private readonly DownloadButton button;
|
|
private Bindable<bool> noVideoSetting;
|
|
|
|
protected readonly BeatmapDownloadTracker DownloadTracker;
|
|
|
|
protected readonly Bindable<DownloadState> State = new Bindable<DownloadState>();
|
|
|
|
private readonly IBeatmapSetInfo beatmapSet;
|
|
|
|
public BeatmapDownloadButton(IBeatmapSetInfo beatmapSet)
|
|
{
|
|
this.beatmapSet = beatmapSet;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
shakeContainer = new ShakeContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Child = button = new DownloadButton
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
State = { BindTarget = State }
|
|
},
|
|
},
|
|
DownloadTracker = new BeatmapDownloadTracker(beatmapSet)
|
|
{
|
|
State = { BindTarget = State }
|
|
}
|
|
};
|
|
|
|
button.Add(new DownloadProgressBar(beatmapSet)
|
|
{
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft,
|
|
Depth = -1,
|
|
});
|
|
}
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(OsuGame game, BeatmapModelDownloader beatmaps, OsuConfigManager osuConfig)
|
|
{
|
|
noVideoSetting = osuConfig.GetBindable<bool>(OsuSetting.PreferNoVideo);
|
|
|
|
button.Action = () =>
|
|
{
|
|
switch (DownloadTracker.State.Value)
|
|
{
|
|
case DownloadState.Downloading:
|
|
case DownloadState.Importing:
|
|
shakeContainer.Shake();
|
|
break;
|
|
|
|
case DownloadState.LocallyAvailable:
|
|
Predicate<BeatmapInfo> findPredicate = null;
|
|
if (SelectedBeatmap.Value != null)
|
|
findPredicate = b => b.MatchesOnlineID(SelectedBeatmap.Value);
|
|
|
|
game?.PresentBeatmap(beatmapSet, findPredicate);
|
|
break;
|
|
|
|
default:
|
|
beatmaps.Download(beatmapSet, noVideoSetting.Value);
|
|
break;
|
|
}
|
|
};
|
|
|
|
State.BindValueChanged(state =>
|
|
{
|
|
switch (state.NewValue)
|
|
{
|
|
case DownloadState.LocallyAvailable:
|
|
button.Enabled.Value = true;
|
|
button.TooltipText = "Go to beatmap";
|
|
break;
|
|
|
|
default:
|
|
if ((beatmapSet as IBeatmapSetOnlineInfo)?.Availability.DownloadDisabled == true)
|
|
{
|
|
button.Enabled.Value = false;
|
|
button.TooltipText = "this beatmap is currently not available for download.";
|
|
}
|
|
|
|
break;
|
|
}
|
|
}, true);
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
FinishTransforms(true);
|
|
}
|
|
}
|
|
}
|