2017-03-13 20:33:25 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-04-19 15:02:18 +08:00
|
|
|
|
using Newtonsoft.Json;
|
2017-03-13 20:33:25 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Users
|
|
|
|
|
{
|
2017-03-19 11:09:58 +08:00
|
|
|
|
public class Country
|
2017-03-13 20:33:25 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-03-18 05:16:59 +08:00
|
|
|
|
/// The name of this country.
|
2017-03-13 20:33:25 +08:00
|
|
|
|
/// </summary>
|
2017-04-19 15:02:18 +08:00
|
|
|
|
[JsonProperty(@"name")]
|
2017-03-13 20:33:25 +08:00
|
|
|
|
public string FullName;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Two-letter flag acronym (ISO 3166 standard)
|
|
|
|
|
/// </summary>
|
2017-04-19 15:02:18 +08:00
|
|
|
|
[JsonProperty(@"code")]
|
2017-03-13 20:33:25 +08:00
|
|
|
|
public string FlagName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DrawableFlag : Container
|
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly Sprite sprite;
|
2017-03-13 20:33:25 +08:00
|
|
|
|
private TextureStore textures;
|
|
|
|
|
|
|
|
|
|
private string flagName;
|
|
|
|
|
public string FlagName
|
|
|
|
|
{
|
|
|
|
|
get { return flagName; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == flagName) return;
|
|
|
|
|
flagName = value;
|
|
|
|
|
sprite.Texture = textures.Get($@"Flags/{flagName}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(TextureStore ts)
|
|
|
|
|
{
|
|
|
|
|
textures = ts;
|
|
|
|
|
sprite.Texture = textures.Get($@"Flags/{flagName}");
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-15 13:06:22 +08:00
|
|
|
|
public DrawableFlag(string name = @"__")
|
2017-03-13 20:33:25 +08:00
|
|
|
|
{
|
|
|
|
|
flagName = name;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
sprite = new Sprite
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|