-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-animations.js
116 lines (95 loc) · 2.59 KB
/
build-animations.js
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
106
107
108
109
110
111
112
113
114
115
116
const fs = require('fs-extra');
const chokidar = require('chokidar');
const path = require('path');
const { exec } = require('child_process');
const asepriteExecutable = '\'/mnt/c/Program Files (x86)/Steam/steamapps/common/Aseprite/Aseprite.exe\'';
const asepriteExportDir = './src/art/aseprite_exports';
const asepriteExportLayerCmd = ({
layer,
file,
exportDir
}) => [
asepriteExecutable,
'-b',
`--layer "${layer}"`,
`--all-layers`,
file,
// NOTE:
// If we use `{layer}` as a part of the filename, aseprite will
// ignore the `--layer` option.
`--save-as ${exportDir}/{tag}-{frame}--${layer}.png`
].join(' ');
function getAsepriteLayers(file) {
const cmd =
`${asepriteExecutable} -b --list-layers --all-layers ${file}`;
return new Promise((resolve, reject) => {
exec(cmd, (err, stdout, stderr) => {
const error = err || stderr;
if (error) {
reject(error);
return;
}
resolve(stdout.split('\n').map(l => l.trim()));
});
});
}
const layersToExport = [
'main',
'shadow',
'light_source',
'collision_hitbox',
'collision_movement'
];
const requiredLayers = ['main'];
async function run(event, file) {
try {
console.log(`[aseprite animation ${event}] ${file}`);
const basename = path.basename(file, '.aseprite');
const fullExportDir = `${asepriteExportDir}/${basename}`;
await fs.remove(fullExportDir);
if (event === 'unlink') {
return;
}
const layerNames = await getAsepriteLayers(
file);
requiredLayers.forEach((layer) => {
if (!layerNames.includes(layer)) {
throw new Error(
`animation \`${file}\` missing layer ${layer}`);
}
});
const commandConfigs = layerNames.filter((layer) => {
return layersToExport.includes(layer);
}).map((layer) => {
return {
layer,
file,
exportDir: fullExportDir
};
});
function execCmd(config) {
const { layer } = config;
const cmd = asepriteExportLayerCmd(config);
exec(cmd, (err, stdout, stderr) => {
if (err) {
console.error('error: ', err);
} else if (stderr) {
console.error('stderr: ', stderr);
} else if (stdout) {
console.log('stdout: ', stdout);
} else {
console.log(
`[aseprite animation] exported layer \`${layer}\``);
}
});
}
commandConfigs.forEach(execCmd);
} catch (err) {
console.error('run error', err);
}
}
module.exports = (watchPattern) => {
chokidar.watch(watchPattern, {
usePolling: true
}).on('all', run);
}