1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 11:07:25 +08:00
osu-lazer/osu.Game/Users/Drawables/ClickableAvatar.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

128 lines
3.9 KiB
C#
Raw Normal View History

// 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
using System.Linq;
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;
using osu.Framework.Input.Events;
2018-12-20 19:08:22 +08:00
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Cursor;
using osu.Game.Localisation;
2023-11-09 21:27:29 +08:00
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
2023-11-02 16:16:25 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Users.Drawables
{
2023-11-09 21:27:29 +08:00
public partial class ClickableAvatar : OsuClickableContainer, IHasCustomTooltip<APIUser?>
{
public ITooltip<APIUser?> GetCustomTooltip() => showCardOnHover ? new UserCardTooltip() : new NoCardTooltip();
2023-11-09 20:09:59 +08:00
2023-11-09 21:27:29 +08:00
public APIUser? TooltipContent { get; }
2023-11-06 22:25:12 +08:00
2023-11-09 20:09:59 +08:00
private readonly APIUser? user;
private readonly bool showCardOnHover;
2023-11-06 21:52:06 +08:00
[Resolved]
private OsuGame? game { get; set; }
2018-12-20 19:08:22 +08:00
/// <summary>
/// A clickable avatar for the specified user, with UI sounds included.
/// </summary>
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
/// <param name="showCardOnHover"></param>
public ClickableAvatar(APIUser? user = null, bool showCardOnHover = false)
{
if (user?.Id != APIUser.SYSTEM_USER_ID)
Action = openProfile;
2018-12-20 19:08:22 +08:00
this.showCardOnHover = showCardOnHover;
TooltipContent = this.user = user ?? new GuestUser();
2023-11-06 21:52:06 +08:00
}
[BackgroundDependencyLoader]
2022-01-15 08:06:39 +08:00
private void load()
{
LoadComponentAsync(new DrawableAvatar(user), Add);
2018-12-20 19:08:22 +08:00
}
private void openProfile()
{
if (user?.Id > 1 || !string.IsNullOrEmpty(user?.Username))
game?.ShowUser(user);
2018-12-20 19:08:22 +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 21:27:29 +08:00
public partial class UserCardTooltip : VisibilityContainer, ITooltip<APIUser?>
2023-11-02 16:16:25 +08:00
{
2023-11-09 21:27:29 +08:00
public UserCardTooltip()
2023-11-06 18:54:57 +08:00
{
2023-11-09 20:09:59 +08:00
AutoSizeAxes = Axes.Both;
2023-11-06 18:54:57 +08:00
}
protected override void PopIn() => this.FadeIn(150, Easing.OutQuint);
protected override void PopOut() => this.Delay(150).FadeOut(500, Easing.OutQuint);
public void Move(Vector2 pos) => Position = pos;
private APIUser? user;
public void SetContent(APIUser? content)
{
if (content == user && Children.Any())
return;
user = content;
if (user != null)
{
LoadComponentAsync(new UserGridPanel(user)
{
Width = 300,
}, panel => Child = panel);
}
else
{
var tooltip = new OsuTooltipContainer.OsuTooltip();
tooltip.SetContent(ContextMenuStrings.ViewProfile);
tooltip.Show();
Child = tooltip;
}
}
}
public partial class NoCardTooltip : VisibilityContainer, ITooltip<APIUser?>
{
public NoCardTooltip()
2023-11-02 16:16:25 +08:00
{
var tooltip = new OsuTooltipContainer.OsuTooltip();
tooltip.SetContent(ContextMenuStrings.ViewProfile);
tooltip.Show();
Child = tooltip;
2023-11-02 16:16:25 +08:00
}
protected override void PopIn() => this.FadeIn(150, Easing.OutQuint);
protected override void PopOut() => this.Delay(150).FadeOut(500, Easing.OutQuint);
2023-11-02 16:16:25 +08:00
public void Move(Vector2 pos) => Position = pos;
public void SetContent(APIUser? content)
2023-11-02 16:16:25 +08:00
{
}
2023-11-02 16:16:25 +08:00
}
}
}