1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 23:37:20 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

106 lines
3.2 KiB
C#
Raw Normal View History

// 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
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
2021-11-18 13:35:42 +09:00
using osu.Framework.Input.Events;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2021-07-17 15:26:18 +02:00
using osu.Game.Resources.Localisation.Web;
2018-04-13 18:19:50 +09:00
2019-04-26 13:49:44 +09:00
namespace osu.Game.Overlays.Profile.Header.Components
{
public partial class SupporterIcon : OsuClickableContainer
{
private readonly Box background;
2018-12-22 16:51:24 +01:00
private readonly FillFlowContainer iconContainer;
2019-03-09 23:58:14 +01:00
private readonly CircularContainer content;
2018-04-13 18:19:50 +09:00
public override LocalisableString TooltipText => UsersStrings.ShowIsSupporter;
2018-04-13 18:19:50 +09:00
2019-04-28 20:11:36 +09:00
public int SupportLevel
{
2018-12-22 16:51:24 +01:00
set
{
int count = Math.Clamp(value, 0, 3);
if (count == 0)
2018-12-22 16:51:24 +01:00
{
2019-03-09 23:58:14 +01:00
content.Hide();
2018-12-22 16:51:24 +01:00
}
else
{
2019-03-09 23:58:14 +01:00
content.Show();
2018-12-22 16:51:24 +01:00
iconContainer.Clear();
for (int i = 0; i < count; i++)
{
2018-12-22 16:51:24 +01:00
iconContainer.Add(new SpriteIcon
{
2018-12-22 16:51:24 +01:00
Width = 12,
RelativeSizeAxes = Axes.Y,
2019-04-04 00:24:42 +02:00
Icon = FontAwesome.Solid.Heart,
2018-12-22 16:51:24 +01:00
});
}
2019-03-09 23:58:14 +01:00
iconContainer.Padding = new MarginPadding { Horizontal = DrawHeight / 2 };
2018-12-22 16:51:24 +01:00
}
}
}
public SupporterIcon()
{
AutoSizeAxes = Axes.X;
Child = content = new CircularContainer
2018-12-22 16:51:24 +01:00
{
2019-03-09 23:58:14 +01:00
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Masking = true,
Alpha = 0,
Children = new Drawable[]
2018-12-22 16:51:24 +01:00
{
2019-03-09 23:58:14 +01:00
background = new Box { RelativeSizeAxes = Axes.Both },
iconContainer = new FillFlowContainer
{
Direction = FillDirection.Horizontal,
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Height = 0.6f,
Anchor = Anchor.Centre,
2019-04-04 00:24:42 +02:00
Origin = Anchor.Centre
2019-03-09 23:58:14 +01:00
}
2018-12-22 16:51:24 +01:00
}
};
}
2018-04-13 18:19:50 +09:00
2021-11-18 13:35:42 +09:00
[Resolved]
2022-12-30 13:17:59 +01:00
private OsuColour colours { get; set; } = null!;
2021-11-18 13:35:42 +09:00
2022-12-30 13:17:59 +01:00
[BackgroundDependencyLoader]
private void load(OsuGame? game)
{
background.Colour = colours.Pink;
Action = () => game?.OpenUrlExternally(@"/home/support");
}
2021-11-18 13:35:42 +09:00
protected override bool OnHover(HoverEvent e)
{
background.FadeColour(colours.PinkLight, 500, Easing.OutQuint);
return base.OnHover(e);
}
protected override void OnHoverLost(HoverLostEvent e)
{
background.FadeColour(colours.Pink, 500, Easing.OutQuint);
base.OnHoverLost(e);
}
}
}