1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use lotus_script_sys::FfiObject;
use lotus_shared::content::ContentId;
pub use lotus_shared::font::*;

/// A bitmap font that can be used to render text.
pub struct BitmapFont {
    content_id: ContentId,
    properties: BitmapFontProperties,
}

impl BitmapFont {
    /// Try to load a bitmap font from a content id.
    /// Returns `None` if the font is not currently loaded. It will be loaded in the background.
    /// Just call this function again later until it returns `Some`.
    pub fn try_load(content_id: ContentId) -> Option<Self> {
        let font = FfiObject::new(&content_id);
        let properties = unsafe { lotus_script_sys::font::bitmap_font_properties(font.packed()) };

        if properties == 0 {
            None
        } else {
            let properties = FfiObject::from_packed(properties).deserialize();
            Some(Self {
                content_id,
                properties,
            })
        }
    }

    /// Get the properties of this font.
    pub fn properties(&self) -> &BitmapFontProperties {
        &self.properties
    }

    /// Get the width of the text in pixels.
    pub fn text_len(&self, text: &str, letter_spacing: i32) -> u32 {
        let font = FfiObject::new(&self.content_id);
        let text = FfiObject::new(&text);

        let len = unsafe {
            lotus_script_sys::font::text_len(font.packed(), text.packed(), letter_spacing)
        };

        assert!(len >= 0);

        len as u32
    }
}