]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/xonotic-map-compiler-optionsfile
xonotic-map-compiler-optionsfile: print in how many minutes the compile should finish...
[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 lasttime=`cat ~/.xonotic-map-compiler-autobuild/${M:30} 2>/dev/null` # oppress warnings if file doesn't exist
17 echo "Done in approximately $(($lasttime/60)) minutes."
18
19 misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@"
20
21 tend=`date +%s`
22 let tdelta=$tend-$tstart # compute time
23
24 echo $tdelta > ~/.xonotic-map-compiler-autobuild/${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname