]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/xonotic-map-compiler-optionsfile
xonotic-map-compiler-optionsfile: oops, do not try reading compiletimes for maps...
[xonotic/xonotic.git] / misc / tools / xonotic-map-compiler-optionsfile
1 #!/bin/sh
2
3 M=${1%.map}
4 shift
5
6 sz=`grep '^size ' "$M.mapinfo" 2>/dev/null || true`
7 if [ -n "$sz" ]; then
8         minimap_override="-minimap + -minmax ${sz#size }"
9 else
10         minimap_override=
11 fi
12
13 mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times in
14 tstart=`date +%s`
15
16 if [ -f "~/.xonotic-map-compiler-autobuild/${M:30}" ] ; then
17         lasttime=`cat ~/.xonotic-map-compiler-autobuild/${M:30} 2>/dev/null` # oppress warnings if file doesn't exist
18         echo "Done in approximately $(($lasttime/60)) minutes."
19 fi
20
21 misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@" || mapfail=true
22
23 tend=`date +%s`
24 let tdelta=$tend-$tstart # compute time
25 if  [[ ! ${mapfail} ]] ; then
26         echo $tdelta > ~/.xonotic-map-compiler-autobuild/${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname
27 fi