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
use crate::{
    assets::protocol::{AssetLoadResult, AssetProtocol},
    prefab::PrefabValue,
};
use serde::de::DeserializeOwned;
use std::str::from_utf8;

pub struct YamlAsset(PrefabValue);

impl YamlAsset {
    pub fn get(&self) -> &PrefabValue {
        &self.0
    }

    pub fn deserialize<T>(&self) -> Result<T, String>
    where
        T: DeserializeOwned,
    {
        match serde_yaml::from_value(self.0.clone()) {
            Ok(result) => Ok(result),
            Err(error) => Err(error.to_string()),
        }
    }
}

pub struct YamlAssetProtocol;

impl AssetProtocol for YamlAssetProtocol {
    fn name(&self) -> &str {
        "yaml"
    }

    fn on_load(&mut self, data: Vec<u8>) -> AssetLoadResult {
        let data = from_utf8(&data).unwrap();
        match serde_yaml::from_str(data) {
            Ok(value) => AssetLoadResult::Data(Box::new(YamlAsset(value))),
            Err(error) => AssetLoadResult::Error(format!("Error loading YAML asset: {:?}", error)),
        }
    }
}