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.
2022-06-17 15:37:17 +08:00
#nullable disable
2019-06-19 08:50:16 +08:00
using osu.Framework.Graphics ;
using osu.Framework.Graphics.Containers ;
using osu.Framework.Graphics.Effects ;
2021-11-04 17:02:44 +08:00
using osu.Game.Online.API.Requests.Responses ;
2019-06-19 08:50:16 +08:00
namespace osu.Game.Users.Drawables
{
/// <summary>
/// An avatar which can update to a new user when needed.
/// </summary>
2021-11-04 17:02:44 +08:00
public partial class UpdateableAvatar : ModelBackedDrawable < APIUser >
2019-06-19 08:50:16 +08:00
{
2021-11-04 17:02:44 +08:00
public APIUser User
2019-06-19 08:50:16 +08:00
{
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-09-10 12:01:54 +08:00
private readonly bool isInteractive ;
2021-06-17 15:25:55 +08:00
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>
2021-09-10 12:01:54 +08:00
/// <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>
2021-06-17 15:25:55 +08:00
/// <param name="showGuestOnNull">Whether to show a default guest representation on null user (as opposed to nothing).</param>
2021-11-04 17:02:44 +08:00
public UpdateableAvatar ( APIUser user = null , bool isInteractive = true , bool showUsernameTooltip = false , bool showGuestOnNull = true )
2019-06-19 08:50:16 +08:00
{
2021-09-10 12:01:54 +08:00
this . isInteractive = isInteractive ;
2021-06-17 15:25:55 +08:00
this . showUsernameTooltip = showUsernameTooltip ;
this . showGuestOnNull = showGuestOnNull ;
2019-06-19 08:50:16 +08:00
User = user ;
2019-06-21 22:47:19 +08:00
}
2021-11-04 17:02:44 +08:00
protected override Drawable CreateDrawable ( APIUser user )
2019-06-19 08:50:16 +08:00
{
2021-06-17 15:25:55 +08:00
if ( user = = null & & ! showGuestOnNull )
2019-06-19 08:50:16 +08:00
return null ;
2021-09-10 12:01:54 +08:00
if ( isInteractive )
2021-09-09 14:33:47 +08:00
{
2021-09-10 11:25:41 +08:00
return new ClickableAvatar ( user )
2021-09-09 14:33:47 +08:00
{
2021-09-10 11:25:41 +08:00
OpenOnClick = true ,
ShowUsernameTooltip = showUsernameTooltip ,
2021-09-09 14:33:47 +08:00
RelativeSizeAxes = Axes . Both ,
} ;
}
2021-09-10 11:25:41 +08:00
else
2019-06-19 08:50:16 +08:00
{
2021-09-10 11:25:41 +08:00
return new DrawableAvatar ( user )
{
RelativeSizeAxes = Axes . Both ,
} ;
}
2019-06-19 08:50:16 +08:00
}
}
}