From: Matthias Krüger Date: Mon, 8 Jul 2013 15:48:58 +0000 (+0200) Subject: ./all compile-map: after compiling the map, compress it into a .pk3 which can be... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ce5caa9c7ec659e59408b8c2b2106f231ced381e;p=xonotic%2Fxonotic.git ./all compile-map: after compiling the map, compress it into a .pk3 which can be moved into data.old and back when switching branches and running ./all update-maps. --- diff --git a/misc/tools/all/xonotic.subr b/misc/tools/all/xonotic.subr index 59ef5eff..ba29aa5d 100644 --- a/misc/tools/all/xonotic.subr +++ b/misc/tools/all/xonotic.subr @@ -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 ;;