1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game/Users/UserPanel.cs

94 lines
2.6 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Overlays;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Graphics.UserInterface;
using osu.Framework.Graphics.Cursor;
using osu.Game.Graphics.Containers;
2020-03-04 19:58:15 +08:00
using JetBrains.Annotations;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Users
{
2020-03-04 19:58:15 +08:00
public abstract class UserPanel : OsuClickableContainer, IHasContextMenu
2018-04-13 17:19:50 +08:00
{
public readonly User User;
2018-04-13 17:19:50 +08:00
public new Action Action;
public bool ShowProfileOnClick = true;
2020-03-16 13:06:42 +08:00
protected Action ViewProfile { get; private set; }
2018-04-13 17:19:50 +08:00
protected Drawable Background { get; private set; }
2020-03-04 19:58:15 +08:00
protected UserPanel(User user)
2018-04-13 17:19:50 +08:00
{
if (user == null)
throw new ArgumentNullException(nameof(user));
User = user;
2018-04-13 17:19:50 +08:00
}
2020-03-04 19:58:15 +08:00
[Resolved(canBeNull: true)]
private UserProfileOverlay profileOverlay { get; set; }
2020-03-05 06:41:55 +08:00
[Resolved(canBeNull: true)]
2020-07-19 01:24:38 +08:00
protected OverlayColourProvider ColourProvider { get; private set; }
2020-03-05 06:41:55 +08:00
2020-03-04 19:58:15 +08:00
[Resolved]
2020-07-19 01:24:38 +08:00
protected OsuColour Colours { get; private set; }
2020-03-04 19:58:15 +08:00
[BackgroundDependencyLoader]
private void load()
2018-04-13 17:19:50 +08:00
{
2020-03-04 19:58:15 +08:00
Masking = true;
2018-04-13 17:19:50 +08:00
2020-03-04 19:58:15 +08:00
AddRange(new[]
2018-04-13 17:19:50 +08:00
{
2020-03-04 19:58:15 +08:00
new Box
2018-04-13 17:19:50 +08:00
{
2020-03-04 19:58:15 +08:00
RelativeSizeAxes = Axes.Both,
2020-07-19 01:24:38 +08:00
Colour = ColourProvider?.Background5 ?? Colours.Gray1
2018-04-13 17:19:50 +08:00
},
Background = new UserCoverBackground
2018-04-13 17:19:50 +08:00
{
2020-03-04 19:58:15 +08:00
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
User = User,
},
CreateLayout()
});
2018-04-13 17:19:50 +08:00
base.Action = ViewProfile = () =>
{
Action?.Invoke();
if (ShowProfileOnClick)
profileOverlay?.ShowUser(User);
2018-04-13 17:19:50 +08:00
};
}
2020-03-04 19:58:15 +08:00
[NotNull]
protected abstract Drawable CreateLayout();
protected OsuSpriteText CreateUsername() => new OsuSpriteText
{
2020-03-07 09:05:17 +08:00
Font = OsuFont.GetFont(size: 16, weight: FontWeight.Bold),
2020-03-05 07:38:30 +08:00
Shadow = false,
2020-03-04 19:58:15 +08:00
Text = User.Username,
};
2018-04-13 17:19:50 +08:00
public MenuItem[] ContextMenuItems => new MenuItem[]
{
new OsuMenuItem("View Profile", MenuItemType.Highlighted, ViewProfile),
};
}
}