abstreet/apps/game/compare_screencaps.sh

32 lines
800 B
Bash
Raw Normal View History

2019-01-15 20:41:45 +03:00
#!/bin/bash
country=$1
city=$2;
map=$3;
mkdir screens_before;
cd screens_before;
unzip ../../../data/input/${country}/${city}/screenshots/${map}.zip;
cd ..;
before=screens_before;
after=screenshots/${country}/${city}/${map};
2019-01-15 20:41:45 +03:00
rm -rf diff
mkdir diff
for file in `ls $before | grep -v full.png | grep -v combine.sh`; do
# For whatever reason, the intersection annotation doesn't seem to
# always match up between two captures.
prefix=`echo $file | sed 's/_.*//' | sed 's/.png//' | sed 's/.gif//'`;
diff $before/${prefix}* $after/${prefix}*;
2019-01-15 20:41:45 +03:00
if [ $? -eq 1 ]; then
compare $before/${prefix}* $after/${prefix}* diff/${prefix}.png;
feh diff/${prefix}.png $before/${prefix}* $after/${prefix}*;
# Handle interrupts by killing the script entirely
if [ $? -ne 0 ]; then
exit;
2019-01-15 20:41:45 +03:00
fi
fi
done