]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
refactor map building so mapinfo size detection works too
authorRudolf Polzer <divverent@xonotic.org>
Sun, 16 Jun 2013 16:23:53 +0000 (18:23 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Sun, 16 Jun 2013 16:23:53 +0000 (18:23 +0200)
misc/tools/all/xonotic.subr
misc/tools/xonotic-map-compiler-autobuild
misc/tools/xonotic-map-compiler-optionsfile [new file with mode: 0755]

index ef09a530cc755318bf67c158d799e6984a2e0d53..b2ba714cdce55904c449ef50d7b9d6679b81dea3 100644 (file)
@@ -8,18 +8,16 @@ case "$cmd" in
                        msg "Usage: ./all compile-map mapname1 mapname2 mapname3"
                        msg "For example: ./all compile-map dance xoylent"
                fi
-               if [ ! -f "netradiant/install/q3map2.x86" ] ; then
+               if ! [ -f "netradiant/install/q3map2.x86" ] ; then
                        msg "q3map2 needed! Building netradiant..."
-                       cd netradiant
-                       make
-                       cd ../
+                       make -C netradiant install/q3map2.x86
                fi
-               for mapfile in $@ ; do
-                               mapfile="data/xonotic-maps.pk3dir/maps/$1.map"
+               for mapfile in "$@"; do
+                       mapfile="data/xonotic-maps.pk3dir/maps/$mapfile.map"
                        if [ ! -f "$mapfile" ] ; then
                                msg "ERROR, $mapfile not found!"
                        else
-                               time misc/tools/xonotic-map-compiler $mapfile `grep "^-" $mapfile.options`
+                               time misc/tools/xonotic-map-compiler-optionsfile "$mapfile"
                        fi
                done
                ;;
index aa14ddd0da65511e3a34e8562f13d8acfd3894c8..d7a3a9364779c028fd16725b22432b99bad94b66 100755 (executable)
@@ -176,14 +176,8 @@ buildthemap()
        fi
        t0=`date +%s`
        (
-               cd maps
-               sz=`grep '^size ' "$M.mapinfo" 2>/dev/null || true`
-               if [ -n "$sz" ]; then
-                       minimap_override="-minimap + -minmax ${sz#size }"
-               else
-                       minimap_override=
-               fi
-               ../../../misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override $build_override > "$M.log" 2>&1
+               cd ../..
+               misc/tools/xonotic-map-compiler-optionsfile "data/xonotic-data.pk3dir/maps/$M" $build_override > "$M.log" 2>&1
        )
        status=$?
        if ! [ -f "maps/$M.bsp" ]; then
diff --git a/misc/tools/xonotic-map-compiler-optionsfile b/misc/tools/xonotic-map-compiler-optionsfile
new file mode 100755 (executable)
index 0000000..1666c5b
--- /dev/null
@@ -0,0 +1,12 @@
+#!/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
+misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@"