-
Notifications
You must be signed in to change notification settings - Fork 11
/
sprites.sh
executable file
·60 lines (46 loc) · 2.03 KB
/
sprites.sh
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
#!/bin/bash
RECTPACK_TIMEOUT=20
BASE_DIR=`cd $(dirname $0) && pwd`
[[ `uname -m` == "x86_64" ]] && RECTPACK="$BASE_DIR/rectpack" || RECTPACK="$BASE_DIR/rectpack.32"
BTREE="$BASE_DIR/btree"
[[ $# -le 1 || ! "$1" =~ ^[0-9]+$ ]] && {
echo "Usage: $0 padding (directory | png files)"
echo "Output consists of sprites.txt and sprites.png"
exit 1
}
padding=$1
shift
which identify &>/dev/null && which convert &>/dev/null || {
echo "Please install ImageMagick"
exit 1
}
files=`find "$@" -name "*.png" \! -name sprites.png`
[[ -z "$files" ]] && echo "no input png files" && exit
tmpdir=".sprites.sh.$$"
mkdir "$tmpdir"
for png in $files
do
echo "$png `identify -format "%w %h\n" "$png" | awk -v padding="$padding" 'NR==1{print $1+padding, $2+padding}'`"
done > "$tmpdir/input.txt"
cd "$tmpdir"
n=`wc -l < input.txt`
(
ulimit -t "$RECTPACK_TIMEOUT"
$RECTPACK -qb0 -i `awk '{if(NR!=1){printf ","}printf "%s",$2"x"$3}' input.txt` > output_rectpack.txt
)
if [[ `wc -l < output_rectpack.txt` -eq $((n+1)) ]]
then
w=`awk -v padding="$padding" 'NR==1{print $1-padding}' output_rectpack.txt`
h=`awk -v padding="$padding" 'NR==1{print $2-padding}' output_rectpack.txt`
awk -F'[x(), ]+' 'NR>1{print $1, $2, $3, $4}' output_rectpack.txt > output.txt
else
awk '{print NR,$2,$3}' input.txt > input_btree.txt
$BTREE input_btree.txt -simple -times 200 -maxIte 99999999 &>/dev/null
w=`awk -v padding="$padding" 'NR==2{print $3-padding}' input_btree.txt.info`
h=`awk -v padding="$padding" 'NR==3{print $3-padding}' input_btree.txt.info`
paste <(awk '{print $2,$3}' input_btree.txt) <(awk 'NF==5{print $2,$4}' input_btree.txt.info) > output.txt
fi
paste <(awk '{print $2, $3, $1}' input.txt | python $BASE_DIR/alphanum.py) <(awk '{print $1,$2,$4,$3}' output.txt | python $BASE_DIR/alphanum.py) | awk '{print $3, $7, $6}' | python $BASE_DIR/alphanum.py > ../sprites.txt
cd ..
rm -r "$tmpdir"
convert -strip -size "${w}x${h}" xc:"rgba(0,0,0,0)" `awk '{print $1" -geometry +"$2"+"$3" -composite"}' sprites.txt` PNG32:sprites.png