osu/osu.Game/Beatmaps/Drawables/DifficultyIcon.cs

45 lines
1.5 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-02-07 04:52:19 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2017-02-07 04:52:19 +00:00
using OpenTK;
2016-11-23 02:59:50 +00:00
namespace osu.Game.Beatmaps.Drawables
2016-10-27 02:55:55 +00:00
{
public class DifficultyIcon : DifficultyColouredContainer
2017-02-07 04:52:19 +00:00
{
2017-04-24 11:31:25 +00:00
private readonly BeatmapInfo beatmap;
2017-02-07 04:52:19 +00:00
public DifficultyIcon(BeatmapInfo beatmap) : base(beatmap)
2017-02-07 04:52:19 +00:00
{
this.beatmap = beatmap;
Size = new Vector2(20);
2017-02-07 04:52:19 +00:00
}
[BackgroundDependencyLoader]
2017-04-24 11:31:25 +00:00
private void load()
{
Children = new Drawable[]
2017-02-07 04:52:19 +00:00
{
new SpriteIcon
2017-02-07 04:52:19 +00:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Colour = AccentColour,
2017-02-07 04:52:19 +00:00
Icon = FontAwesome.fa_circle
},
new ConstrainedIconContainer
2017-02-07 04:52:19 +00:00
{
RelativeSizeAxes = Axes.Both,
// the null coalesce here is only present to make unit tests work (ruleset dlls aren't copied correctly for testing at the moment)
Icon = beatmap.Ruleset?.CreateInstance().CreateIcon() ?? new SpriteIcon { Icon = FontAwesome.fa_question_circle_o }
2017-02-07 04:52:19 +00:00
}
};
2017-02-07 04:52:19 +00:00
}
2016-10-27 02:55:55 +00:00
}
}