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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2022-01-21 21:01:49 +08:00
|
|
|
|
using System;
|
2019-11-30 08:01:07 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
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;
|
2021-07-30 20:32:08 +08:00
|
|
|
|
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-07-18 13:40:34 +08:00
|
|
|
|
public class UpdateableFlag : ModelBackedDrawable<CountryCode>
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
2022-07-18 13:40:34 +08:00
|
|
|
|
public CountryCode CountryCode
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
|
|
|
|
get => Model;
|
|
|
|
|
set => Model = value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-20 01:17:02 +08:00
|
|
|
|
/// <summary>
|
2022-07-16 11:07:53 +08:00
|
|
|
|
/// Whether to show a place holder on unknown country.
|
2019-06-20 01:17:02 +08:00
|
|
|
|
/// </summary>
|
2022-07-16 11:07:53 +08:00
|
|
|
|
public bool ShowPlaceholderOnUnknown = true;
|
2019-06-20 01:17:02 +08:00
|
|
|
|
|
2022-01-21 21:01:49 +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>
|
|
|
|
|
public Action Action;
|
|
|
|
|
|
2022-07-18 13:54:35 +08:00
|
|
|
|
public UpdateableFlag(CountryCode countryCode = CountryCode.Unknown)
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
2022-07-18 13:40:34 +08:00
|
|
|
|
CountryCode = countryCode;
|
2019-06-19 08:50:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-18 13:40:34 +08:00
|
|
|
|
protected override Drawable CreateDrawable(CountryCode countryCode)
|
2019-06-19 08:50:16 +08:00
|
|
|
|
{
|
2022-07-18 13:54:35 +08:00
|
|
|
|
if (countryCode == CountryCode.Unknown && !ShowPlaceholderOnUnknown)
|
2019-06-20 01:17:02 +08:00
|
|
|
|
return null;
|
|
|
|
|
|
2021-07-30 20:32:08 +08:00
|
|
|
|
return new Container
|
2019-06-20 01:17:02 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-07-30 20:32:08 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2022-07-18 13:40:34 +08:00
|
|
|
|
new DrawableFlag(countryCode)
|
2021-07-30 20:32:08 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
|
},
|
2022-06-01 20:00:14 +08:00
|
|
|
|
new HoverClickSounds()
|
2021-07-30 20:32:08 +08:00
|
|
|
|
}
|
2019-06-20 01:17:02 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2019-11-30 08:01:07 +08:00
|
|
|
|
|
|
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
|
private RankingsOverlay rankingsOverlay { get; set; }
|
|
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
|
{
|
2022-01-21 21:01:49 +08:00
|
|
|
|
Action?.Invoke();
|
2022-07-18 13:40:34 +08:00
|
|
|
|
rankingsOverlay?.ShowCountry(CountryCode);
|
2019-11-30 08:01:07 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2019-06-19 08:50:16 +08:00
|
|
|
|
}
|
|
|
|
|
}
|