// Copyright (c) ppy Pty Ltd . 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; using osu.Game.Online.API.Requests.Responses; namespace osu.Game.Users.Drawables { /// /// An avatar which can update to a new user when needed. /// public partial class UpdateableAvatar : ModelBackedDrawable { public APIUser? 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 showGuestOnNull; private readonly bool showUserPanelOnHover; /// /// Construct a new UpdateableAvatar. /// /// The initial user to display. /// If set to true, hover/click sounds will play and clicking the avatar will open the user's profile. /// /// If set to true, the user status panel will be displayed in the tooltip. /// Only has an effect if is true. /// /// Whether to show a default guest representation on null user (as opposed to nothing). public UpdateableAvatar(APIUser? user = null, bool isInteractive = true, bool showUserPanelOnHover = false, bool showGuestOnNull = true) { this.isInteractive = isInteractive; this.showGuestOnNull = showGuestOnNull; this.showUserPanelOnHover = showUserPanelOnHover; User = user; } protected override Drawable? CreateDrawable(APIUser? user) { if (user == null && !showGuestOnNull) return null; if (isInteractive) { return new ClickableAvatar(user, showUserPanelOnHover) { RelativeSizeAxes = Axes.Both, }; } return new DrawableAvatar(user) { RelativeSizeAxes = Axes.Both, }; } } }