Fortraneries/BloubWorld/runme.sh

79 lines
1.3 KiB
Bash
Raw Normal View History

2022-02-06 23:45:08 +01:00
#!/bin/bash
#
# how to run this mess in a batch style
#
INCFILE="bloubs.inc"
TMPPNG="/dev/shm/bloubs7.png"
2022-02-09 19:51:42 +01:00
POVOPT="+Q9 +a -v -d -W920 -H600 -WT2"
2022-02-06 23:45:08 +01:00
DDIR="frames"
2022-02-07 01:50:49 +01:00
LOGERR="log.error"
2022-02-06 23:45:08 +01:00
2022-02-09 19:51:42 +01:00
BLBS_IN="/dev/shm/in.blbs"
BLBS_OUT="/dev/shm/out.blbs"
2022-02-09 00:42:32 +01:00
NBIMG=4000
2022-02-08 18:56:51 +01:00
2022-02-06 23:45:08 +01:00
make all
err=$?
if [ $err -ne 0 ] ; then
2022-02-09 19:51:42 +01:00
echo 'make error code is = ' $err
2022-02-06 23:45:08 +01:00
exit 1
fi
2022-02-07 02:09:54 +01:00
2022-02-08 18:56:51 +01:00
printf "\n#declare NbImg = %d;\n" $NBIMG > nbimg.inc
2022-02-06 23:45:08 +01:00
#
# first, we have to make a seminal buch of bloubs
# --> this function need to be paraletrizable
#
2022-02-11 10:23:13 +01:00
./genbloubs ${BLBS_IN} 5000
2022-02-06 23:45:08 +01:00
2022-02-08 18:56:51 +01:00
for idx in $(seq 0 $NBIMG)
2022-02-06 23:45:08 +01:00
do
echo "======== run passe $idx ========="
2022-02-09 19:51:42 +01:00
./exportbloubs ${BLBS_IN} | awk -f toinc.awk > $INCFILE
2022-02-06 23:45:08 +01:00
2022-02-07 01:50:49 +01:00
povray -Iscene.pov -K${idx} -O${TMPPNG} ${POVOPT} 2> $LOGERR
2022-02-08 02:53:49 +01:00
if [ 0 -ne $? ] ; then
tail -15 $LOGERR
sleep 30
else
grep "Trace Time" $LOGERR
fi
td=$(date +'%F %R:%S')
2022-02-11 10:23:13 +01:00
hi=$(printf "#%05d" $idx)
2022-02-06 23:45:08 +01:00
PNG=$(printf "%s/%05d.png" ${DDIR} $idx)
convert ${TMPPNG} \
2022-02-11 10:23:13 +01:00
-font Courier-Bold \
2022-02-09 19:51:42 +01:00
-pointsize 22 \
-fill CadetBlue \
2022-02-06 23:45:08 +01:00
-gravity south-east \
2022-02-09 19:51:42 +01:00
-annotate +15+10 "$td" \
-gravity south-west \
-annotate +15+10 "$hi" \
2022-02-06 23:45:08 +01:00
$PNG
2022-02-07 01:50:49 +01:00
echo $PNG '[done]'
2022-02-06 23:45:08 +01:00
2022-02-09 19:51:42 +01:00
./movebloubs ${BLBS_IN} ${BLBS_OUT}
mv ${BLBS_OUT} ${BLBS_IN}
2022-02-07 01:50:49 +01:00
echo
2022-02-06 23:45:08 +01:00
done
2022-02-07 01:50:49 +01:00
rm $LOGERR
2022-02-06 23:45:08 +01:00
2022-02-09 00:42:32 +01:00
# XXX convert -delay 10 -resize 50% -colors 192 \
# XXX $DDIR/????[0]*.png foo.gif
2022-02-08 02:53:49 +01:00
./encode.sh
2022-02-06 23:45:08 +01:00