]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/xonotic-map-compiler-optionsfile
Fix macOS SDL2 framework permissions
[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##*/}".buildtime 2>/dev/null || true`
17 if [ -n "$lasttime" ] ; then
18         echo "Predicted build time is $((($lasttime+59)/60)) minutes."
19         if [ -n "$IRCSPAM" ]; then
20                 echo "Predicted build time is $((($lasttime+59)/60)) minutes." | $IRCSPAM >/dev/null 2>&1 || true
21         fi
22 fi
23
24 misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@"
25 status=$?
26
27 tend=`date +%s`
28 tdelta=$(($tend - $tstart)) # compute time
29 if [ $status -eq 0 ] ; then
30         echo "$tdelta" > ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime # save time in ~/.xonotic-map-compiler-autobuild/mapname
31 fi
32
33 exit $status