2021-10-23 23:59:52 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-10-24 01:27:07 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-10-23 23:59:52 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2021-10-24 00:41:31 +08:00
|
|
|
using osu.Game.Beatmaps.Drawables.Cards.Buttons;
|
2021-10-23 23:59:52 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-10-24 01:27:07 +08:00
|
|
|
using osu.Game.Overlays;
|
2022-12-03 21:16:21 +08:00
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2021-10-24 01:27:07 +08:00
|
|
|
using osuTK;
|
2021-10-23 23:59:52 +08:00
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.Drawables.Cards
|
|
|
|
{
|
|
|
|
public partial class BeatmapCardThumbnail : Container
|
|
|
|
{
|
|
|
|
public BindableBool Dimmed { get; } = new BindableBool();
|
|
|
|
|
2021-10-24 01:27:07 +08:00
|
|
|
public new MarginPadding Padding
|
|
|
|
{
|
|
|
|
get => foreground.Padding;
|
|
|
|
set => foreground.Padding = value;
|
|
|
|
}
|
2021-10-23 23:59:52 +08:00
|
|
|
|
|
|
|
private readonly UpdateableOnlineBeatmapSetCover cover;
|
2021-10-24 01:27:07 +08:00
|
|
|
private readonly Container foreground;
|
2021-10-24 00:26:28 +08:00
|
|
|
private readonly PlayButton playButton;
|
2022-12-03 21:16:21 +08:00
|
|
|
private readonly CircularProgress progress;
|
2021-10-23 23:59:52 +08:00
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
|
|
|
public BeatmapCardThumbnail(APIBeatmapSet beatmapSetInfo)
|
|
|
|
{
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
cover = new UpdateableOnlineBeatmapSetCover(BeatmapSetCoverType.List)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
OnlineInfo = beatmapSetInfo
|
|
|
|
},
|
2021-10-24 01:27:07 +08:00
|
|
|
foreground = new Container
|
2021-10-24 00:41:31 +08:00
|
|
|
{
|
2021-10-24 01:27:07 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
playButton = new PlayButton(beatmapSetInfo)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
},
|
2022-12-03 21:16:21 +08:00
|
|
|
progress = new CircularProgress
|
2021-10-24 01:27:07 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(50),
|
|
|
|
InnerRadius = 0.2f
|
|
|
|
},
|
|
|
|
content = new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
}
|
|
|
|
}
|
2021-10-23 23:59:52 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-10-24 01:27:07 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
|
|
|
{
|
|
|
|
progress.Colour = colourProvider.Highlight1;
|
|
|
|
}
|
|
|
|
|
2021-10-23 23:59:52 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2021-10-24 00:41:31 +08:00
|
|
|
Dimmed.BindValueChanged(_ => updateState());
|
2021-10-24 01:27:07 +08:00
|
|
|
|
2021-10-24 00:41:31 +08:00
|
|
|
playButton.Playing.BindValueChanged(_ => updateState(), true);
|
2021-10-24 01:27:07 +08:00
|
|
|
((IBindable<double>)progress.Current).BindTo(playButton.Progress);
|
|
|
|
|
2021-10-23 23:59:52 +08:00
|
|
|
FinishTransforms(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateState()
|
|
|
|
{
|
2021-10-24 00:41:31 +08:00
|
|
|
bool shouldDim = Dimmed.Value || playButton.Playing.Value;
|
|
|
|
|
2021-12-21 15:26:19 +08:00
|
|
|
playButton.FadeTo(shouldDim ? 1 : 0, BeatmapCard.TRANSITION_DURATION, Easing.OutQuint);
|
|
|
|
cover.FadeColour(shouldDim ? OsuColour.Gray(0.2f) : Color4.White, BeatmapCard.TRANSITION_DURATION, Easing.OutQuint);
|
2021-10-23 23:59:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|