2020-01-30 04:37:51 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-11-28 21:41:29 +08:00
|
|
|
|
using System;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-06-22 06:11:04 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Overlays.Profile;
|
|
|
|
|
using osu.Game.Overlays.Profile.Sections;
|
|
|
|
|
using osu.Game.Users;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2019-05-14 13:18:06 +08:00
|
|
|
|
public class UserProfileOverlay : FullscreenOverlay
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private ProfileSection lastSection;
|
|
|
|
|
private ProfileSection[] sections;
|
|
|
|
|
private GetUserRequest userReq;
|
|
|
|
|
protected ProfileHeader Header;
|
2019-06-22 06:11:04 +08:00
|
|
|
|
private ProfileSectionsContainer sectionsContainer;
|
2020-03-26 22:44:22 +08:00
|
|
|
|
private ProfileSectionTabControl tabs;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-22 23:51:24 +08:00
|
|
|
|
public const float CONTENT_X_MARGIN = 70;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-24 17:24:35 +08:00
|
|
|
|
public UserProfileOverlay()
|
2020-01-30 11:36:47 +08:00
|
|
|
|
: base(OverlayColourScheme.Pink)
|
2020-01-24 17:24:35 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-05 09:23:23 +08:00
|
|
|
|
public void ShowUser(long userId) => ShowUser(new User { Id = userId });
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public void ShowUser(User user, bool fetchOnline = true)
|
|
|
|
|
{
|
2019-06-05 00:33:55 +08:00
|
|
|
|
if (user == User.SYSTEM_USER)
|
|
|
|
|
return;
|
2018-09-13 12:40:46 +08:00
|
|
|
|
|
2018-09-05 09:23:23 +08:00
|
|
|
|
Show();
|
|
|
|
|
|
2019-03-10 06:58:14 +08:00
|
|
|
|
if (user.Id == Header?.User.Value?.Id)
|
2018-09-05 09:23:23 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
userReq?.Cancel();
|
|
|
|
|
Clear();
|
|
|
|
|
lastSection = null;
|
|
|
|
|
|
2019-09-27 14:46:11 +08:00
|
|
|
|
sections = !user.IsBot
|
|
|
|
|
? new ProfileSection[]
|
2019-09-27 14:32:46 +08:00
|
|
|
|
{
|
|
|
|
|
//new AboutSection(),
|
|
|
|
|
new RecentSection(),
|
|
|
|
|
new RanksSection(),
|
|
|
|
|
//new MedalsSection(),
|
|
|
|
|
new HistoricalSection(),
|
|
|
|
|
new BeatmapsSection(),
|
|
|
|
|
new KudosuSection()
|
2019-09-27 14:46:11 +08:00
|
|
|
|
}
|
2019-11-28 21:41:29 +08:00
|
|
|
|
: Array.Empty<ProfileSection>();
|
2018-09-05 09:23:23 +08:00
|
|
|
|
|
2020-03-26 22:44:22 +08:00
|
|
|
|
tabs = new ProfileSectionTabControl
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Add(new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-01-30 11:50:15 +08:00
|
|
|
|
Colour = ColourProvider.Background6
|
2018-04-13 17:19:50 +08:00
|
|
|
|
});
|
|
|
|
|
|
2019-06-22 06:11:04 +08:00
|
|
|
|
Add(sectionsContainer = new ProfileSectionsContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-12-22 23:51:24 +08:00
|
|
|
|
ExpandableHeader = Header = new ProfileHeader(),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
FixedHeader = tabs,
|
|
|
|
|
HeaderBackground = new Box
|
|
|
|
|
{
|
2020-01-30 04:37:51 +08:00
|
|
|
|
// this is only visible as the ProfileTabControl background
|
2020-01-30 11:50:15 +08:00
|
|
|
|
Colour = ColourProvider.Background5,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both
|
2019-06-05 00:33:55 +08:00
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
});
|
2019-02-22 16:51:39 +08:00
|
|
|
|
sectionsContainer.SelectedSection.ValueChanged += section =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-22 16:51:39 +08:00
|
|
|
|
if (lastSection != section.NewValue)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-22 16:51:39 +08:00
|
|
|
|
lastSection = section.NewValue;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
tabs.Current.Value = lastSection;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-22 16:51:39 +08:00
|
|
|
|
tabs.Current.ValueChanged += section =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (lastSection == null)
|
|
|
|
|
{
|
|
|
|
|
lastSection = sectionsContainer.Children.FirstOrDefault();
|
|
|
|
|
if (lastSection != null)
|
|
|
|
|
tabs.Current.Value = lastSection;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2019-02-22 16:51:39 +08:00
|
|
|
|
if (lastSection != section.NewValue)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-22 16:51:39 +08:00
|
|
|
|
lastSection = section.NewValue;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
sectionsContainer.ScrollTo(lastSection);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (fetchOnline)
|
|
|
|
|
{
|
|
|
|
|
userReq = new GetUserRequest(user.Id);
|
|
|
|
|
userReq.Success += userLoadComplete;
|
2019-05-14 13:18:06 +08:00
|
|
|
|
API.Queue(userReq);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
userReq = null;
|
|
|
|
|
userLoadComplete(user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sectionsContainer.ScrollToTop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void userLoadComplete(User user)
|
|
|
|
|
{
|
2019-03-10 06:58:14 +08:00
|
|
|
|
Header.User.Value = user;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (user.ProfileOrder != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (string id in user.ProfileOrder)
|
|
|
|
|
{
|
|
|
|
|
var sec = sections.FirstOrDefault(s => s.Identifier == id);
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
if (sec != null)
|
|
|
|
|
{
|
|
|
|
|
sec.User.Value = user;
|
|
|
|
|
|
|
|
|
|
sectionsContainer.Add(sec);
|
|
|
|
|
tabs.AddItem(sec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-26 22:44:22 +08:00
|
|
|
|
private class ProfileSectionTabControl : OverlayTabControl<ProfileSection>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-03-26 22:44:22 +08:00
|
|
|
|
private const float bar_height = 2;
|
|
|
|
|
|
|
|
|
|
public ProfileSectionTabControl()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
TabContainer.RelativeSizeAxes &= ~Axes.X;
|
|
|
|
|
TabContainer.AutoSizeAxes |= Axes.X;
|
|
|
|
|
TabContainer.Anchor |= Anchor.x1;
|
|
|
|
|
TabContainer.Origin |= Anchor.x1;
|
2020-03-26 22:44:22 +08:00
|
|
|
|
|
2020-03-26 23:44:46 +08:00
|
|
|
|
Height = 36 + bar_height;
|
2020-03-26 22:44:22 +08:00
|
|
|
|
BarHeight = bar_height;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-26 22:44:22 +08:00
|
|
|
|
protected override TabItem<ProfileSection> CreateTabItem(ProfileSection value) => new ProfileSectionTabItem(value)
|
2019-06-18 21:23:57 +08:00
|
|
|
|
{
|
2020-03-26 22:44:22 +08:00
|
|
|
|
AccentColour = AccentColour,
|
2019-06-18 21:23:57 +08:00
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-06-18 21:23:57 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-01-30 04:35:17 +08:00
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
2019-06-18 21:23:57 +08:00
|
|
|
|
{
|
2020-01-30 04:35:17 +08:00
|
|
|
|
AccentColour = colourProvider.Highlight1;
|
2019-06-18 21:23:57 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-26 22:44:22 +08:00
|
|
|
|
private class ProfileSectionTabItem : OverlayTabItem
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-03-26 22:44:22 +08:00
|
|
|
|
public ProfileSectionTabItem(ProfileSection value)
|
2019-02-28 12:31:40 +08:00
|
|
|
|
: base(value)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Text.Text = value.Title;
|
2020-03-26 23:44:46 +08:00
|
|
|
|
Text.Font = Text.Font.With(size: 16);
|
|
|
|
|
Text.Margin = new MarginPadding { Bottom = 10 + bar_height };
|
2020-03-26 22:44:22 +08:00
|
|
|
|
Bar.ExpandedSize = 10;
|
|
|
|
|
Bar.Margin = new MarginPadding { Bottom = bar_height };
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-22 06:11:04 +08:00
|
|
|
|
private class ProfileSectionsContainer : SectionsContainer<ProfileSection>
|
|
|
|
|
{
|
|
|
|
|
public ProfileSectionsContainer()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-06-22 06:11:04 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-06-22 06:11:04 +08:00
|
|
|
|
|
2020-04-13 17:23:28 +08:00
|
|
|
|
protected override OsuScrollContainer CreateScrollContainer() => new OverlayScrollContainer();
|
|
|
|
|
|
2019-06-23 22:08:18 +08:00
|
|
|
|
protected override FlowContainer<ProfileSection> CreateScrollContentContainer() => new FillFlowContainer<ProfileSection>
|
2019-06-22 06:11:04 +08:00
|
|
|
|
{
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Spacing = new Vector2(0, 20),
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|