2017-02-07 12:59:30 +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-02-07 12:52:19 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Database;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using OpenTK;
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
2016-11-23 10:59:50 +08:00
|
|
|
namespace osu.Game.Beatmaps.Drawables
|
2016-10-27 10:55:55 +08:00
|
|
|
{
|
2017-04-24 19:11:36 +08:00
|
|
|
|
|
|
|
internal class DifficultyIcon : DifficultyColouredContainer
|
2017-02-07 12:52:19 +08:00
|
|
|
{
|
2017-04-24 19:31:25 +08:00
|
|
|
private readonly BeatmapInfo beatmap;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
2017-04-24 19:11:36 +08:00
|
|
|
public DifficultyIcon(BeatmapInfo beatmap) : base(beatmap)
|
2017-02-07 12:52:19 +08:00
|
|
|
{
|
|
|
|
this.beatmap = beatmap;
|
2017-04-24 19:11:36 +08:00
|
|
|
Size = new Vector2(20);
|
2017-02-07 12:52:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2017-04-24 19:31:25 +08:00
|
|
|
private void load()
|
2017-01-30 14:26:28 +08:00
|
|
|
{
|
|
|
|
Children = new[]
|
2017-02-07 12:52:19 +08:00
|
|
|
{
|
|
|
|
new TextAwesome
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
2017-03-06 16:06:48 +08:00
|
|
|
Origin = Anchor.Centre,
|
2017-02-07 12:52:19 +08:00
|
|
|
TextSize = Size.X,
|
2017-04-24 19:11:36 +08:00
|
|
|
Colour = AccentColour,
|
2017-02-07 12:52:19 +08:00
|
|
|
Icon = FontAwesome.fa_circle
|
|
|
|
},
|
|
|
|
new TextAwesome
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
2017-03-06 16:06:48 +08:00
|
|
|
Origin = Anchor.Centre,
|
2017-02-07 12:52:19 +08:00
|
|
|
TextSize = Size.X,
|
|
|
|
Colour = Color4.White,
|
2017-04-17 16:43:48 +08:00
|
|
|
Icon = beatmap.Ruleset.CreateInstance().Icon
|
2017-02-07 12:52:19 +08:00
|
|
|
}
|
2017-01-30 14:26:28 +08:00
|
|
|
};
|
2017-02-07 12:52:19 +08:00
|
|
|
}
|
2016-10-27 10:55:55 +08:00
|
|
|
}
|
2017-04-24 19:11:36 +08:00
|
|
|
}
|