X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=misc%2Ftools%2Fxonotic-map-compiler-optionsfile;h=6c40e853965bb21279b0bab9dc5e252171945fe3;hb=a617e7e3f5379a5ee34a22d09f2b62f198438550;hp=1666c5bfd2bcad01d075363d3a5d6459e7a0744e;hpb=d33a20e42636a0c28007862b94e07ad117cd73dd;p=xonotic%2Fxonotic.git diff --git a/misc/tools/xonotic-map-compiler-optionsfile b/misc/tools/xonotic-map-compiler-optionsfile index 1666c5bf..6c40e853 100755 --- a/misc/tools/xonotic-map-compiler-optionsfile +++ b/misc/tools/xonotic-map-compiler-optionsfile @@ -9,4 +9,25 @@ if [ -n "$sz" ]; then else minimap_override= fi + +mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times in +tstart=`date +%s` + +lasttime=`cat ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime 2>/dev/null || true` +if [ -n "$lasttime" ] ; then + echo "Done in approximately $((($lasttime+59)/60)) minutes." + if [ -n "$IRCSPAM" ]; then + echo "Done in approximately $((($lasttime+59)/60)) minutes." | $IRCSPAM >/dev/null 2>&1 || true + fi +fi + misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@" +status=$? + +tend=`date +%s` +tdelta=$(($tend - $tstart)) # compute time +if [ $status -eq 0 ] ; then + echo "$tdelta" > ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime # save time in ~/.xonotic-map-compiler-autobuild/mapname +fi + +exit $status