2022-09-18 03:09:34 +08:00
|
|
|
// 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.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
using osu.Game.Users.Drawables;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
|
|
{
|
2023-03-04 03:35:45 +08:00
|
|
|
public partial class SkinnableAvatar : CompositeDrawable, ISerialisableDrawable
|
2022-09-18 03:09:34 +08:00
|
|
|
{
|
|
|
|
[SettingSource("Corner radius", "How much the edges should be rounded.")]
|
2022-09-18 06:04:56 +08:00
|
|
|
public new BindableFloat CornerRadius { get; set; } = new BindableFloat
|
2022-09-18 03:09:34 +08:00
|
|
|
{
|
|
|
|
MinValue = 0,
|
2022-09-18 06:04:56 +08:00
|
|
|
MaxValue = 63,
|
2022-09-18 03:09:34 +08:00
|
|
|
Precision = 0.01f
|
|
|
|
};
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private GameplayState gameplayState { get; set; } = null!;
|
|
|
|
|
|
|
|
private readonly UpdateableAvatar avatar;
|
|
|
|
|
|
|
|
public SkinnableAvatar()
|
|
|
|
{
|
|
|
|
Size = new Vector2(128f);
|
|
|
|
InternalChild = avatar = new UpdateableAvatar(isInteractive: false)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Masking = true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
avatar.User = gameplayState.Score.ScoreInfo.User;
|
2023-03-04 07:47:22 +08:00
|
|
|
avatar.CornerRadius = CornerRadius.Value;
|
2022-09-18 03:09:34 +08:00
|
|
|
CornerRadius.BindValueChanged(e => avatar.CornerRadius = e.NewValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool UsesFixedAnchor { get; set; }
|
|
|
|
}
|
|
|
|
}
|