2019-06-19 08:50:16 +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.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;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-22 18:49:20 +08:00
|
|
|
|
public new float CornerExponent
|
|
|
|
|
{
|
|
|
|
|
get => base.CornerExponent;
|
|
|
|
|
set => base.CornerExponent = value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 08:50:16 +08:00
|
|
|
|
public new EdgeEffectParameters EdgeEffect
|
|
|
|
|
{
|
|
|
|
|
get => base.EdgeEffect;
|
|
|
|
|
set => base.EdgeEffect = value;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-06 15:27:38 +08:00
|
|
|
|
protected override double LoadDelay => 200;
|
|
|
|
|
|
2021-06-17 15:25:55 +08:00
|
|
|
|
private readonly bool openOnClick;
|
|
|
|
|
private readonly bool showUsernameTooltip;
|
|
|
|
|
private readonly bool showGuestOnNull;
|
2019-06-19 08:50:16 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-06-17 15:25:55 +08:00
|
|
|
|
/// Construct a new UpdateableAvatar.
|
2019-06-19 08:50:16 +08:00
|
|
|
|
/// </summary>
|
2021-06-17 15:25:55 +08:00
|
|
|
|
/// <param name="user">The initial user to display.</param>
|
|
|
|
|
/// <param name="openOnClick">Whether to open the user's profile when clicked.</param>
|
|
|
|
|
/// <param name="showUsernameTooltip">Whether to show the username rather than "view profile" on the tooltip.</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 openOnClick = true, bool showUsernameTooltip = false, bool showGuestOnNull = true)
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
2021-06-17 15:25:55 +08:00
|
|
|
|
this.openOnClick = openOnClick;
|
|
|
|
|
this.showUsernameTooltip = showUsernameTooltip;
|
|
|
|
|
this.showGuestOnNull = showGuestOnNull;
|
|
|
|
|
|
2019-06-19 08:50:16 +08:00
|
|
|
|
User = user;
|
2019-06-21 22:47:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 08:50:16 +08:00
|
|
|
|
protected override Drawable CreateDrawable(User user)
|
|
|
|
|
{
|
2021-06-17 15:25:55 +08:00
|
|
|
|
if (user == null && !showGuestOnNull)
|
2019-06-19 08:50:16 +08:00
|
|
|
|
return null;
|
|
|
|
|
|
2020-12-26 20:54:10 +08:00
|
|
|
|
var avatar = new ClickableAvatar(user)
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
2021-06-17 15:25:55 +08:00
|
|
|
|
OpenOnClick = openOnClick,
|
|
|
|
|
ShowUsernameTooltip = showUsernameTooltip,
|
2019-06-19 08:50:16 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return avatar;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|