2017-03-08 14:50:52 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-17 04:05:03 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Modes.UI
|
|
|
|
|
{
|
|
|
|
|
public class ModIcon : Container
|
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly TextAwesome modIcon;
|
|
|
|
|
private readonly TextAwesome background;
|
2017-02-17 04:05:03 +08:00
|
|
|
|
|
|
|
|
|
private float iconSize = 80;
|
|
|
|
|
public float IconSize
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return iconSize;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
iconSize = value;
|
|
|
|
|
reapplySize();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-06 16:21:18 +08:00
|
|
|
|
|
2017-03-06 17:14:41 +08:00
|
|
|
|
public new Color4 Colour
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-03-06 17:14:41 +08:00
|
|
|
|
return background.Colour;
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
background.Colour = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-06 16:21:18 +08:00
|
|
|
|
|
2017-02-17 04:05:03 +08:00
|
|
|
|
public FontAwesome Icon
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-03-06 17:14:41 +08:00
|
|
|
|
return modIcon.Icon;
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
modIcon.Icon = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void reapplySize()
|
|
|
|
|
{
|
|
|
|
|
background.TextSize = iconSize;
|
|
|
|
|
modIcon.TextSize = iconSize - 35;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ModIcon()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
background = new TextAwesome
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Icon = FontAwesome.fa_osu_mod_bg,
|
|
|
|
|
Shadow = true,
|
2017-03-20 12:48:06 +08:00
|
|
|
|
TextSize = 20
|
2017-02-17 04:05:03 +08:00
|
|
|
|
},
|
|
|
|
|
modIcon = new TextAwesome
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Colour = OsuColour.Gray(84),
|
2017-03-20 12:48:06 +08:00
|
|
|
|
TextSize = 20
|
2017-02-17 04:05:03 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
reapplySize();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|