mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
186 lines
5.6 KiB
C#
186 lines
5.6 KiB
C#
// 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 System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Game.Overlays.Profile;
|
|
using osu.Game.Overlays.Profile.Sections;
|
|
using osu.Game.Users;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public class UserProfileOverlay : FullscreenOverlay
|
|
{
|
|
private ProfileSection lastSection;
|
|
private ProfileSection[] sections;
|
|
private GetUserRequest userReq;
|
|
protected ProfileHeader Header;
|
|
private SectionsContainer<ProfileSection> sectionsContainer;
|
|
private ProfileTabControl tabs;
|
|
|
|
public const float CONTENT_X_MARGIN = 70;
|
|
|
|
public void ShowUser(long userId) => ShowUser(new User { Id = userId });
|
|
|
|
public void ShowUser(User user, bool fetchOnline = true)
|
|
{
|
|
if (user == User.SYSTEM_USER)
|
|
return;
|
|
|
|
Show();
|
|
|
|
if (user.Id == Header?.User.Value?.Id)
|
|
return;
|
|
|
|
userReq?.Cancel();
|
|
Clear();
|
|
lastSection = null;
|
|
|
|
sections = new ProfileSection[]
|
|
{
|
|
//new AboutSection(),
|
|
new RecentSection(),
|
|
new RanksSection(),
|
|
//new MedalsSection(),
|
|
new HistoricalSection(),
|
|
new BeatmapsSection(),
|
|
new KudosuSection()
|
|
};
|
|
|
|
tabs = new ProfileTabControl
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Height = 30
|
|
};
|
|
|
|
Add(new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = OsuColour.Gray(0.2f)
|
|
});
|
|
|
|
Add(sectionsContainer = new SectionsContainer<ProfileSection>
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
ExpandableHeader = Header = new ProfileHeader(),
|
|
FixedHeader = tabs,
|
|
HeaderBackground = new Box
|
|
{
|
|
Colour = OsuColour.Gray(34),
|
|
RelativeSizeAxes = Axes.Both
|
|
},
|
|
});
|
|
sectionsContainer.SelectedSection.ValueChanged += section =>
|
|
{
|
|
if (lastSection != section.NewValue)
|
|
{
|
|
lastSection = section.NewValue;
|
|
tabs.Current.Value = lastSection;
|
|
}
|
|
};
|
|
|
|
tabs.Current.ValueChanged += section =>
|
|
{
|
|
if (lastSection == null)
|
|
{
|
|
lastSection = sectionsContainer.Children.FirstOrDefault();
|
|
if (lastSection != null)
|
|
tabs.Current.Value = lastSection;
|
|
return;
|
|
}
|
|
|
|
if (lastSection != section.NewValue)
|
|
{
|
|
lastSection = section.NewValue;
|
|
sectionsContainer.ScrollTo(lastSection);
|
|
}
|
|
};
|
|
|
|
if (fetchOnline)
|
|
{
|
|
userReq = new GetUserRequest(user.Id);
|
|
userReq.Success += userLoadComplete;
|
|
API.Queue(userReq);
|
|
}
|
|
else
|
|
{
|
|
userReq = null;
|
|
userLoadComplete(user);
|
|
}
|
|
|
|
sectionsContainer.ScrollToTop();
|
|
}
|
|
|
|
private void userLoadComplete(User user)
|
|
{
|
|
Header.User.Value = user;
|
|
|
|
if (user.ProfileOrder != null)
|
|
{
|
|
foreach (string id in user.ProfileOrder)
|
|
{
|
|
var sec = sections.FirstOrDefault(s => s.Identifier == id);
|
|
|
|
if (sec != null)
|
|
{
|
|
sec.User.Value = user;
|
|
|
|
sectionsContainer.Add(sec);
|
|
tabs.AddItem(sec);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private class ProfileTabControl : PageTabControl<ProfileSection>
|
|
{
|
|
private readonly Box bottom;
|
|
|
|
public ProfileTabControl()
|
|
{
|
|
TabContainer.RelativeSizeAxes &= ~Axes.X;
|
|
TabContainer.AutoSizeAxes |= Axes.X;
|
|
TabContainer.Anchor |= Anchor.x1;
|
|
TabContainer.Origin |= Anchor.x1;
|
|
AddInternal(bottom = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 1,
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
EdgeSmoothness = new Vector2(1)
|
|
});
|
|
}
|
|
|
|
protected override TabItem<ProfileSection> CreateTabItem(ProfileSection value) => new ProfileTabItem(value);
|
|
|
|
protected override Dropdown<ProfileSection> CreateDropdown() => null;
|
|
|
|
private class ProfileTabItem : PageTabItem
|
|
{
|
|
public ProfileTabItem(ProfileSection value)
|
|
: base(value)
|
|
{
|
|
Text.Text = value.Title;
|
|
}
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
bottom.Colour = colours.Yellow;
|
|
}
|
|
}
|
|
}
|
|
}
|