osu/osu.Game/Users/Drawables/UpdateableFlag.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.0 KiB
C#
Raw Normal View History

2019-06-19 00:50:16 +00: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 07:37:17 +00:00
#nullable disable
using System;
2019-11-30 00:01:07 +00:00
using osu.Framework.Allocation;
2019-06-19 00:50:16 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-11-30 00:01:07 +00:00
using osu.Framework.Input.Events;
using osu.Game.Graphics.UserInterface;
2019-11-30 00:01:07 +00:00
using osu.Game.Overlays;
2019-06-19 00:50:16 +00:00
namespace osu.Game.Users.Drawables
{
2022-07-18 05:40:34 +00:00
public partial class UpdateableFlag : ModelBackedDrawable<CountryCode>
2019-06-19 00:50:16 +00:00
{
2022-07-18 05:40:34 +00:00
public CountryCode CountryCode
2019-06-19 00:50:16 +00:00
{
get => Model;
set => Model = value;
}
/// <summary>
/// Whether to show a place holder on unknown country.
/// </summary>
public bool ShowPlaceholderOnUnknown = true;
/// <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;
public UpdateableFlag(CountryCode countryCode = CountryCode.Unknown)
2019-06-19 00:50:16 +00:00
{
2022-07-18 05:40:34 +00:00
CountryCode = countryCode;
2019-06-19 00:50:16 +00:00
}
2022-07-18 05:40:34 +00:00
protected override Drawable CreateDrawable(CountryCode countryCode)
2019-06-19 00:50:16 +00:00
{
if (countryCode == CountryCode.Unknown && !ShowPlaceholderOnUnknown)
return null;
return new Container
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
2022-07-18 05:40:34 +00:00
new DrawableFlag(countryCode)
{
RelativeSizeAxes = Axes.Both
},
2022-06-01 12:00:14 +00:00
new HoverClickSounds()
}
};
}
2019-11-30 00:01:07 +00:00
[Resolved(canBeNull: true)]
private RankingsOverlay rankingsOverlay { get; set; }
protected override bool OnClick(ClickEvent e)
{
Action?.Invoke();
2022-07-18 05:40:34 +00:00
rankingsOverlay?.ShowCountry(CountryCode);
2019-11-30 00:01:07 +00:00
return true;
}
2019-06-19 00:50:16 +00:00
}
}