minor changes

This commit is contained in:
tth 2022-02-09 19:51:42 +01:00
parent 5444956a72
commit 027bca066e

View File

@ -7,16 +7,19 @@
INCFILE="bloubs.inc" INCFILE="bloubs.inc"
TMPPNG="/dev/shm/bloubs7.png" TMPPNG="/dev/shm/bloubs7.png"
POVOPT="+Q9 +a -v -d -W920 -H600" POVOPT="+Q9 +a -v -d -W920 -H600 -WT2"
DDIR="frames" DDIR="frames"
LOGERR="log.error" LOGERR="log.error"
BLBS_IN="/dev/shm/in.blbs"
BLBS_OUT="/dev/shm/out.blbs"
NBIMG=4000 NBIMG=4000
make all make all
err=$? err=$?
if [ $err -ne 0 ] ; then if [ $err -ne 0 ] ; then
echo 'make error = ' $err echo 'make error code is = ' $err
exit 1 exit 1
fi fi
@ -26,14 +29,14 @@ printf "\n#declare NbImg = %d;\n" $NBIMG > nbimg.inc
# first, we have to make a seminal buch of bloubs # first, we have to make a seminal buch of bloubs
# --> this function need to be paraletrizable # --> this function need to be paraletrizable
# #
./genbloubs in.blbs 9000 ./genbloubs ${BLBS_IN} 9999
for idx in $(seq 0 $NBIMG) for idx in $(seq 0 $NBIMG)
do do
echo "======== run passe $idx =========" echo "======== run passe $idx ========="
./exportbloubs in.blbs | awk -f toinc.awk > $INCFILE ./exportbloubs ${BLBS_IN} | awk -f toinc.awk > $INCFILE
povray -Iscene.pov -K${idx} -O${TMPPNG} ${POVOPT} 2> $LOGERR povray -Iscene.pov -K${idx} -O${TMPPNG} ${POVOPT} 2> $LOGERR
if [ 0 -ne $? ] ; then if [ 0 -ne $? ] ; then
@ -44,22 +47,23 @@ do
fi fi
td=$(date +'%F %R:%S') td=$(date +'%F %R:%S')
txt=$(printf "%5d %s" $idx "${td}") hi=$(printf "0x%04x" $idx)
PNG=$(printf "%s/%05d.png" ${DDIR} $idx) PNG=$(printf "%s/%05d.png" ${DDIR} $idx)
echo "$txt" | tee -a log.txt
convert ${TMPPNG} \ convert ${TMPPNG} \
-font fixed \ -font fixed \
-pointsize 20 \ -pointsize 22 \
-fill Orange \ -fill CadetBlue \
-gravity south-east \ -gravity south-east \
-annotate +15+10 "$txt" \ -annotate +15+10 "$td" \
-gravity south-west \
-annotate +15+10 "$hi" \
$PNG $PNG
echo $PNG '[done]' echo $PNG '[done]'
./movebloubs in.blbs out.blbs ./movebloubs ${BLBS_IN} ${BLBS_OUT}
mv out.blbs in.blbs mv ${BLBS_OUT} ${BLBS_IN}
echo echo
done done