mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
91 lines
2.8 KiB
C#
91 lines
2.8 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Backgrounds;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet.Buttons
|
|
{
|
|
public class FavouriteButton : HeaderButton
|
|
{
|
|
public readonly Bindable<BeatmapSetInfo> BeatmapSet = new Bindable<BeatmapSetInfo>();
|
|
|
|
private readonly Bindable<bool> favourited = new Bindable<bool>();
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Container pink;
|
|
SpriteIcon icon;
|
|
AddRange(new Drawable[]
|
|
{
|
|
pink = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0f,
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = OsuColour.FromHex(@"9f015f"),
|
|
},
|
|
new Triangles
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
ColourLight = OsuColour.FromHex(@"cb2187"),
|
|
ColourDark = OsuColour.FromHex(@"9f015f"),
|
|
TriangleScale = 1.5f,
|
|
},
|
|
},
|
|
},
|
|
icon = new SpriteIcon
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Icon = FontAwesome.Regular.Heart,
|
|
Size = new Vector2(18),
|
|
Shadow = false,
|
|
},
|
|
});
|
|
|
|
BeatmapSet.BindValueChanged(setInfo =>
|
|
{
|
|
if (setInfo.NewValue?.OnlineInfo?.HasFavourited == null)
|
|
return;
|
|
|
|
favourited.Value = setInfo.NewValue.OnlineInfo.HasFavourited;
|
|
});
|
|
|
|
favourited.ValueChanged += favourited =>
|
|
{
|
|
if (favourited.NewValue)
|
|
{
|
|
pink.FadeIn(200);
|
|
icon.Icon = FontAwesome.Solid.Heart;
|
|
}
|
|
else
|
|
{
|
|
pink.FadeOut(200);
|
|
icon.Icon = FontAwesome.Regular.Heart;
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void UpdateAfterChildren()
|
|
{
|
|
base.UpdateAfterChildren();
|
|
|
|
Width = DrawHeight;
|
|
}
|
|
}
|
|
}
|