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

67 lines
2.0 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 osu.Framework.Allocation;
2019-03-10 06:58:14 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
2019-03-10 06:58:14 +08:00
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Users
{
2019-03-10 06:58:14 +08:00
public class UserCoverBackground : ModelBackedDrawable<User>
2018-04-13 17:19:50 +08:00
{
2019-03-10 06:58:14 +08:00
public User User
2018-04-13 17:19:50 +08:00
{
2019-03-10 06:58:14 +08:00
get => Model;
set => Model = value;
2018-04-13 17:19:50 +08:00
}
protected override Drawable CreateDrawable(User user) => new Cover(user);
2018-04-13 17:19:50 +08:00
private class Cover : CompositeDrawable
2019-03-10 06:58:14 +08:00
{
private readonly User user;
public Cover(User user)
2019-03-10 06:58:14 +08:00
{
this.user = user;
RelativeSizeAxes = Axes.Both;
2019-03-10 06:58:14 +08:00
}
[BackgroundDependencyLoader]
private void load(LargeTextureStore textures)
2019-03-10 06:58:14 +08:00
{
if (user == null)
2019-03-10 06:58:14 +08:00
{
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);
2019-03-10 06:58:14 +08:00
}
2018-04-13 17:19:50 +08:00
}
}
}