X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=misc%2Ftools%2Fall%2Fxonotic.subr;h=35ce643154553ff53f139592e02fdb35c977475d;hb=9df4cd612db0aa099ece622bafaef9a9ff4692da;hp=1d5d75cb57015ec2998cabfd73338383f4390945;hpb=7533f624e912d99e87106d2350f38601622f1af2;p=xonotic%2Fxonotic.git diff --git a/misc/tools/all/xonotic.subr b/misc/tools/all/xonotic.subr index 1d5d75cb..35ce6431 100644 --- a/misc/tools/all/xonotic.subr +++ b/misc/tools/all/xonotic.subr @@ -8,9 +8,10 @@ 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" ] ; then - msg "q3map2 needed! Building netradiant..." - make -C netradiant BUILD=native install/q3map2 + if ! [ -f "netradiant/build/q3map2" ] ; then + msg "q3map2 needed! Building q3map2..." + cmake -H'netradiant' -B'netradiant/build' -G'Unix Makefiles' -D'CMAKE_BUILD_TYPE=Release' -DBUILD_RADIANT=OFF -DDOWNLOAD_GAMEPACKS=OFF + cmake --build 'netradiant/build' -- q3map2 fi for mapfile in "$@"; do mapfile="data/xonotic-maps.pk3dir/maps/$mapfile.map" @@ -27,7 +28,7 @@ case "$cmd" in cleanqcc=false cleanqc=false compiled0= - debug=release + debug=release # when changing this default, change the description in the zsh autocompletion script if [ -z "$CC" ]; then export CC="gcc" fi @@ -395,7 +396,9 @@ case "$cmd" in ;; serverbench) # TODO(rpolzer): Why does :anticheat: output differ? Total game time differs? Why? - verbose "$SELF" run "$@" -noconfig -nohome +exec serverbench.cfg |\ + trap "rm -rf .serverbench_temp" 0 1 2 3 11 13 15 + mkdir -p .serverbench_temp + verbose "$SELF" run dedicated "$@" -noconfig -userdir .serverbench_temp +exec serverbench.cfg |\ tee /dev/stderr |\ grep '^:' |\ grep -v '^:gamestart:' |\