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