mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:47:38 +08:00
70 lines
2.0 KiB
C#
70 lines
2.0 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 osu.Framework.Allocation;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Colour;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.Textures;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Users
|
|
{
|
|
public class UserCoverBackground : ModelBackedDrawable<User>
|
|
{
|
|
public User User
|
|
{
|
|
get => Model;
|
|
set => Model = value;
|
|
}
|
|
|
|
protected override Drawable CreateDrawable(User user) => new Cover(user);
|
|
|
|
[LongRunningLoad]
|
|
private class Cover : CompositeDrawable
|
|
{
|
|
private readonly User user;
|
|
|
|
public Cover(User user)
|
|
{
|
|
this.user = user;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(LargeTextureStore textures)
|
|
{
|
|
if (user == null)
|
|
{
|
|
InternalChild = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = ColourInfo.GradientVertical(Color4.Black.Opacity(0.1f), Color4.Black.Opacity(0.75f))
|
|
};
|
|
}
|
|
else
|
|
{
|
|
InternalChild = new Sprite
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Texture = textures.Get(user.CoverUrl),
|
|
FillMode = FillMode.Fill,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre
|
|
};
|
|
}
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
this.FadeInFromZero(400);
|
|
}
|
|
}
|
|
}
|
|
}
|