mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:37:51 +08:00
91 lines
2.9 KiB
C#
91 lines
2.9 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.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Effects;
|
|
|
|
namespace osu.Game.Users.Drawables
|
|
{
|
|
/// <summary>
|
|
/// An avatar which can update to a new user when needed.
|
|
/// </summary>
|
|
public class UpdateableAvatar : ModelBackedDrawable<User>
|
|
{
|
|
public User User
|
|
{
|
|
get => Model;
|
|
set => Model = value;
|
|
}
|
|
|
|
public new bool Masking
|
|
{
|
|
get => base.Masking;
|
|
set => base.Masking = value;
|
|
}
|
|
|
|
public new float CornerRadius
|
|
{
|
|
get => base.CornerRadius;
|
|
set => base.CornerRadius = value;
|
|
}
|
|
|
|
public new float CornerExponent
|
|
{
|
|
get => base.CornerExponent;
|
|
set => base.CornerExponent = value;
|
|
}
|
|
|
|
public new EdgeEffectParameters EdgeEffect
|
|
{
|
|
get => base.EdgeEffect;
|
|
set => base.EdgeEffect = value;
|
|
}
|
|
|
|
protected override double LoadDelay => 200;
|
|
|
|
private readonly bool isInteractive;
|
|
private readonly bool showUsernameTooltip;
|
|
private readonly bool showGuestOnNull;
|
|
|
|
/// <summary>
|
|
/// Construct a new UpdateableAvatar.
|
|
/// </summary>
|
|
/// <param name="user">The initial user to display.</param>
|
|
/// <param name="isInteractive">If set to true, hover/click sounds will play and clicking the avatar will open the user's profile.</param>
|
|
/// <param name="showUsernameTooltip">Whether to show the username rather than "view profile" on the tooltip. (note: this only applies if <paramref name="isInteractive"/> is also true)</param>
|
|
/// <param name="showGuestOnNull">Whether to show a default guest representation on null user (as opposed to nothing).</param>
|
|
public UpdateableAvatar(User user = null, bool isInteractive = true, bool showUsernameTooltip = false, bool showGuestOnNull = true)
|
|
{
|
|
this.isInteractive = isInteractive;
|
|
this.showUsernameTooltip = showUsernameTooltip;
|
|
this.showGuestOnNull = showGuestOnNull;
|
|
|
|
User = user;
|
|
}
|
|
|
|
protected override Drawable CreateDrawable(User user)
|
|
{
|
|
if (user == null && !showGuestOnNull)
|
|
return null;
|
|
|
|
if (isInteractive)
|
|
{
|
|
return new ClickableAvatar(user)
|
|
{
|
|
OpenOnClick = true,
|
|
ShowUsernameTooltip = showUsernameTooltip,
|
|
RelativeSizeAxes = Axes.Both,
|
|
};
|
|
}
|
|
else
|
|
{
|
|
return new DrawableAvatar(user)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|