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
use notan_graphics::Texture;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// Returns a HashMap containing a list of textures created from the Atlas data
pub fn create_textures_from_atlas(
    data: &[u8],
    base_texture: &Texture,
) -> Result<HashMap<String, Texture>, String> {
    let data = atlas_from_bytes(data)?;
    let mut textures = HashMap::new();
    data.frames.iter().for_each(|af| {
        textures.insert(
            af.filename.clone(),
            base_texture.with_frame(
                af.frame.x as _,
                af.frame.y as _,
                af.frame.w as _,
                af.frame.h as _,
            ),
        );
    });
    Ok(textures)
}

#[inline]
fn atlas_from_bytes(data: &[u8]) -> Result<AtlasRoot, String> {
    serde_json::from_slice(data).map_err(|e| e.to_string())
}

#[derive(Serialize, Deserialize, Debug)]
struct AtlasRoot {
    frames: Vec<AtlasFrame>,
    meta: AtlasMeta,
}

#[derive(Serialize, Deserialize, Debug)]
struct AtlasFrame {
    filename: String,
    frame: AtlasRect,
    rotated: bool,
    trimmed: bool,
    #[serde(alias = "spriteSourceSize")]
    sprite_source_size: AtlasRect,
    #[serde(alias = "sourceSize")]
    source_size: AtlasSize,
    pivot: AtlasPoint,
}

#[derive(Serialize, Deserialize, Debug)]
struct AtlasMeta {
    app: String,
    version: String,
    image: String,
    format: String,
    size: AtlasSize,
    scale: String,
}

#[derive(Serialize, Deserialize, Debug)]
struct AtlasPoint {
    x: f32,
    y: f32,
}

#[derive(Serialize, Deserialize, Debug)]
struct AtlasSize {
    w: i32,
    h: i32,
}

#[derive(Serialize, Deserialize, Debug)]
struct AtlasRect {
    x: i32,
    y: i32,
    w: i32,
    h: i32,
}