1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 12:27:26 +08:00
osu-lazer/osu.Game/Users/Drawables/UpdateableFlag.cs

79 lines
2.3 KiB
C#
Raw Normal View History

2019-06-19 08:50:16 +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 System;
2019-11-30 08:01:07 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2019-06-19 08:50:16 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-11-30 08:01:07 +08:00
using osu.Framework.Input.Events;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
2019-11-30 08:01:07 +08:00
using osu.Game.Overlays;
2019-06-19 08:50:16 +08:00
namespace osu.Game.Users.Drawables
{
2022-11-24 13:32:20 +08:00
public partial class UpdateableFlag : ModelBackedDrawable<CountryCode>
2019-06-19 08:50:16 +08:00
{
private CountryCode countryCode;
2022-07-18 13:40:34 +08:00
public CountryCode CountryCode
2019-06-19 08:50:16 +08:00
{
get => countryCode;
set
{
countryCode = value;
updateModel();
}
2019-06-19 08:50:16 +08:00
}
/// <summary>
/// Perform an action in addition to showing the country ranking.
/// This should be used to perform auxiliary tasks and not as a primary action for clicking a flag (to maintain a consistent UX).
/// </summary>
2023-03-06 07:15:58 +08:00
public Action? Action;
private readonly Bindable<bool> hideFlags = new BindableBool();
[Resolved]
private RankingsOverlay? rankingsOverlay { get; set; }
public UpdateableFlag(CountryCode countryCode = CountryCode.Unknown)
2019-06-19 08:50:16 +08:00
{
2022-07-18 13:40:34 +08:00
CountryCode = countryCode;
hideFlags.BindValueChanged(_ => updateModel());
}
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
config.BindWith(OsuSetting.HideCountryFlags, hideFlags);
2019-06-19 08:50:16 +08:00
}
2024-05-10 23:26:43 +08:00
protected override Drawable CreateDrawable(CountryCode countryCode)
2019-06-19 08:50:16 +08:00
{
return new Container
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
2022-07-18 13:40:34 +08:00
new DrawableFlag(countryCode)
{
RelativeSizeAxes = Axes.Both
},
2022-06-01 20:00:14 +08:00
new HoverClickSounds()
}
};
}
2019-11-30 08:01:07 +08:00
protected override bool OnClick(ClickEvent e)
{
Action?.Invoke();
2022-07-18 13:40:34 +08:00
rankingsOverlay?.ShowCountry(CountryCode);
2019-11-30 08:01:07 +08:00
return true;
}
private void updateModel() => Model = hideFlags.Value ? CountryCode.Unknown : countryCode;
2019-06-19 08:50:16 +08:00
}
}