2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-14 21:58:28 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2023-11-02 16:16:25 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
2023-11-09 20:09:59 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2023-02-10 08:09:38 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2023-11-06 21:52:06 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-12-20 19:08:22 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2023-11-09 20:09:59 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2023-11-02 16:16:25 +08:00
|
|
|
|
using osuTK;
|
2023-11-09 20:09:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-06-18 02:55:07 +08:00
|
|
|
|
namespace osu.Game.Users.Drawables
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
public partial class ClickableAvatar : OsuClickableContainer, IHasCustomTooltip<ClickableAvatar.APIUserTooltipContent>
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
// public ITooltip<APIUser> GetCustomTooltip() => new APIUserTooltip(user!) { ShowTooltip = TooltipEnabled };
|
|
|
|
|
public ITooltip<APIUserTooltipContent> GetCustomTooltip() => new APIUserTooltip(new APIUserTooltipContent(user!));
|
|
|
|
|
|
2023-11-09 20:27:09 +08:00
|
|
|
|
public APIUserTooltipContent TooltipContent { get; }
|
2023-11-06 22:25:12 +08:00
|
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
|
private readonly APIUser? user;
|
|
|
|
|
private bool tooltipEnabled;
|
|
|
|
|
|
|
|
|
|
public override LocalisableString TooltipText => user!.Username;
|
2023-11-02 16:16:25 +08:00
|
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
|
public bool ShowUsernameOnly
|
2023-11-06 21:52:06 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
get => tooltipEnabled;
|
|
|
|
|
set
|
2023-11-06 21:52:06 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
tooltipEnabled = value;
|
2023-11-09 20:27:09 +08:00
|
|
|
|
TooltipContent.ShowUsernameOnly = ShowUsernameOnly;
|
2023-11-06 21:52:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-10 15:25:14 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGame? game { get; set; }
|
2018-12-20 19:08:22 +08:00
|
|
|
|
|
2017-03-27 23:04:51 +08:00
|
|
|
|
/// <summary>
|
2020-12-26 21:02:53 +08:00
|
|
|
|
/// A clickable avatar for the specified user, with UI sounds included.
|
2017-03-27 23:04:51 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
|
2023-02-10 15:25:14 +08:00
|
|
|
|
public ClickableAvatar(APIUser? user = null)
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
2017-03-27 23:04:51 +08:00
|
|
|
|
this.user = user;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-03-28 21:50:31 +08:00
|
|
|
|
if (user?.Id != APIUser.SYSTEM_USER_ID)
|
2023-02-10 04:59:26 +08:00
|
|
|
|
Action = openProfile;
|
2018-12-20 19:08:22 +08:00
|
|
|
|
|
2023-11-09 20:27:09 +08:00
|
|
|
|
TooltipContent = new APIUserTooltipContent(user!, ShowUsernameOnly);
|
2023-11-06 21:52:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-17 15:25:55 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 08:06:39 +08:00
|
|
|
|
private void load()
|
2021-06-17 15:25:55 +08:00
|
|
|
|
{
|
2023-02-10 04:59:26 +08:00
|
|
|
|
LoadComponentAsync(new DrawableAvatar(user), Add);
|
2018-12-20 19:08:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void openProfile()
|
|
|
|
|
{
|
2022-03-09 13:39:02 +08:00
|
|
|
|
if (user?.Id > 1 || !string.IsNullOrEmpty(user?.Username))
|
2021-11-05 12:53:00 +08:00
|
|
|
|
game?.ShowUser(user);
|
2018-12-20 19:08:22 +08:00
|
|
|
|
}
|
2023-02-10 08:09:38 +08:00
|
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
|
{
|
|
|
|
|
if (!Enabled.Value)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return base.OnClick(e);
|
|
|
|
|
}
|
2023-11-02 16:16:25 +08:00
|
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
|
public partial class APIUserTooltip : VisibilityContainer, ITooltip<APIUserTooltipContent>
|
2023-11-02 16:16:25 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
private OsuSpriteText text;
|
|
|
|
|
private APIUserTooltipContent content;
|
2023-11-09 20:27:09 +08:00
|
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
|
public APIUserTooltip(APIUserTooltipContent content)
|
2023-11-06 18:54:57 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
this.content = content;
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
Masking = true;
|
|
|
|
|
CornerRadius = 5;
|
|
|
|
|
|
|
|
|
|
Child = new UserGridPanel(content.User)
|
|
|
|
|
{
|
|
|
|
|
Width = 300
|
|
|
|
|
};
|
2023-11-09 20:27:09 +08:00
|
|
|
|
text = new OsuSpriteText
|
2023-11-09 20:09:59 +08:00
|
|
|
|
{
|
|
|
|
|
Text = this.content.User.Username
|
|
|
|
|
};
|
2023-11-06 18:54:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-02 16:16:25 +08:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
if (content.ShowUsernameOnly)
|
2023-11-06 18:54:57 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
Child = new UserGridPanel(content.User)
|
|
|
|
|
{
|
|
|
|
|
Width = 300
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0;
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Gray,
|
|
|
|
|
},
|
2023-11-09 20:27:09 +08:00
|
|
|
|
text = new OsuSpriteText
|
2023-11-09 20:09:59 +08:00
|
|
|
|
{
|
|
|
|
|
Font = FrameworkFont.Regular.With(size: 16),
|
|
|
|
|
Padding = new MarginPadding(5),
|
|
|
|
|
Text = content.User.Username
|
|
|
|
|
}
|
|
|
|
|
};
|
2023-11-06 18:54:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-02 16:16:25 +08:00
|
|
|
|
this.FadeIn(20, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut() => this.FadeOut(80, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
public void Move(Vector2 pos) => Position = pos;
|
|
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
|
public void SetContent(APIUserTooltipContent content)
|
|
|
|
|
{
|
|
|
|
|
this.content = content;
|
|
|
|
|
text.Text = this.content.User.Username;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class APIUserTooltipContent
|
|
|
|
|
{
|
|
|
|
|
public APIUser User { get; }
|
|
|
|
|
public bool ShowUsernameOnly { get; set; }
|
|
|
|
|
|
|
|
|
|
public APIUserTooltipContent(APIUser user, bool showUsernameOnly = false)
|
2023-11-02 16:16:25 +08:00
|
|
|
|
{
|
2023-11-09 20:09:59 +08:00
|
|
|
|
User = user;
|
|
|
|
|
ShowUsernameOnly = showUsernameOnly;
|
2023-11-02 16:16:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-14 21:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|