]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
./all compile-map: after compiling the map, compress it into a .pk3 which can be...
authorMatthias Krüger <matthias.krueger@famsik.de>
Mon, 8 Jul 2013 15:48:58 +0000 (17:48 +0200)
committerMatthias Krüger <matthias.krueger@famsik.de>
Mon, 8 Jul 2013 15:48:58 +0000 (17:48 +0200)
misc/tools/all/xonotic.subr

index 59ef5eff6634bc8dd7fd428d0dfd976df1579cc4..ba29aa5dc3d29c234807cde036f794932f463b76 100644 (file)
@@ -13,11 +13,19 @@ case "$cmd" in
                        make -C netradiant install/q3map2.x86
                fi
                for mapfile in "$@"; do
+                       mapname=$mapfile
                        mapfile="data/xonotic-maps.pk3dir/maps/$mapfile.map"
                        if [ ! -f "$mapfile" ] ; then
                                msg "ERROR, $mapfile not found!"
                        else
-                               time misc/tools/xonotic-map-compiler-optionsfile "$mapfile"
+                               time misc/tools/xonotic-map-compiler-optionsfile "$mapfile" // map is compiled now
+                               cd data/xonotic-maps.pk3dir
+                               mapblobhash=`git rev-parse --revs-only "HEAD:maps/$mapname.map.options" || true`-`git rev-parse --revs-only "HEAD:maps/$mapname.map" || true`
+                               mapnamezip=${mapname##*/}
+                               echo "Compressing to .pk3..."
+                               zip -9r "$mapnamezip-$mapblobhash.pk3"  "maps/$mapname.bsp" "maps/$mapname/"  "gfx/${mapnamezip}_mini.tga"
+                               mv -f "$mapnamezip-$mapblobhash.pk3" ../
+                               verbose "$SELF" update-maps
                        fi
                done
                ;;