1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 00:07:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Header/TopHeaderContainer.cs

215 lines
11 KiB
C#
Raw Normal View History

2019-01-28 06:45:00 +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.Allocation;
2019-03-10 06:58:14 +08:00
using osu.Framework.Bindables;
using osu.Framework.Extensions;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.Cursor;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
2019-04-26 12:49:44 +08:00
using osu.Game.Overlays.Profile.Header.Components;
2023-01-01 02:36:17 +08:00
using osu.Game.Users;
using osu.Game.Users.Drawables;
using osuTK;
namespace osu.Game.Overlays.Profile.Header
{
2022-11-24 13:32:20 +08:00
public partial class TopHeaderContainer : CompositeDrawable
{
private const float avatar_size = 110;
2023-01-11 02:24:54 +08:00
public readonly Bindable<UserProfileData?> User = new Bindable<UserProfileData?>();
[Resolved]
2022-12-30 20:17:59 +08:00
private IAPIProvider api { get; set; } = null!;
2023-01-01 02:36:17 +08:00
private UserCoverBackground cover = null!;
2022-12-30 20:17:59 +08:00
private SupporterIcon supporterTag = null!;
private UpdateableAvatar avatar = null!;
private OsuSpriteText usernameText = null!;
private ExternalLinkButton openUserExternally = null!;
private OsuSpriteText titleText = null!;
private UpdateableFlag userFlag = null!;
private OsuSpriteText userCountryText = null!;
private GroupBadgeFlow groupBadgeFlow = null!;
[BackgroundDependencyLoader]
2020-01-30 04:48:02 +08:00
private void load(OverlayColourProvider colourProvider)
{
2023-01-01 02:36:17 +08:00
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
2019-03-10 06:58:14 +08:00
InternalChildren = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2023-01-01 01:24:45 +08:00
Colour = colourProvider.Background4,
},
new FillFlowContainer
{
2023-01-01 02:36:17 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
2023-01-01 02:36:17 +08:00
cover = new ProfileCoverBackground
{
2023-01-01 02:36:17 +08:00
RelativeSizeAxes = Axes.X,
Height = 250,
},
2023-01-01 02:36:17 +08:00
new FillFlowContainer
{
2023-01-01 02:36:17 +08:00
Direction = FillDirection.Horizontal,
Margin = new MarginPadding
{
2023-01-01 02:36:17 +08:00
Left = UserProfileOverlay.CONTENT_X_MARGIN,
Vertical = 10
},
Height = avatar_size,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Children = new Drawable[]
{
avatar = new UpdateableAvatar(isInteractive: false, showGuestOnNull: false)
{
Size = new Vector2(avatar_size),
Masking = true,
CornerRadius = avatar_size * 0.25f,
},
new OsuContextMenuContainer
{
2023-01-01 02:36:17 +08:00
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Child = new Container
{
2023-01-01 02:36:17 +08:00
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Padding = new MarginPadding { Left = 10 },
Children = new Drawable[]
{
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
2023-01-01 02:36:17 +08:00
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
2023-01-01 02:36:17 +08:00
new FillFlowContainer
{
2023-01-01 02:36:17 +08:00
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
usernameText = new OsuSpriteText
{
Font = OsuFont.GetFont(size: 24, weight: FontWeight.Regular)
},
openUserExternally = new ExternalLinkButton
{
Margin = new MarginPadding { Left = 5 },
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
},
}
},
2023-01-01 02:36:17 +08:00
titleText = new OsuSpriteText
{
2023-01-01 02:36:17 +08:00
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Regular)
},
groupBadgeFlow = new GroupBadgeFlow
2023-01-11 12:11:38 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
}
}
},
new FillFlowContainer
{
2023-01-01 02:36:17 +08:00
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
Direction = FillDirection.Vertical,
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
2023-01-01 02:36:17 +08:00
supporterTag = new SupporterIcon
{
2023-01-01 02:36:17 +08:00
Height = 20,
Margin = new MarginPadding { Top = 5 }
},
2023-01-01 02:36:17 +08:00
new Box
{
2023-01-01 02:36:17 +08:00
RelativeSizeAxes = Axes.X,
Height = 1.5f,
Margin = new MarginPadding { Top = 10 },
Colour = colourProvider.Light1,
2023-01-01 02:36:17 +08:00
},
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Margin = new MarginPadding { Top = 5 },
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
userFlag = new UpdateableFlag
{
Size = new Vector2(28, 20),
ShowPlaceholderOnUnknown = false,
},
userCountryText = new OsuSpriteText
{
Font = OsuFont.GetFont(size: 17.5f, weight: FontWeight.Regular),
Margin = new MarginPadding { Left = 10 },
Origin = Anchor.CentreLeft,
Anchor = Anchor.CentreLeft,
Colour = colourProvider.Light1,
}
}
},
}
2023-01-01 02:36:17 +08:00
}
}
}
}
}
}
}
},
};
2023-01-11 02:24:54 +08:00
User.BindValueChanged(user => updateUser(user.NewValue));
}
private void updateUser(UserProfileData? data)
{
var user = data?.User;
2023-01-01 02:36:17 +08:00
cover.User = user;
2019-03-10 06:58:14 +08:00
avatar.User = user;
usernameText.Text = user?.Username ?? string.Empty;
openUserExternally.Link = $@"{api.WebsiteRootUrl}/users/{user?.Id ?? 0}";
2022-07-18 13:40:34 +08:00
userFlag.CountryCode = user?.CountryCode ?? default;
userCountryText.Text = (user?.CountryCode ?? default).GetDescription();
2019-04-28 19:11:36 +08:00
supporterTag.SupportLevel = user?.SupportLevel ?? 0;
titleText.Text = user?.Title ?? string.Empty;
titleText.Colour = Color4Extensions.FromHex(user?.Colour ?? "fff");
groupBadgeFlow.User.Value = user;
}
2023-01-01 02:36:17 +08:00
private partial class ProfileCoverBackground : UserCoverBackground
{
protected override double LoadDelay => 0;
public ProfileCoverBackground()
{
Masking = true;
}
}
}
}