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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use core::{
    assets::{
        asset::{Asset, AssetID},
        protocol::{AssetLoadResult, AssetProtocol, AssetVariant, Meta},
    },
    Ignite, Scalar,
};
use serde::{Deserialize, Serialize};
use std::{any::Any, str::from_utf8};

#[derive(Ignite, Debug, Clone, Serialize, Deserialize)]
pub struct FontFace {
    pub font: String,
    #[serde(default)]
    pub style: Option<String>,
    #[serde(default = "FontFace::default_weight")]
    pub weight: Scalar,
    #[serde(default = "FontFace::default_stretch")]
    pub stretch: Scalar,
    #[serde(default)]
    pub variant: Option<String>,
}

impl FontFace {
    fn default_weight() -> Scalar {
        400.0
    }

    fn default_stretch() -> Scalar {
        100.0
    }
}

pub struct FontFaceAsset {
    face: FontFace,
    font_asset: AssetID,
}

impl FontFaceAsset {
    pub fn face(&self) -> &FontFace {
        &self.face
    }

    pub fn font_asset(&self) -> AssetID {
        self.font_asset
    }
}

pub struct FontFaceAssetProtocol;

impl AssetProtocol for FontFaceAssetProtocol {
    fn name(&self) -> &str {
        "fontface"
    }

    fn on_load(&mut self, data: Vec<u8>) -> AssetLoadResult {
        let data = from_utf8(&data).unwrap();
        let face: FontFace = serde_json::from_str(data).unwrap();
        let font = face.font.clone();
        AssetLoadResult::Yield(Some(Box::new(face)), vec![("font".to_owned(), font)])
    }

    fn on_resume(&mut self, payload: Meta, list: &[(&str, &Asset)]) -> AssetLoadResult {
        let face = *(payload.unwrap() as Box<dyn Any + Send>)
            .downcast::<FontFace>()
            .unwrap();
        let font_asset = list
            .get(0)
            .expect("Could not obtain font face font asset")
            .1
            .id();
        AssetLoadResult::Data(Box::new(FontFaceAsset { face, font_asset }))
    }

    fn on_unload(&mut self, asset: &Asset) -> Option<Vec<AssetVariant>> {
        if let Some(asset) = asset.get::<FontFaceAsset>() {
            Some(vec![AssetVariant::Id(asset.font_asset)])
        } else {
            None
        }
    }
}