1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Overlays/UserProfileOverlay.cs

217 lines
6.7 KiB
C#
Raw Normal View History

2017-05-25 02:11:07 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-06-09 16:24:19 +08:00
using System.Linq;
2017-06-09 16:01:16 +08:00
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
2017-06-05 21:04:35 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-06-21 16:03:47 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.UserInterface;
2017-06-07 21:15:43 +08:00
using osu.Game.Graphics;
2017-05-25 02:11:07 +08:00
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
2017-06-15 22:33:08 +08:00
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
2017-06-16 16:36:23 +08:00
using osu.Game.Overlays.Profile;
2017-07-13 12:53:45 +08:00
using osu.Game.Overlays.Profile.Sections;
2017-06-15 17:03:33 +08:00
using osu.Game.Users;
2017-05-25 02:11:07 +08:00
2017-06-15 17:03:33 +08:00
namespace osu.Game.Overlays
2017-05-25 02:11:07 +08:00
{
2017-06-22 20:38:43 +08:00
public class UserProfileOverlay : WaveOverlayContainer
2017-05-25 02:11:07 +08:00
{
2017-06-05 21:07:57 +08:00
private ProfileSection lastSection;
private ProfileSection[] sections;
2017-06-15 22:33:08 +08:00
private GetUserRequest userReq;
private APIAccess api;
protected ProfileHeader Header;
private SectionsContainer<ProfileSection> sectionsContainer;
private ProfileTabControl tabs;
2017-06-06 11:25:16 +08:00
public const float CONTENT_X_MARGIN = 50;
2017-06-16 16:13:23 +08:00
public UserProfileOverlay()
{
2017-06-22 20:38:43 +08:00
FirstWaveColour = OsuColour.Gray(0.4f);
SecondWaveColour = OsuColour.Gray(0.3f);
ThirdWaveColour = OsuColour.Gray(0.2f);
FourthWaveColour = OsuColour.Gray(0.1f);
2017-06-16 16:13:23 +08:00
RelativeSizeAxes = Axes.Both;
RelativePositionAxes = Axes.Both;
Width = 0.85f;
Anchor = Anchor.TopCentre;
Origin = Anchor.TopCentre;
Masking = true;
EdgeEffect = new EdgeEffectParameters
{
Colour = Color4.Black.Opacity(0),
Type = EdgeEffectType.Shadow,
Radius = 10
};
2017-06-16 16:13:23 +08:00
}
2017-06-06 11:25:16 +08:00
2017-06-15 22:33:08 +08:00
[BackgroundDependencyLoader]
private void load(APIAccess api)
{
this.api = api;
}
protected override void PopIn()
{
base.PopIn();
2017-07-23 02:50:25 +08:00
FadeEdgeEffectTo(0.5f, APPEAR_DURATION, Easing.In);
}
protected override void PopOut()
{
base.PopOut();
2017-07-23 02:50:25 +08:00
FadeEdgeEffectTo(0, DISAPPEAR_DURATION, Easing.Out);
}
public void ShowUser(User user, bool fetchOnline = true)
2017-05-25 02:11:07 +08:00
{
2017-06-15 22:33:08 +08:00
userReq?.Cancel();
2017-06-15 20:01:46 +08:00
Clear();
lastSection = null;
2017-06-15 22:33:08 +08:00
sections = new ProfileSection[]
2017-06-07 22:49:14 +08:00
{
2017-11-09 22:12:06 +08:00
//new AboutSection(),
//new RecentSection(),
2017-06-15 08:00:15 +08:00
new RanksSection(),
//new MedalsSection(),
2017-10-25 02:31:38 +08:00
new HistoricalSection(),
new BeatmapsSection(),
new KudosuSection()
2017-06-07 22:49:14 +08:00
};
tabs = new ProfileTabControl
2017-06-07 22:49:14 +08:00
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2017-06-15 07:23:30 +08:00
Height = 30
2017-06-07 22:49:14 +08:00
};
2017-06-07 21:15:43 +08:00
Add(new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(0.2f)
});
Header = new ProfileHeader(user);
2017-06-15 22:33:08 +08:00
Add(sectionsContainer = new SectionsContainer<ProfileSection>
2017-05-25 02:11:07 +08:00
{
2017-06-05 21:04:35 +08:00
RelativeSizeAxes = Axes.Both,
ExpandableHeader = Header,
FixedHeader = tabs,
HeaderBackground = new Box
{
Colour = OsuColour.Gray(34),
RelativeSizeAxes = Axes.Both
2017-06-15 22:33:08 +08:00
}
});
2017-05-25 02:11:07 +08:00
sectionsContainer.SelectedSection.ValueChanged += s =>
{
if (lastSection != s)
{
2017-06-09 16:24:19 +08:00
lastSection = s;
tabs.Current.Value = lastSection;
2017-05-25 02:11:07 +08:00
}
};
tabs.Current.ValueChanged += s =>
2017-05-25 02:11:07 +08:00
{
2017-06-09 16:05:05 +08:00
if (lastSection == null)
{
2017-06-09 16:24:19 +08:00
lastSection = sectionsContainer.Children.FirstOrDefault();
if (lastSection != null)
tabs.Current.Value = lastSection;
2017-06-09 16:05:05 +08:00
return;
}
2017-05-25 02:11:07 +08:00
if (lastSection != s)
{
lastSection = s;
2017-07-14 22:56:27 +08:00
sectionsContainer.ScrollTo(lastSection);
2017-05-25 02:11:07 +08:00
}
};
2017-06-15 22:33:08 +08:00
if (fetchOnline)
{
userReq = new GetUserRequest(user.Id);
2017-07-17 12:56:50 +08:00
userReq.Success += userLoadComplete;
api.Queue(userReq);
}
else
2017-06-15 22:33:08 +08:00
{
userReq = null;
2017-07-17 12:56:50 +08:00
userLoadComplete(user);
}
Show();
sectionsContainer.ScrollToTop();
}
2017-06-15 23:47:34 +08:00
2017-07-17 12:56:50 +08:00
private void userLoadComplete(User user)
{
Header.User = user;
foreach (string id in user.ProfileOrder)
{
var sec = sections.FirstOrDefault(s => s.Identifier == id);
if (sec != null)
{
sec.User.Value = user;
2017-09-14 19:05:43 +08:00
sectionsContainer.Add(sec);
tabs.AddItem(sec);
}
}
2017-05-25 02:11:07 +08:00
}
2017-06-09 16:01:16 +08:00
private class ProfileTabControl : PageTabControl<ProfileSection>
{
2017-06-09 16:01:16 +08:00
private readonly Box bottom;
public ProfileTabControl()
{
TabContainer.RelativeSizeAxes &= ~Axes.X;
TabContainer.AutoSizeAxes |= Axes.X;
TabContainer.Anchor |= Anchor.x1;
TabContainer.Origin |= Anchor.x1;
2017-06-09 16:01:16 +08:00
Add(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);
2017-06-15 22:42:15 +08:00
protected override Dropdown<ProfileSection> CreateDropdown() => null;
2017-06-09 16:01:16 +08:00
private class ProfileTabItem : PageTabItem
{
public ProfileTabItem(ProfileSection value) : base(value)
{
Text.Text = value.Title;
}
}
2017-06-09 16:01:16 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
bottom.Colour = colours.Yellow;
}
}
2017-05-25 02:11:07 +08:00
}
}