1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 14:07:27 +08:00
osu-lazer/osu.Game/Users/Drawables/UpdateableAvatar.cs

91 lines
2.8 KiB
C#
Raw Normal View History

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;
}
protected override double LoadDelay => 200;
private readonly bool openOnClick;
private readonly bool showUsernameTooltip;
private readonly bool showGuestOnNull;
2019-06-19 08:50:16 +08:00
/// <summary>
/// Construct a new UpdateableAvatar.
2019-06-19 08:50:16 +08:00
/// </summary>
/// <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
{
this.openOnClick = openOnClick;
this.showUsernameTooltip = showUsernameTooltip;
this.showGuestOnNull = showGuestOnNull;
2019-06-19 08:50:16 +08:00
User = user;
}
2019-06-19 08:50:16 +08:00
protected override Drawable CreateDrawable(User user)
{
if (user == null && !showGuestOnNull)
2019-06-19 08:50:16 +08:00
return null;
if (openOnClick)
{
return new ClickableAvatar(user)
{
OpenOnClick = true,
ShowUsernameTooltip = showUsernameTooltip,
RelativeSizeAxes = Axes.Both,
};
}
else
2019-06-19 08:50:16 +08:00
{
return new DrawableAvatar(user)
{
RelativeSizeAxes = Axes.Both,
};
}
2019-06-19 08:50:16 +08:00
}
}
}