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
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2018-12-20 19:08:22 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-06-18 02:55:07 +08:00
|
|
|
|
namespace osu.Game.Users.Drawables
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-01 18:40:45 +08:00
|
|
|
|
[LongRunningLoad]
|
2019-06-18 02:55:07 +08:00
|
|
|
|
public class DrawableAvatar : Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-12-20 19:08:22 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether to open the user's profile when clicked.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public readonly BindableBool OpenOnClick = new BindableBool(true);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly User user;
|
|
|
|
|
|
2018-12-20 19:08:22 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
|
private OsuGame game { get; set; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// An avatar for specified user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
|
2019-06-18 02:55:07 +08:00
|
|
|
|
public DrawableAvatar(User user = null)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
this.user = user;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-09-09 01:41:47 +08:00
|
|
|
|
private void load(LargeTextureStore textures)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (textures == null)
|
|
|
|
|
throw new ArgumentNullException(nameof(textures));
|
|
|
|
|
|
|
|
|
|
Texture texture = null;
|
2018-08-31 06:04:40 +08:00
|
|
|
|
if (user != null && user.Id > 1) texture = textures.Get($@"https://a.ppy.sh/{user.Id}");
|
2020-06-03 15:48:44 +08:00
|
|
|
|
texture ??= textures.Get(@"Online/avatar-guest");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-20 19:08:22 +08:00
|
|
|
|
ClickableArea clickableArea;
|
|
|
|
|
Add(clickableArea = new ClickableArea
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-12-20 19:08:22 +08:00
|
|
|
|
Child = new Sprite
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Texture = texture,
|
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre
|
|
|
|
|
},
|
|
|
|
|
Action = openProfile
|
2018-04-13 17:19:50 +08:00
|
|
|
|
});
|
2018-12-20 19:08:22 +08:00
|
|
|
|
|
|
|
|
|
clickableArea.Enabled.BindTo(OpenOnClick);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void openProfile()
|
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
if (!OpenOnClick.Value)
|
2018-12-20 19:08:22 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2020-03-20 19:35:27 +08:00
|
|
|
|
if (user?.Id > 1)
|
2018-12-20 19:08:22 +08:00
|
|
|
|
game?.ShowUser(user.Id);
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-19 10:28:24 +08:00
|
|
|
|
private class ClickableArea : OsuClickableContainer
|
2018-12-20 19:08:22 +08:00
|
|
|
|
{
|
2020-01-15 03:26:54 +08:00
|
|
|
|
public override string TooltipText => Enabled.Value ? @"view profile" : null;
|
2018-12-20 19:08:22 +08:00
|
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
if (!Enabled.Value)
|
2018-12-20 19:08:22 +08:00
|
|
|
|
return false;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-12-20 19:08:22 +08:00
|
|
|
|
return base.OnClick(e);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|