#!/bin/sh M=${1%.map} shift sz=`grep '^size ' "$M.mapinfo" 2>/dev/null || true` if [ -n "$sz" ]; then minimap_override="-minimap + -minmax ${sz#size }" else minimap_override= fi mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times tstart=`date +%s` misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@" tend=`date +%s` let tdelta=$tend-$tstart # compute time cd ~/.xonotic-map-compiler-autobuild/ echo $tdelta > ${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname