2019-03-10 06:58:14 +08:00
|
|
|
|
// 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.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using osuTK;
|
|
|
|
|
|
2019-04-26 12:49:44 +08:00
|
|
|
|
namespace osu.Game.Overlays.Profile.Header.Components
|
2019-03-10 06:58:14 +08:00
|
|
|
|
{
|
2019-11-29 12:52:23 +08:00
|
|
|
|
[LongRunningLoad]
|
2019-03-10 06:58:14 +08:00
|
|
|
|
public class DrawableBadge : CompositeDrawable, IHasTooltip
|
|
|
|
|
{
|
|
|
|
|
public static readonly Vector2 DRAWABLE_BADGE_SIZE = new Vector2(86, 40);
|
|
|
|
|
|
|
|
|
|
private readonly Badge badge;
|
|
|
|
|
|
|
|
|
|
public DrawableBadge(Badge badge)
|
|
|
|
|
{
|
|
|
|
|
this.badge = badge;
|
|
|
|
|
Size = DRAWABLE_BADGE_SIZE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(LargeTextureStore textures)
|
|
|
|
|
{
|
|
|
|
|
InternalChild = new Sprite
|
|
|
|
|
{
|
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Texture = textures.Get(badge.ImageUrl),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
InternalChild.FadeInFromZero(200);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string TooltipText => badge.Description;
|
|
|
|
|
}
|
|
|
|
|
}
|