2017-03-14 21:58:28 +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
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2017-03-15 12:55:29 +08:00
|
|
|
|
using osu.Framework.Extensions;
|
2017-03-24 08:51:52 +08:00
|
|
|
|
using osu.Game.Modes.Scoring;
|
2017-03-14 21:58:28 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select.Leaderboards
|
|
|
|
|
{
|
|
|
|
|
public class DrawableRank : Container
|
|
|
|
|
{
|
2017-03-27 21:22:34 +08:00
|
|
|
|
private readonly Sprite rankSprite;
|
2017-03-14 21:58:28 +08:00
|
|
|
|
|
2017-03-22 07:32:28 +08:00
|
|
|
|
public ScoreRank Rank { get; private set; }
|
2017-03-14 21:58:28 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2017-03-22 07:32:28 +08:00
|
|
|
|
private void load(TextureStore textures)
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
2017-03-27 21:22:34 +08:00
|
|
|
|
rankSprite.Texture = textures.Get($@"Grades/{Rank.GetDescription()}");
|
2017-03-14 21:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DrawableRank(ScoreRank rank)
|
|
|
|
|
{
|
2017-03-22 07:32:28 +08:00
|
|
|
|
Rank = rank;
|
2017-03-14 21:58:28 +08:00
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-03-27 21:22:34 +08:00
|
|
|
|
rankSprite = new Sprite { FillMode = FillMode.Fill },
|
2017-03-14 21:58:28 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|