mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
92 lines
3.1 KiB
C#
92 lines
3.1 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.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Colour;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Overlays.Profile.Header.Components;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Profile.Header
|
|
{
|
|
public class MedalHeaderContainer : CompositeDrawable
|
|
{
|
|
private FillFlowContainer badgeFlowContainer;
|
|
|
|
public readonly Bindable<APIUser> User = new Bindable<APIUser>();
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
Alpha = 0;
|
|
AutoSizeAxes = Axes.Y;
|
|
User.ValueChanged += e => updateDisplay(e.NewValue);
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = colourProvider.Background5,
|
|
},
|
|
new Container // artificial shadow
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 3,
|
|
Child = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = new ColourInfo
|
|
{
|
|
TopLeft = Color4.Black.Opacity(0.2f),
|
|
TopRight = Color4.Black.Opacity(0.2f),
|
|
BottomLeft = Color4.Black.Opacity(0),
|
|
BottomRight = Color4.Black.Opacity(0)
|
|
}
|
|
},
|
|
},
|
|
badgeFlowContainer = new FillFlowContainer
|
|
{
|
|
Direction = FillDirection.Full,
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Margin = new MarginPadding { Top = 5 },
|
|
Spacing = new Vector2(10, 10),
|
|
Padding = new MarginPadding { Horizontal = UserProfileOverlay.CONTENT_X_MARGIN, Vertical = 10 },
|
|
}
|
|
};
|
|
}
|
|
|
|
private void updateDisplay(APIUser user)
|
|
{
|
|
var badges = user.Badges;
|
|
badgeFlowContainer.Clear();
|
|
|
|
if (badges?.Length > 0)
|
|
{
|
|
Show();
|
|
|
|
for (int index = 0; index < badges.Length; index++)
|
|
{
|
|
int displayIndex = index;
|
|
LoadComponentAsync(new DrawableBadge(badges[index]), asyncBadge =>
|
|
{
|
|
// load in stable order regardless of async load order.
|
|
badgeFlowContainer.Insert(displayIndex, asyncBadge);
|
|
});
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Hide();
|
|
}
|
|
}
|
|
}
|
|
}
|