2020-01-26 19:29:46 +00:00
|
|
|
use crate::i18n::{Font, VoxygenFonts};
|
2020-08-28 01:02:17 +00:00
|
|
|
use common::assets::Asset;
|
2020-01-26 19:29:46 +00:00
|
|
|
|
|
|
|
pub struct ConrodVoxygenFont {
|
|
|
|
metadata: Font,
|
|
|
|
pub conrod_id: conrod_core::text::font::Id,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ConrodVoxygenFont {
|
2020-06-10 19:47:36 +00:00
|
|
|
#[allow(clippy::needless_return)] // TODO: Pending review in #587
|
2020-01-26 19:29:46 +00:00
|
|
|
pub fn new(font: &Font, ui: &mut crate::ui::Ui) -> ConrodVoxygenFont {
|
|
|
|
return Self {
|
|
|
|
metadata: font.clone(),
|
2020-08-28 01:02:17 +00:00
|
|
|
conrod_id: ui.new_font(crate::ui::Font::load_expect(&font.asset_key)),
|
2020-01-26 19:29:46 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Scale input size to final UI size
|
|
|
|
pub fn scale(&self, value: u32) -> u32 { self.metadata.scale(value) }
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! conrod_fonts {
|
|
|
|
($([ $( $name:ident$(,)? )* ])*) => {
|
|
|
|
$(
|
|
|
|
pub struct ConrodVoxygenFonts {
|
|
|
|
$(pub $name: ConrodVoxygenFont,)*
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ConrodVoxygenFonts {
|
|
|
|
pub fn load(voxygen_fonts: &VoxygenFonts, ui: &mut crate::ui::Ui) -> Result<Self, common::assets::Error> {
|
|
|
|
Ok(Self {
|
|
|
|
$( $name: ConrodVoxygenFont::new(voxygen_fonts.get(stringify!($name)).unwrap(), ui),)*
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
conrod_fonts! {
|
|
|
|
[opensans, metamorph, alkhemi, cyri, wizard]
|
|
|
|
}
|