2019-01-24 17:43:03 +09: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-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2023-06-24 00:59:36 +09:00
|
|
|
|
using JetBrains.Annotations;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 19:04:31 +09:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-03-27 19:29:27 +09:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-10-02 12:02:47 +09:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-05-09 14:52:46 +03:00
|
|
|
|
using osu.Game.Audio;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2021-10-29 17:58:46 +09:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-11-20 16:51:59 +09:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-11-27 15:04:05 +01:00
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet.Buttons
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
|
public partial class PlayButton : Container
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2021-01-11 01:47:04 +09:00
|
|
|
|
public IBindable<bool> Playing => playing;
|
|
|
|
|
|
|
|
|
|
private readonly BindableBool playing = new BindableBool();
|
|
|
|
|
|
2023-06-24 00:59:36 +09:00
|
|
|
|
[CanBeNull]
|
2018-05-25 00:37:53 +03:00
|
|
|
|
public PreviewTrack Preview { get; private set; }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-10-29 17:58:46 +09:00
|
|
|
|
private APIBeatmapSet beatmapSet;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-10-29 17:58:46 +09:00
|
|
|
|
public APIBeatmapSet BeatmapSet
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-02-28 13:58:19 +09:00
|
|
|
|
get => beatmapSet;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == beatmapSet) return;
|
2019-02-28 13:31:40 +09:00
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
beatmapSet = value;
|
|
|
|
|
|
2018-06-22 12:12:59 +09:00
|
|
|
|
Preview?.Stop();
|
|
|
|
|
Preview?.Expire();
|
|
|
|
|
Preview = null;
|
2018-06-01 21:06:37 +03:00
|
|
|
|
|
2021-01-11 01:47:04 +09:00
|
|
|
|
playing.Value = false;
|
2018-06-01 21:06:37 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
private Color4 hoverColour;
|
|
|
|
|
private readonly SpriteIcon icon;
|
2020-02-21 15:33:31 +09:00
|
|
|
|
private readonly LoadingSpinner loadingSpinner;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
private const float transition_duration = 500;
|
|
|
|
|
|
|
|
|
|
private bool loading
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value)
|
2018-06-22 14:27:36 +09:00
|
|
|
|
{
|
|
|
|
|
icon.FadeTo(0.5f, transition_duration, Easing.OutQuint);
|
2020-02-21 15:33:31 +09:00
|
|
|
|
loadingSpinner.Show();
|
2018-06-22 14:27:36 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
else
|
2018-06-22 14:27:36 +09:00
|
|
|
|
{
|
|
|
|
|
icon.FadeTo(1, transition_duration, Easing.OutQuint);
|
2020-02-21 15:33:31 +09:00
|
|
|
|
loadingSpinner.Hide();
|
2018-06-22 14:27:36 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-29 17:58:46 +09:00
|
|
|
|
public PlayButton(APIBeatmapSet setInfo = null)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
BeatmapSet = setInfo;
|
|
|
|
|
AddRange(new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
icon = new SpriteIcon
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-04-02 19:55:24 +09:00
|
|
|
|
Icon = FontAwesome.Solid.Play,
|
2018-04-13 18:19:50 +09:00
|
|
|
|
},
|
2020-02-21 15:33:31 +09:00
|
|
|
|
loadingSpinner = new LoadingSpinner
|
2018-06-22 14:27:36 +09:00
|
|
|
|
{
|
|
|
|
|
Size = new Vector2(15),
|
|
|
|
|
},
|
2018-04-13 18:19:50 +09:00
|
|
|
|
});
|
|
|
|
|
|
2021-01-11 01:47:04 +09:00
|
|
|
|
playing.ValueChanged += playingStateChanged;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-14 20:14:00 +07:00
|
|
|
|
[Resolved]
|
|
|
|
|
private PreviewTrackManager previewTrackManager { get; set; }
|
2018-06-21 16:19:07 +09:00
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-02-14 20:14:00 +07:00
|
|
|
|
private void load(OsuColour colour)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
hoverColour = colour.Yellow;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 12:02:47 +09:00
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2021-01-11 01:47:04 +09:00
|
|
|
|
playing.Toggle();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 12:02:47 +09:00
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
icon.FadeColour(hoverColour, 120, Easing.InOutQuint);
|
2018-10-02 12:02:47 +09:00
|
|
|
|
return base.OnHover(e);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 12:02:47 +09:00
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2021-01-11 01:47:04 +09:00
|
|
|
|
if (!playing.Value)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
icon.FadeColour(Color4.White, 120, Easing.InOutQuint);
|
2018-10-02 12:02:47 +09:00
|
|
|
|
base.OnHoverLost(e);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-21 18:56:34 +09:00
|
|
|
|
private void playingStateChanged(ValueChangedEvent<bool> e)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-04-02 19:55:24 +09:00
|
|
|
|
icon.Icon = e.NewValue ? FontAwesome.Solid.Stop : FontAwesome.Solid.Play;
|
2019-02-21 18:56:34 +09:00
|
|
|
|
icon.FadeColour(e.NewValue || IsHovered ? hoverColour : Color4.White, 120, Easing.InOutQuint);
|
2018-04-18 16:04:02 +09:00
|
|
|
|
|
2019-02-21 18:56:34 +09:00
|
|
|
|
if (e.NewValue)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2018-06-22 12:12:59 +09:00
|
|
|
|
if (BeatmapSet == null)
|
|
|
|
|
{
|
2021-01-11 01:47:04 +09:00
|
|
|
|
playing.Value = false;
|
2018-06-22 12:12:59 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Preview != null)
|
|
|
|
|
{
|
2019-05-23 12:07:22 +09:00
|
|
|
|
attemptStart();
|
2018-06-22 12:12:59 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
loading = true;
|
|
|
|
|
|
|
|
|
|
LoadComponentAsync(Preview = previewTrackManager.Get(beatmapSet), preview =>
|
|
|
|
|
{
|
2021-08-16 18:46:44 +09:00
|
|
|
|
// Make sure that we schedule to after the next audio frame to fix crashes in single-threaded execution.
|
|
|
|
|
// See: https://github.com/ppy/osu-framework/issues/4692
|
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
// beatmapset may have changed.
|
|
|
|
|
if (Preview != preview)
|
2022-08-05 14:15:27 +09:00
|
|
|
|
{
|
|
|
|
|
preview?.Dispose();
|
2021-08-16 18:46:44 +09:00
|
|
|
|
return;
|
2022-08-05 14:15:27 +09:00
|
|
|
|
}
|
2021-08-16 18:46:44 +09:00
|
|
|
|
|
|
|
|
|
AddInternal(preview);
|
|
|
|
|
loading = false;
|
|
|
|
|
// make sure that the update of value of Playing (and the ensuing value change callbacks)
|
|
|
|
|
// are marshaled back to the update thread.
|
|
|
|
|
preview.Stopped += () => Schedule(() => playing.Value = false);
|
|
|
|
|
|
|
|
|
|
// user may have changed their mind.
|
|
|
|
|
if (playing.Value)
|
|
|
|
|
attemptStart();
|
|
|
|
|
});
|
2018-06-22 12:12:59 +09:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Preview?.Stop();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
loading = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-23 12:07:22 +09:00
|
|
|
|
private void attemptStart()
|
|
|
|
|
{
|
|
|
|
|
if (Preview?.Start() != true)
|
2021-01-11 01:47:04 +09:00
|
|
|
|
playing.Value = false;
|
2019-05-23 12:07:22 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|