1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:07:24 +08:00
osu-lazer/osu.Game/Overlays/Profile/Header/Components/SupporterIcon.cs

86 lines
2.6 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 17:19:50 +08:00
using System;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
2019-04-26 12:49:44 +08:00
namespace osu.Game.Overlays.Profile.Header.Components
2018-04-13 17:19:50 +08:00
{
2019-03-10 06:58:14 +08:00
public class SupporterIcon : CompositeDrawable, IHasTooltip
2018-04-13 17:19:50 +08:00
{
private readonly Box background;
2018-12-22 23:51:24 +08:00
private readonly FillFlowContainer iconContainer;
2019-03-10 06:58:14 +08:00
private readonly CircularContainer content;
2018-04-13 17:19:50 +08:00
public string TooltipText => "osu!supporter";
2019-04-28 19:11:36 +08:00
public int SupportLevel
2018-04-13 17:19:50 +08:00
{
2018-12-22 23:51:24 +08:00
set
2018-04-13 17:19:50 +08:00
{
int count = Math.Clamp(value, 0, 3);
if (count == 0)
2018-12-22 23:51:24 +08:00
{
2019-03-10 06:58:14 +08:00
content.Hide();
2018-12-22 23:51:24 +08:00
}
else
{
2019-03-10 06:58:14 +08:00
content.Show();
2018-12-22 23:51:24 +08:00
iconContainer.Clear();
for (int i = 0; i < count; i++)
2018-04-13 17:19:50 +08:00
{
2018-12-22 23:51:24 +08:00
iconContainer.Add(new SpriteIcon
2018-04-13 17:19:50 +08:00
{
2018-12-22 23:51:24 +08:00
Width = 12,
RelativeSizeAxes = Axes.Y,
2019-04-04 06:24:42 +08:00
Icon = FontAwesome.Solid.Heart,
2018-12-22 23:51:24 +08:00
});
2018-04-13 17:19:50 +08:00
}
2019-03-10 06:58:14 +08:00
iconContainer.Padding = new MarginPadding { Horizontal = DrawHeight / 2 };
2018-12-22 23:51:24 +08:00
}
}
}
public SupporterIcon()
{
AutoSizeAxes = Axes.X;
2019-03-10 06:58:14 +08:00
InternalChild = content = new CircularContainer
2018-12-22 23:51:24 +08:00
{
2019-03-10 06:58:14 +08:00
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Masking = true,
Alpha = 0,
Children = new Drawable[]
2018-12-22 23:51:24 +08:00
{
2019-03-10 06:58:14 +08: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 06:24:42 +08:00
Origin = Anchor.Centre
2019-03-10 06:58:14 +08:00
}
2018-12-22 23:51:24 +08:00
}
2018-04-13 17:19:50 +08:00
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
background.Colour = colours.Pink;
}
}
}