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;
|
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>
|
2023-02-10 15:25:14 +08:00
|
|
|
|
public partial class UpdateableAvatar : ModelBackedDrawable<APIUser?>
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
2023-02-10 15:25:14 +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 showGuestOnNull;
|
2023-11-10 10:52:34 +08:00
|
|
|
|
private readonly bool showUserPanelOnHover;
|
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>
|
2023-11-10 16:57:16 +08:00
|
|
|
|
/// <param name="showUserPanelOnHover">
|
|
|
|
|
/// If set to true, the user status panel will be displayed in the tooltip.
|
|
|
|
|
/// Only has an effect if <see cref="isInteractive"/> is 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>
|
2023-11-10 10:52:34 +08:00
|
|
|
|
public UpdateableAvatar(APIUser? user = null, bool isInteractive = true, bool showUserPanelOnHover = 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.showGuestOnNull = showGuestOnNull;
|
2023-11-10 10:52:34 +08:00
|
|
|
|
this.showUserPanelOnHover = showUserPanelOnHover;
|
2021-06-17 15:25:55 +08:00
|
|
|
|
|
2019-06-19 08:50:16 +08:00
|
|
|
|
User = user;
|
2019-06-21 22:47:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-10 15:25:14 +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
|
|
|
|
{
|
2023-11-10 10:52:34 +08:00
|
|
|
|
return new ClickableAvatar(user, showUserPanelOnHover)
|
2021-09-09 14:33:47 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
};
|
|
|
|
|
}
|
2023-11-09 20:27:09 +08:00
|
|
|
|
|
|
|
|
|
return new DrawableAvatar(user)
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
2023-11-09 20:27:09 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
};
|
2019-06-19 08:50:16 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|