X-Git-Url: https://mop.ddnsfree.com/gitweb/?p=brisk-img.git;a=blobdiff_plain;f=bin%2Fspriter.sh;h=e9f4026c1e6006d0dde95f22ae3b36f21b2f98b5;hp=bc53357f7448af90f911653159adf83192095113;hb=a0a60175da199e687e19998d4d3fe35f82682d31;hpb=a8f2f473baa770dab92383b4612656726ac25991 diff --git a/bin/spriter.sh b/bin/spriter.sh index bc53357..e9f4026 100755 --- a/bin/spriter.sh +++ b/bin/spriter.sh @@ -19,6 +19,13 @@ h=$(identify -format "%h" ${fold}/00${sfx}.png) convert -size $((w * 9))x$((h * 5)) xc:none ${fou}${sfx}_bg.png convert -size $((h * 9))x$((w * 5)) xc:none ${fou}${sfx}_oriz_bg.png +convert -size ${w}x${h} xc:none ${fou}${sfx}_empty.png +convert -size ${h}x${w} xc:none ${fou}${sfx}_empty_eawe.png + +cssname="${fou}${sfx}.css" +rm -f $cssname +touch $cssname + for direction in "" "_ea" "_we"; do horiz_sfx="" if [ "$direction" != "" ]; then @@ -36,6 +43,14 @@ for direction in "" "_ea" "_we"; do y=$(((card % 5) * w)) fi + card_id=$(printf "%02d" "$((seed * 10 + card))") + cat <> $cssname +img[data-card-id="${card_id}${direction}"] { + background: url('img/cards_xx${direction}.png') -${x}px -${y}px; +} + +EOF + fin_no=$(printf "%s/%02d%s.png" "$fold" "$((seed * 10 + card))" "$sfx") fin=$(printf "%s/%02d%s%s.png" "$fold" "$((seed * 10 + card))" "$sfx" "$direction") if [ $seed -lt 4 ]; then @@ -62,4 +77,4 @@ for direction in "" "_ea" "_we"; do echo "Created ${fou}${sfx}${direction}.png" done -rm ${fou}${sfx}_bg.png ${fou}${sfx}_oriz_bg.png ${fold}/[0-3][0-9]${sfx}*.png +rm ${fold}/[0-3][0-9]${sfx}*.png ${fou}${sfx}_bg.png ${fou}${sfx}_oriz_bg.png