2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-04-02 13:51:28 +08:00
|
|
|
|
using osu.Framework.Graphics.Effects;
|
2019-02-12 12:04:46 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Users;
|
2019-06-18 02:55:07 +08:00
|
|
|
|
using osu.Game.Users.Drawables;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
|
|
|
{
|
2019-03-28 13:01:06 +08:00
|
|
|
|
public class ToolbarUserButton : ToolbarOverlayToggleButton, IOnlineComponent
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly UpdateableAvatar avatar;
|
|
|
|
|
|
|
|
|
|
public ToolbarUserButton()
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
|
|
2019-02-20 15:52:36 +08:00
|
|
|
|
DrawableText.Font = OsuFont.GetFont(italics: true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
Add(new OpaqueBackground { Depth = 1 });
|
|
|
|
|
|
|
|
|
|
Flow.Add(avatar = new UpdateableAvatar
|
|
|
|
|
{
|
|
|
|
|
Masking = true,
|
|
|
|
|
Size = new Vector2(32),
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
CornerRadius = 4,
|
2018-12-20 19:08:22 +08:00
|
|
|
|
OpenOnClick = { Value = false },
|
2018-04-13 17:19:50 +08:00
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
|
{
|
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
|
Radius = 4,
|
|
|
|
|
Colour = Color4.Black.Opacity(0.1f),
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-28 13:01:06 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
|
private void load(IAPIProvider api, LoginOverlay login)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
api.Register(this);
|
2019-03-28 13:01:06 +08:00
|
|
|
|
|
|
|
|
|
StateContainer = login;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-13 11:56:47 +08:00
|
|
|
|
public void APIStateChanged(IAPIProvider api, APIState state)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
Text = @"Guest";
|
|
|
|
|
avatar.User = new User();
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case APIState.Online:
|
|
|
|
|
Text = api.LocalUser.Value.Username;
|
2019-02-21 17:56:34 +08:00
|
|
|
|
avatar.User = api.LocalUser.Value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|