2020-12-26 21:02:53 +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.Sprites;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
|
|
|
namespace osu.Game.Users.Drawables
|
|
|
|
{
|
|
|
|
[LongRunningLoad]
|
|
|
|
public class DrawableAvatar : Sprite
|
|
|
|
{
|
|
|
|
private readonly User user;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A simple, non-interactable avatar sprite for the specified user.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
|
|
|
|
public DrawableAvatar(User user = null)
|
|
|
|
{
|
|
|
|
this.user = user;
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
FillMode = FillMode.Fit;
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(LargeTextureStore textures)
|
|
|
|
{
|
2021-03-30 16:03:01 +08:00
|
|
|
if (user != null && user.Id > 1)
|
|
|
|
Texture = textures.Get(user.AvatarUrl);
|
2021-03-28 02:59:33 +08:00
|
|
|
|
2020-12-26 21:02:53 +08:00
|
|
|
Texture ??= textures.Get(@"Online/avatar-guest");
|
|
|
|
}
|
2020-12-26 21:06:09 +08:00
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
this.FadeInFromZero(300, Easing.OutQuint);
|
|
|
|
}
|
2020-12-26 21:02:53 +08:00
|
|
|
}
|
|
|
|
}
|