2023-11-05 02:03:23 +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.
|
|
|
|
|
2023-11-09 20:09:59 +08:00
|
|
|
using System.Linq;
|
2023-11-05 02:03:23 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Effects;
|
2023-11-09 20:09:59 +08:00
|
|
|
using osu.Framework.Testing;
|
2023-11-10 17:48:45 +08:00
|
|
|
using osu.Game.Graphics.Cursor;
|
2023-11-05 02:03:23 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
using osu.Game.Users;
|
|
|
|
using osu.Game.Users.Drawables;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
|
|
{
|
|
|
|
public partial class TestSceneUserClickableAvatar : OsuManualInputManagerTestScene
|
|
|
|
{
|
|
|
|
[SetUp]
|
|
|
|
public void SetUp() => Schedule(() =>
|
|
|
|
{
|
|
|
|
Child = new FillFlowContainer
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Spacing = new Vector2(10f),
|
2023-11-06 18:29:15 +08:00
|
|
|
Children = new[]
|
2023-11-05 02:03:23 +08:00
|
|
|
{
|
2023-11-06 21:52:06 +08:00
|
|
|
generateUser(@"peppy", 2, CountryCode.AU, @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg", false, "99EB47"),
|
2023-11-09 20:09:59 +08:00
|
|
|
generateUser(@"flyte", 3103765, CountryCode.JP, @"https://osu.ppy.sh/images/headers/profile-covers/c6.jpg", true),
|
|
|
|
generateUser(@"joshika39", 17032217, CountryCode.RS, @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg", false),
|
|
|
|
new UpdateableAvatar(),
|
|
|
|
new UpdateableAvatar()
|
2023-11-05 02:03:23 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestClickableAvatarHover()
|
|
|
|
{
|
2023-11-10 17:48:45 +08:00
|
|
|
AddStep("hover avatar with user panel", () => InputManager.MoveMouseTo(this.ChildrenOfType<ClickableAvatar>().ElementAt(1)));
|
|
|
|
AddUntilStep("wait for tooltip to show", () => this.ChildrenOfType<ClickableAvatar.UserCardTooltip>().FirstOrDefault()?.State.Value == Visibility.Visible);
|
|
|
|
AddStep("hover out", () => InputManager.MoveMouseTo(new Vector2(0)));
|
|
|
|
AddUntilStep("wait for tooltip to hide", () => this.ChildrenOfType<ClickableAvatar.UserCardTooltip>().FirstOrDefault()?.State.Value == Visibility.Hidden);
|
2023-11-09 20:09:59 +08:00
|
|
|
|
2023-11-10 17:48:45 +08:00
|
|
|
AddStep("hover avatar without user panel", () => InputManager.MoveMouseTo(this.ChildrenOfType<ClickableAvatar>().ElementAt(0)));
|
|
|
|
AddUntilStep("wait for tooltip to show", () => this.ChildrenOfType<OsuTooltipContainer.OsuTooltip>().FirstOrDefault()?.State.Value == Visibility.Visible);
|
|
|
|
AddStep("hover out", () => InputManager.MoveMouseTo(new Vector2(0)));
|
|
|
|
AddUntilStep("wait for tooltip to hide", () => this.ChildrenOfType<OsuTooltipContainer.OsuTooltip>().FirstOrDefault()?.State.Value == Visibility.Hidden);
|
2023-11-05 02:03:23 +08:00
|
|
|
}
|
2023-11-06 18:29:15 +08:00
|
|
|
|
2023-11-10 10:52:34 +08:00
|
|
|
private Drawable generateUser(string username, int id, CountryCode countryCode, string cover, bool showPanel, string? color = null)
|
2023-11-06 18:29:15 +08:00
|
|
|
{
|
2023-11-10 10:52:34 +08:00
|
|
|
var user = new APIUser
|
2023-11-09 20:27:09 +08:00
|
|
|
{
|
|
|
|
Username = username,
|
|
|
|
Id = id,
|
|
|
|
CountryCode = countryCode,
|
|
|
|
CoverUrl = cover,
|
|
|
|
Colour = color ?? "000000",
|
|
|
|
Status =
|
2023-11-06 18:29:15 +08:00
|
|
|
{
|
2023-12-07 01:21:44 +08:00
|
|
|
Value = UserStatus.Online
|
2023-11-09 20:27:09 +08:00
|
|
|
},
|
2023-11-10 10:52:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
return new ClickableAvatar(user, showPanel)
|
2023-11-09 20:27:09 +08:00
|
|
|
{
|
|
|
|
Width = 50,
|
|
|
|
Height = 50,
|
|
|
|
CornerRadius = 10,
|
|
|
|
Masking = true,
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
2023-11-06 18:29:15 +08:00
|
|
|
{
|
2023-11-10 16:54:48 +08:00
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
Radius = 1,
|
|
|
|
Colour = Color4.Black.Opacity(0.2f),
|
2023-11-09 20:27:09 +08:00
|
|
|
},
|
|
|
|
};
|
2023-11-06 18:29:15 +08:00
|
|
|
}
|
2023-11-05 02:03:23 +08:00
|
|
|
}
|
|
|
|
}
|