-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.rs
105 lines (90 loc) · 3.1 KB
/
build.rs
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
use blit::*;
use git2::Repository;
use std::env;
use std::fs;
fn get_blit_buffer(path: &str, mask_color: u32) -> Option<BlitBuffer> {
let img = image::open(path).unwrap();
Some(blit_buffer(&img, Color::from_u32(mask_color)))
}
fn save_blit_buffer_from_image(
assets_dir: &str,
folder: &str,
name: &str,
output: &str,
mask_color: u32,
) {
let path = format!("{}/{}/{}", assets_dir, folder, name);
let blit_buf = get_blit_buffer(&path, mask_color).unwrap();
blit_buf
.save(format!(
"{}/{}/{}.blit",
env::var("OUT_DIR").unwrap(),
folder,
output
))
.unwrap();
}
fn save_anim_buffer(assets_dir: &str, folder: &str, name: &str, output: &str, mask_color: u32) {
let path = format!("{}/{}/{}", assets_dir, folder, name);
// Open the spritesheet info
let file = fs::File::open(path).unwrap();
let info: aseprite::SpritesheetData = serde_json::from_reader(file).unwrap();
let blit_buf = {
let image = info.meta.image.as_ref();
get_blit_buffer(
&format!("{}/{}", env::var("OUT_DIR").unwrap(), &image.unwrap()),
mask_color,
)
.unwrap()
};
let anim_buffer = AnimationBlitBuffer::new(blit_buf, info);
anim_buffer
.save(format!(
"{}/{}/{}.anim",
env::var("OUT_DIR").unwrap(),
folder,
output
))
.unwrap();
}
fn parse_folder(assets_dir: &str, folder: &str, mask_color: u32) {
fs::create_dir_all(format!("{}/{}", env::var("OUT_DIR").unwrap(), folder)).unwrap();
let asset_paths = fs::read_dir(format!("{}/{}", assets_dir, folder)).unwrap();
for path in asset_paths {
let filepath = path.unwrap().path();
let filename = filepath.file_name().unwrap();
let filestem = filepath.file_stem().unwrap();
let extension = filepath.extension().unwrap();
// Rerun the build script if any of the assets changed
println!("cargo:rerun-if-changed={:?}", filepath);
match extension.to_str().unwrap() {
"png" => save_blit_buffer_from_image(
assets_dir,
folder,
filename.to_str().unwrap(),
filestem.to_str().unwrap(),
mask_color,
),
"json" => save_anim_buffer(
assets_dir,
folder,
filename.to_str().unwrap(),
filestem.to_str().unwrap(),
mask_color,
),
other => panic!("Filetype not recognized: {}", other),
}
}
}
fn main() {
let assets_dir = format!("{}/assets", env::var("OUT_DIR").unwrap());
if !std::path::Path::new(&assets_dir).exists() {
let url = "https://github.com/tversteeg/castle-game-assets.git";
if let Err(e) = Repository::clone(url, &assets_dir) {
panic!("Failed to clone repository: {}", e);
}
}
parse_folder(&assets_dir, "sprites", 0xFF_FF_00_FF);
parse_folder(&assets_dir, "masks", 0xFF_00_00_00);
parse_folder(&assets_dir, "gui", 0xFF_FF_00_FF);
}