1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 10:47:45 +08:00

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 18:19:50 +09:00
using System;
2018-04-13 18:19:50 +09: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 18:19:50 +09:00
using osu.Game.Graphics;
2019-04-26 13:49:44 +09:00
namespace osu.Game.Overlays.Profile.Header.Components
2018-04-13 18:19:50 +09:00
{
2019-03-09 23:58:14 +01:00
public class SupporterIcon : CompositeDrawable, IHasTooltip
2018-04-13 18:19:50 +09:00
{
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 string TooltipText => "osu!supporter";
2019-04-28 20:11:36 +09:00
public int SupportLevel
2018-04-13 18:19:50 +09:00
{
2018-12-22 16:51:24 +01:00
set
2018-04-13 18:19:50 +09:00
{
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-04-13 18:19:50 +09:00
{
2018-12-22 16:51:24 +01:00
iconContainer.Add(new SpriteIcon
2018-04-13 18:19:50 +09:00
{
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
});
2018-04-13 18:19:50 +09: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;
2019-03-09 23:58:14 +01:00
InternalChild = 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
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
background.Colour = colours.Pink;
}
}
}