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.
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-06 15:09:21 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2019-01-11 08:12:19 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2019-04-26 12:49:44 +08:00
|
|
|
|
using osu.Game.Overlays.Profile.Header.Components;
|
2019-01-11 08:12:19 +08:00
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Header
|
|
|
|
|
{
|
2019-04-25 17:43:29 +08:00
|
|
|
|
public class CentreHeaderContainer : CompositeDrawable
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2019-04-25 19:05:59 +08:00
|
|
|
|
public readonly BindableBool DetailsVisible = new BindableBool(true);
|
|
|
|
|
public readonly Bindable<User> User = new Bindable<User>();
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2019-04-25 19:05:59 +08:00
|
|
|
|
private OverlinedInfoContainer hiddenDetailGlobal;
|
|
|
|
|
private OverlinedInfoContainer hiddenDetailCountry;
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2019-04-25 19:05:59 +08:00
|
|
|
|
public CentreHeaderContainer()
|
|
|
|
|
{
|
|
|
|
|
Height = 60;
|
|
|
|
|
}
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-01-30 04:55:41 +08:00
|
|
|
|
private void load(OverlayColourProvider colourProvider, TextureStore textures)
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2019-04-25 19:05:59 +08:00
|
|
|
|
Container<Drawable> hiddenDetailContainer;
|
|
|
|
|
Container<Drawable> expandedDetailContainer;
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2019-03-10 06:58:14 +08:00
|
|
|
|
InternalChildren = new Drawable[]
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-01-30 04:55:41 +08:00
|
|
|
|
Colour = colourProvider.Background4
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
Padding = new MarginPadding { Vertical = 10 },
|
|
|
|
|
Margin = new MarginPadding { Left = UserProfileOverlay.CONTENT_X_MARGIN },
|
|
|
|
|
Spacing = new Vector2(10, 0),
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2021-01-22 04:40:23 +08:00
|
|
|
|
new FollowersButton
|
2021-01-22 03:02:54 +08:00
|
|
|
|
{
|
|
|
|
|
User = { BindTarget = User }
|
|
|
|
|
},
|
|
|
|
|
new MappingSubscribersButton
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2019-04-26 12:29:58 +08:00
|
|
|
|
User = { BindTarget = User }
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
2019-04-26 12:49:44 +08:00
|
|
|
|
new MessageUserButton
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2019-03-10 06:58:14 +08:00
|
|
|
|
User = { BindTarget = User }
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Padding = new MarginPadding { Vertical = 10 },
|
|
|
|
|
Width = UserProfileOverlay.CONTENT_X_MARGIN,
|
2019-04-26 12:29:58 +08:00
|
|
|
|
Child = new ExpandDetailsButton
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2019-04-26 12:29:58 +08:00
|
|
|
|
DetailsVisible = { BindTarget = DetailsVisible }
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Margin = new MarginPadding { Right = UserProfileOverlay.CONTENT_X_MARGIN },
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2019-04-25 19:30:16 +08:00
|
|
|
|
new LevelBadge
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
Size = new Vector2(40),
|
2019-04-25 19:30:16 +08:00
|
|
|
|
User = { BindTarget = User }
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
2019-04-25 19:30:16 +08:00
|
|
|
|
expandedDetailContainer = new Container
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
Width = 200,
|
|
|
|
|
Height = 6,
|
|
|
|
|
Margin = new MarginPadding { Right = 50 },
|
2019-04-25 19:30:16 +08:00
|
|
|
|
Child = new LevelProgressBar
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2019-04-25 19:30:16 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
User = { BindTarget = User }
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
hiddenDetailContainer = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
Width = 200,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Spacing = new Vector2(10, 0),
|
|
|
|
|
Margin = new MarginPadding { Right = 50 },
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2019-03-10 06:58:14 +08:00
|
|
|
|
hiddenDetailGlobal = new OverlinedInfoContainer
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
Title = "Global Ranking",
|
2020-01-30 04:55:41 +08:00
|
|
|
|
LineColour = colourProvider.Highlight1
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
2019-03-10 06:58:14 +08:00
|
|
|
|
hiddenDetailCountry = new OverlinedInfoContainer
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
Title = "Country Ranking",
|
2020-01-30 04:55:41 +08:00
|
|
|
|
LineColour = colourProvider.Highlight1
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-04-25 19:05:59 +08:00
|
|
|
|
DetailsVisible.BindValueChanged(visible =>
|
2019-03-06 15:09:21 +08:00
|
|
|
|
{
|
2019-05-04 10:01:12 +08:00
|
|
|
|
hiddenDetailContainer.FadeTo(visible.NewValue ? 0 : 1, 200, Easing.OutQuint);
|
|
|
|
|
expandedDetailContainer.FadeTo(visible.NewValue ? 1 : 0, 200, Easing.OutQuint);
|
|
|
|
|
});
|
2019-04-25 19:05:59 +08:00
|
|
|
|
|
|
|
|
|
User.BindValueChanged(user => updateDisplay(user.NewValue));
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-10 06:58:14 +08:00
|
|
|
|
private void updateDisplay(User user)
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2021-02-17 13:50:48 +08:00
|
|
|
|
hiddenDetailGlobal.Content = user?.Statistics?.GlobalRank?.ToString("\\##,##0") ?? "-";
|
2021-02-18 20:37:52 +08:00
|
|
|
|
hiddenDetailCountry.Content = user?.Statistics?.CountryRank?.ToString("\\##,##0") ?? "-";
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|