2020-06-09 05:45:40 +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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-06-09 05:45:40 +08:00
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-06-09 05:45:40 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Menu
|
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
|
internal partial class MenuLogoVisualisation : LogoVisualisation
|
2020-06-09 05:45:40 +08:00
|
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
|
private IBindable<APIUser> user;
|
2020-06-09 05:45:40 +08:00
|
|
|
|
private Bindable<Skin> skin;
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(IAPIProvider api, SkinManager skinManager)
|
|
|
|
|
{
|
|
|
|
|
user = api.LocalUser.GetBoundCopy();
|
|
|
|
|
skin = skinManager.CurrentSkin.GetBoundCopy();
|
|
|
|
|
|
|
|
|
|
user.ValueChanged += _ => updateColour();
|
|
|
|
|
skin.BindValueChanged(_ => updateColour(), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateColour()
|
|
|
|
|
{
|
|
|
|
|
if (user.Value?.IsSupporter ?? false)
|
2020-11-23 12:35:13 +08:00
|
|
|
|
Colour = skin.Value.GetConfig<GlobalSkinColours, Color4>(GlobalSkinColours.MenuGlow)?.Value ?? Color4.White;
|
2020-06-09 05:45:40 +08:00
|
|
|
|
else
|
2020-11-23 12:35:13 +08:00
|
|
|
|
Colour = Color4.White;
|
2020-06-09 05:45:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|