]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
Merge branch 'master' into divVerent/crypto2
authorRudolf Polzer <divverent@alientrap.org>
Thu, 12 Aug 2010 04:33:49 +0000 (06:33 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Thu, 12 Aug 2010 04:33:49 +0000 (06:33 +0200)
19 files changed:
all
misc/buildfiles/osx/Xonotic-SDL.app/Contents/Resources/Xonotic.icns
misc/buildfiles/osx/Xonotic.app/Contents/Resources/Xonotic.icns
misc/logos/icons_icns/Xonotic.icns [new file with mode: 0644]
misc/logos/icons_icns/xonotic.icns [deleted file]
misc/logos/icons_xpm/xonotic_32.xpm [new file with mode: 0644]
misc/netradiant-NexuizPack/games/nexuiz.game [deleted file]
misc/netradiant-NexuizPack/gpl.txt [deleted file]
misc/netradiant-NexuizPack/nexuiz.game/data/default_shaderlist.txt [deleted file]
misc/netradiant-NexuizPack/nexuiz.game/data/entities.def [deleted file]
misc/netradiant-NexuizPack/nexuiz.game/data/turrets.def [deleted file]
misc/netradiant-NexuizPack/nexuiz.game/default_build_menu.xml [deleted file]
misc/netradiant-NexuizPack/nexuiz.game/game.xlink [deleted file]
misc/tools/cached-converter.sh
misc/tools/compress-texture
misc/tools/rebrand-darkplaces-engine.sh [new file with mode: 0755]
misc/tools/xonotic-map-compiler
misc/tools/xonotic.brand [new file with mode: 0644]
xonotic-linux-glx.sh

diff --git a/all b/all
index 9d718df320140c31545b74401dae8247fdaad09d..498644baf990054afad33f065b38083f55113252 100755 (executable)
--- a/all
+++ b/all
@@ -35,7 +35,7 @@ esac
 
 msg()
 {
-       echo "\e[1m$*\e[m"
+       echo >&2 "\e[1m$*\e[m"
 }
 
 self=`git hash-object "$SELF"`
@@ -871,21 +871,75 @@ case "$cmd" in
                rm -f "$t"
                echo "$report" | ssh nexuiz@rm.endoftheinternet.org cat '>>' public_html/xonotic-merge-notes.txt
                ;;
+       clean)
+               force=false
+               if [ x"$1" = x"-f" ]; then
+                       force=true
+               fi
+               for d in $repos; do
+                       enter "$d0/$d" verbose
+                       if $force; then
+                               verbose git checkout-index -fa
+                       fi
+                       case "$d" in
+                               .)
+                                       verbose git clean -df
+                                       ;;
+                               *)
+                                       verbose git clean -xdf
+                                       ;;
+                       esac
+               done
+               ;;
 
        # release building goes here
        release-prepare)
                #"$SELF" each git clean -fxd
-               rm -rf Xonotic
-               mkdir -p Xonotic
-               git archive --format=tar HEAD -- Docs misc server xonotic-linux-glx.sh xonotic-linux-sdl.sh misc/buildfiles | {
-                       cd Xonotic
-                       mkdir data fteqcc
-                       tar xvf -
-                       rm -rf misc/builddeps
-                       mv misc/buildfiles/win32/* .
-                       mv misc/buildfiles/win64/* .
-                       mv misc/buildfiles/osx/* .
-                       rm -rf misc/buildfiles
+               case "$RELEASETYPE" in
+                       beta)
+                               msg "Building a BETA"
+                               ;;
+                       release)
+                               msg "Building a RELEASE"
+                               ;;
+                       *)
+                               msg "Must either set RELEASETYPE=beta or RELEASETYPE=release"
+                               exit 1
+                               ;;
+               esac
+               verbose rm -rf Xonotic Xonotic*.zip
+               verbose mkdir -p Xonotic
+               verbose date +%Y%m%d > Xonotic/stamp.txt
+               verbose git archive --format=tar HEAD -- Docs misc server xonotic-linux-glx.sh xonotic-linux-sdl.sh misc/buildfiles | {
+                       verbose cd Xonotic
+                       verbose mkdir data fteqcc source source/darkplaces source/fteqcc
+                       verbose tar xvf -
+                       verbose rm -rf misc/builddeps
+                       verbose mv misc/buildfiles/win32/* . || true
+                       verbose mv misc/buildfiles/win64 bin64 || true
+                       verbose mv misc/buildfiles/osx/* . || true
+                       verbose rm -rf misc/buildfiles
+               }
+               {
+                       verbose cd darkplaces
+                       verbose git archive --format=tar HEAD
+               } | {
+                       verbose cd Xonotic/source/darkplaces
+                       verbose tar xvf -
+               }
+               {
+                       verbose cd fteqcc
+                       verbose git archive --format=tar HEAD
+               } | {
+                       verbose cd Xonotic/source/fteqcc
+                       verbose tar xvf -
+               }
+               {
+                       verbose cd data/xonotic-data.pk3dir
+                       verbose git archive --format=tar HEAD -- qcsrc Makefile
+               } | {
+                       verbose cd Xonotic/source
+                       verbose tar xvf -
                }
                ;;
        release-compile-run)
@@ -897,23 +951,24 @@ case "$cmd" in
                targetfiles=$6
                case " $HOSTS_THAT_ARE_MYSELF " in
                        *\ $host\ *)
-                               rsync --delete -zvaSHPAX "$srcdir"/ "$buildpath/"
-                               (
-                                       cd $buildpath
-                                       verbose eval make clean $maketargets $makeflags
-                               )
+                               verbose rsync --delete -zvaSHP "$srcdir"/ "$buildpath/"
+                               verbose eval make -C "$buildpath" clean $maketargets $makeflags
                                for f in $targetfiles; do
-                                       verbose mv "$buildpath/${f%:*}" "${f##*:}"
+                                       verbose mv "$buildpath/${f%:*}" "${f##*:}" || true
                                done
                                ;;
                        *)
-                               rsync --delete -zvaSHPAX "$srcdir"/ "$host:$buildpath/"
+                               verbose rsync --delete -zvaSHP "$srcdir"/ "$host:$buildpath/"
                                verbose ssh "$host" ". ~/.profile && cd $buildpath && make clean $maketargets $makeflags"
                                for f in $targetfiles; do
-                                       verbose rsync -zvaSHPAX "$host:$buildpath/${f%:*}" "${f##*:}"
+                                       verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true
                                done
                                ;;
                esac
+               # now rebrand the binaries...
+               for f in $targetfiles; do
+                       verbose "$d0/misc/tools/rebrand-darkplaces-engine.sh" "$d0/misc/tools/xonotic.brand" "${f##*:}" || true
+               done
                ;;
        release-compile)
                suffix=$1
@@ -922,90 +977,106 @@ case "$cmd" in
                fteqcc_files=$4
                darkplaces_maketargets=$5
                darkplaces_files=$6
-               "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "fteqcc" "$fteqcc_files"
-               "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "darkplaces" "$darkplaces_files"
+               verbose "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "Xonotic/source/fteqcc" "$fteqcc_files"
+               verbose "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "Xonotic/source/darkplaces" "$darkplaces_files"
                ;;
        release-engine-win32)
-               "$SELF" release-compile win32 \
-                       'DP_MAKE_TARGET=mingw CC="i586-mingw32msvc-gcc -Wl,--dynamicbase -Wl,--nxcompat -g -DSUPPORTDIRECTX -DUSE_WSPIAPI_H -I$HOME/dp.win32/include -L$HOME/dp.win32/lib" WINDRES="i586-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win32/bin/sdl-config"' \
+               verbose "$SELF" release-compile win32 \
+                       'STRIP=: DP_MAKE_TARGET=mingw CC="i586-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -DSUPPORTDIRECTX -DUSE_WSPIAPI_H -I$HOME/dp.win32/include -L$HOME/dp.win32/lib" WINDRES="i586-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win32/bin/sdl-config"' \
                        win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
-                       debug 'darkplaces.exe:Xonotic/xonotic.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
+                       release 'darkplaces.exe:Xonotic/xonotic.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
                ;;
        release-engine-win64)
-               "$SELF" release-compile win64 \
-                       'DP_MAKE_TARGET=mingw CC="amd64-mingw32msvc-gcc -Wl,--dynamicbase -Wl,--nxcompat -g -DSUPPORTDIRECTX -DUSE_WSPIAPI_H -I$HOME/dp.win64/include -L$HOME/dp.win64/lib" WINDRES="amd64-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win64/bin/sdl-config" LDFLAGS_WINCOMMON=""' \
-                       win 'fteqcc.exe:Xonotic/fteqcc/fteqcc-64.exe' \
-                       debug 'darkplaces.exe:Xonotic/xonotic-64.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl-64.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated-64.exe'
+               verbose "$SELF" release-compile win64 \
+                       'STRIP=: DP_MAKE_TARGET=mingw CC="amd64-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -DSUPPORTDIRECTX -DUSE_WSPIAPI_H -I$HOME/dp.win64/include -L$HOME/dp.win64/lib" WINDRES="amd64-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win64/bin/sdl-config" LDFLAGS_WINCOMMON=""' \
+                       win 'fteqcc.exe:Xonotic/fteqcc/fteqcc-x64.exe' \
+                       release 'darkplaces.exe:Xonotic/xonotic-x64.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl-x64.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated-x64.exe'
                ;;
        release-engine-osx)
-               "$SELF" release-compile osx \
-                       'CC="gcc -g -arch i386 -arch ppc -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -I$HOME/dp.osx/include -L$HOME/dp.osx/lib"' \
+               # gcc on OSX is buggy, needs -fno-reorder-blocks for a release build to succeed
+               verbose "$SELF" release-compile osx \
+                       'STRIP=: CC="gcc -g -arch i386 -arch ppc -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -I$HOME/dp.osx/include -L$HOME/dp.osx/lib -fno-reorder-blocks"' \
                        all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.osx' \
-                       sdl-debug 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin'
+                       'sv-release sdl-release' 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin' 'darkplaces-dedicated:xonotic-osx-dedicated'
                ;;
        release-engine-linux32)
-               "$SELF" release-compile linux32 \
-                       'CC="gcc -m32 -g -Wl,--hash-style=sysv -I$HOME/dp.linux32/include -L$HOME/dp.linux32/lib" DP_MODPLUG_STATIC_LIBDIR=$HOME/dp.linux32/lib DP_LINK_TO_LIBJPEG=1' \
+               verbose "$SELF" release-compile linux32 \
+                       'STRIP=: CC="gcc -m32 -g -Wl,--hash-style=sysv -I$HOME/dp.linux32/include -L$HOME/dp.linux32/lib" DP_MODPLUG_STATIC_LIBDIR=$HOME/dp.linux32/lib DP_LINK_TO_LIBJPEG=1' \
                        all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux32' \
-                       debug 'darkplaces-glx:Xonotic/xonotic-linux-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux32-dedicated'
+                       release 'darkplaces-glx:Xonotic/xonotic-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux32-dedicated'
                ;;
        release-engine-linux64)
-               "$SELF" release-compile linux64 \
-                       'CC="gcc -m64 -g -Wl,--hash-style=sysv -I$HOME/dp.linux64/include -L$HOME/dp.linux64/lib" DP_MODPLUG_STATIC_LIBDIR=$HOME/dp.linux64/lib DP_LINK_TO_LIBJPEG=1' \
+               verbose "$SELF" release-compile linux64 \
+                       'STRIP=: CC="gcc -m64 -g -Wl,--hash-style=sysv -I$HOME/dp.linux64/include -L$HOME/dp.linux64/lib" DP_MODPLUG_STATIC_LIBDIR=$HOME/dp.linux64/lib DP_LINK_TO_LIBJPEG=1' \
                        all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux64' \
-                       debug 'darkplaces-glx:Xonotic/xonotic-linux-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
+                       release 'darkplaces-glx:Xonotic/xonotic-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
                ;;
        release-engine)
-               "$SELF" release-engine-win32 &
-               "$SELF" release-engine-win64 &
-               "$SELF" release-engine-osx &
-               "$SELF" release-engine-linux32 &
-               "$SELF" release-engine-linux64 &
-               wait
+               verbose "$SELF" release-engine-osx
+               verbose "$SELF" release-engine-win32
+               # verbose "$SELF" release-engine-win64
+               verbose "$SELF" release-engine-linux32
+               verbose "$SELF" release-engine-linux64
                ;;
        release-maps)
-               "$SELF" update-maps
-               for X in data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
-                       if [ -f "$X" ]; then
-                               cd Xonotic/data/xonotic-maps.pk3dir
-                               unzip ../../../"$X"
-                               cd ../../..
-                       fi
-               done
-               ;;
-       release-finish)
-               # version numnber and stuff like that
+               verbose "$SELF" update-maps
                ;;
        release-qc)
-               verbose make -C data/xonotic-data.pk3dir FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" FTEQCCFLAGS_WATERMARK=
+               case "$RELEASETYPE" in
+                       beta)
+                               verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 clean all
+                               ;;
+                       release)
+                               verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 FTEQCCFLAGS_WATERMARK= clean all
+                               ;;
+               esac
+               verbose rm -f Xonotic/source/*/fteqcc.log
                ;;
        release-buildpk3-transform-raw)
                dir=$1
                ;;
        release-buildpk3-transform-normal)
                dir=$1
-               cd "$dir"
+               verbose cd "$dir"
                # texture: convert to jpeg and dds
-               export do_jpeg=true
-               export jpeg_qual_rgb=95
-               export jpeg_qual_a=99
-               export do_dds=true
-               export dds_flags=
-               export do_ogg=false
-               find textures -type f -print0 | xargs -0 "$d0"/misc/tools/cached-converter.sh
+               verbose export do_jpeg=true
+               verbose export jpeg_qual_rgb=95
+               verbose export jpeg_qual_a=99
+               verbose export do_dds=true
+               verbose export dds_flags=
+               verbose export do_ogg=false
+               verbose export del_src=true
+               find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
                ;;
        release-buildpk3-transform-low)
                dir=$1
-               cd "$dir"
+               verbose cd "$dir"
                # texture: convert to jpeg and dds
                # music: reduce bitrate
-               export do_jpeg=true
-               export jpeg_qual_rgb=95
-               export jpeg_qual_a=99
-               export do_dds=false
-               export do_ogg=true
-               export ogg_qual=1
-               find textures sound/cdtracks -type f -print0 | xargs -0 "$d0"/misc/tools/cached-converter.sh
+               verbose export do_jpeg=true
+               verbose export jpeg_qual_rgb=80
+               verbose export jpeg_qual_a=95
+               verbose export do_dds=false
+               verbose export do_ogg=true
+               verbose export ogg_qual=1
+               verbose export del_src=true
+               find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
+               ;;
+       release-buildpk3-transform-lowdds)
+               dir=$1
+               verbose cd "$dir"
+               # texture: convert to jpeg and dds
+               # music: reduce bitrate
+               verbose export do_jpeg=false
+               verbose export do_jpeg_if_not_dds=true
+               verbose export jpeg_qual_rgb=80
+               verbose export jpeg_qual_a=95
+               verbose export do_dds=true
+               verbose export dds_flags=
+               verbose export do_ogg=true
+               verbose export ogg_qual=1
+               verbose export del_src=true
+               find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
                ;;
        release-buildpk3)
                src=$1
@@ -1018,49 +1089,124 @@ case "$cmd" in
                                dst="$PWD/$dst"
                                ;;
                esac
-               rm -rf Xonotic/temp
-               mkdir -p Xonotic/temp
+               verbose rm -rf Xonotic/temp
+               verbose mkdir -p Xonotic/temp
                {
-                       cd "$src"
-                       git archive --format=tar HEAD
+                       verbose cd "$src"
+                       verbose git archive --format=tar HEAD
                } | {
-                       cd Xonotic/temp
-                       tar xvf -
+                       verbose cd Xonotic/temp
+                       verbose tar xvf -
                }
+               verbose cd Xonotic/temp
                if [ x"$src" = x"data/xonotic-data.pk3dir" ]; then
-                       cp "$src"/progs.dat Xonotic/temp/
-                       cp "$src"/csprogs.dat Xonotic/temp/
-                       cp "$src"/menu.dat Xonotic/temp/
+                       verbose cp ../source/progs.dat .
+                       verbose cp ../source/csprogs.dat .
+                       verbose cp ../source/menu.dat .
+                       verbose rm -rf qcsrc
+                       gv=`grep "^gameversion " "defaultXonotic.cfg" | awk '{ print $2 }'`
+                       major=$(($gv / 10000))
+                       minor=$(($gv / 100 - $major * 100))
+                       patch=$(($gv - $major * 10000 - $minor * 100))
+                       verbose sed -i "
+                               s/^set g_xonoticversion [^ ]* /set g_xonoticversion $major.$minor.$patch /;
+                               s/^gameversion_min [0-9]*/gameversion_min $(( ($gv / 100) * 100 - 100 ))/;
+                               s/^gameversion_max [0-9]*/gameversion_max $(( ($gv / 100) * 100 + 199 ))/;
+                       " defaultXonotic.cfg
                fi
-               "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
-               cd Xonotic/temp
-               zip -9r "../../$dst" . ########### 7za a -tzip -mx=9 "../../$dst" .
-               cd ../..
-               rm -rf Xonotic/temp
+               if [ x"$src" = x"data/xonotic-maps.pk3dir" ]; then
+                       for X in ../../data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
+                               if [ -f "$X" ]; then
+                                       verbose unzip "$X"
+                               fi
+                       done
+               fi
+               verbose "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
+               verbose zip -9yr "../../$dst" .
+               verbose cd ../..
+               verbose rm -rf Xonotic/temp
                ;;
        release-buildpk3s)
+               stamp=`cat Xonotic/stamp.txt`
                src=$1
                shift
+               dst=${src%.pk3dir}
+               case "$dst" in
+                       data/xonotic-*)
+                               dst="data/xonotic-$stamp-${dst#data/xonotic-}"
+                               ;;
+                       *)
+                               dst="$dst-$stamp"
+                               ;;
+               esac
                while [ "$#" -gt 1 ]; do
-                       "$SELF" release-buildpk3 "$src" "Xonotic/${src%.pk3dir}$2.pk3" "$1"
+                       verbose "$SELF" release-buildpk3 "$src" "Xonotic/$dst$2.pk3" "$1"
                        shift
                        shift
                done
                ;;
        release-pack)
-               "$SELF" release-buildpk3s data/font-dejavu.pk3dir                  raw ''
-               "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low'
-               "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low'
-               "$SELF" release-buildpk3s data/xonotic-music.pk3dir      normal '' raw '-raw' low '-low'
-               "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
+               verbose "$SELF" release-buildpk3s data/font-nimbussansl.pk3dir             raw ''
+               verbose "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
+               verbose "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
+               verbose "$SELF" release-buildpk3s data/xonotic-music.pk3dir                raw ''     low '-low'
+               verbose "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
+               ;;
+       release-pack-needsx11)
+               case "$DISPLAY" in
+                       '')
+                               verbose startx "$SELF" release-pack -- /usr/bin/Xvfb :7
+                               ;;
+                       *)
+                               verbose "$SELF" release-pack
+                               ;;
+               esac
+               ;;
+       release-zip)
+               stamp=`cat Xonotic/stamp.txt`
+               verbose zip -9yr Xonotic-$stamp-common.zip \
+                       Xonotic/*.dll \
+                       Xonotic/source/*/ \
+                       Xonotic/Docs \
+                       Xonotic/misc \
+                       Xonotic/fteqcc \
+                       Xonotic/server \
+                       Xonotic/*.app \
+                       Xonotic/xonotic-* \
+                       Xonotic/xonotic.exe \
+                       Xonotic/data/font-nimbussansl-$stamp.pk3
+               verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp.zip
+               verbose zip -0yr Xonotic-$stamp.zip \
+                       Xonotic/data/xonotic-$stamp-data.pk3 \
+                       Xonotic/data/xonotic-$stamp-maps.pk3 \
+                       Xonotic/data/xonotic-$stamp-music.pk3 \
+                       Xonotic/data/xonotic-$stamp-nexcompat.pk3
+               verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-low.zip
+               verbose zip -0yr Xonotic-$stamp-low.zip \
+                       Xonotic/data/xonotic-$stamp-data-low.pk3 \
+                       Xonotic/data/xonotic-$stamp-maps-low.pk3 \
+                       Xonotic/data/xonotic-$stamp-music-low.pk3 \
+                       Xonotic/data/xonotic-$stamp-nexcompat.pk3
+               verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-lowdds.zip
+               verbose zip -0yr Xonotic-$stamp-lowdds.zip \
+                       Xonotic/data/xonotic-$stamp-data-lowdds.pk3 \
+                       Xonotic/data/xonotic-$stamp-maps-lowdds.pk3 \
+                       Xonotic/data/xonotic-$stamp-music-low.pk3 \
+                       Xonotic/data/xonotic-$stamp-nexcompat.pk3
+               verbose mv Xonotic-$stamp-common.zip Xonotic-$stamp-high.zip
+               verbose zip -0yr Xonotic-$stamp-high.zip \
+                       Xonotic/data/xonotic-$stamp-data-raw.pk3 \
+                       Xonotic/data/xonotic-$stamp-maps-raw.pk3 \
+                       Xonotic/data/xonotic-$stamp-music.pk3 \
+                       Xonotic/data/xonotic-$stamp-nexcompat.pk3
                ;;
        release)
-               "$SELF" release-prepare
-               "$SELF" release-engine
-               "$SELF" release-maps
-               "$SELF" release-finish
-               "$SELF" release-qc
-               "$SELF" release-pack
+               verbose "$SELF" release-prepare
+               verbose "$SELF" release-maps
+               verbose "$SELF" release-engine
+               verbose "$SELF" release-qc
+               verbose "$SELF" release-pack-needsx11
+               verbose "$SELF" release-zip
                ;;
 
        *)
index 07cc4f32d9db9bad1211032cd13d7fdee582b763..4129b9fc3259307633ca2d2ca48d65ece3af267b 100644 (file)
Binary files a/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Resources/Xonotic.icns and b/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Resources/Xonotic.icns differ
index 07cc4f32d9db9bad1211032cd13d7fdee582b763..4129b9fc3259307633ca2d2ca48d65ece3af267b 100644 (file)
Binary files a/misc/buildfiles/osx/Xonotic.app/Contents/Resources/Xonotic.icns and b/misc/buildfiles/osx/Xonotic.app/Contents/Resources/Xonotic.icns differ
diff --git a/misc/logos/icons_icns/Xonotic.icns b/misc/logos/icons_icns/Xonotic.icns
new file mode 100644 (file)
index 0000000..4129b9f
Binary files /dev/null and b/misc/logos/icons_icns/Xonotic.icns differ
diff --git a/misc/logos/icons_icns/xonotic.icns b/misc/logos/icons_icns/xonotic.icns
deleted file mode 100644 (file)
index 95e0209..0000000
Binary files a/misc/logos/icons_icns/xonotic.icns and /dev/null differ
diff --git a/misc/logos/icons_xpm/xonotic_32.xpm b/misc/logos/icons_xpm/xonotic_32.xpm
new file mode 100644 (file)
index 0000000..0903e10
--- /dev/null
@@ -0,0 +1,127 @@
+/* XPM */
+static char * xonotic_32_xpm[] = {
+"32 32 92 1",
+"      c None",
+".     c #01070B",
+"+     c #150400",
+"@     c #000A12",
+"#     c #0E0805",
+"$     c #1B0500",
+"%     c #000D19",
+"&     c #250700",
+"*     c #220800",
+"=     c #00101F",
+"-     c #2C0900",
+";     c #0C1118",
+">     c #14100D",
+",     c #101114",
+"'     c #021528",
+")     c #320B00",
+"!     c #1D120D",
+"~     c #390B03",
+"{     c #400A01",
+"]     c #3B0D00",
+"^     c #0A172F",
+"/     c #440D00",
+"(     c #231713",
+"_     c #091D34",
+":     c #051F3F",
+"<     c #2B190D",
+"[     c #30180D",
+"}     c #38160B",
+"|     c #141E29",
+"1     c #201D22",
+"2     c #0A2544",
+"3     c #332018",
+"4     c #551804",
+"5     c #461D0A",
+"6     c #0A284F",
+"7     c #052956",
+"8     c #3A2113",
+"9     c #501E05",
+"0     c #142A40",
+"a     c #452115",
+"b     c #0E2F4F",
+"c     c #442717",
+"d     c #10325A",
+"e     c #602309",
+"f     c #093467",
+"g     c #00376F",
+"h     c #003A66",
+"i     c #5A2912",
+"j     c #482D29",
+"k     c #113B75",
+"l     c #163C6A",
+"m     c #443436",
+"n     c #643013",
+"o     c #5B321C",
+"p     c #712D10",
+"q     c #6C2F0F",
+"r     c #2C3F53",
+"s     c #1B4573",
+"t     c #174983",
+"u     c #244A73",
+"v     c #7A3C1A",
+"w     c #5E4140",
+"x     c #6A402B",
+"y     c #863F1B",
+"z     c #235394",
+"A     c #265482",
+"B     c #285489",
+"C     c #8E461E",
+"D     c #994619",
+"E     c #914826",
+"F     c #53556B",
+"G     c #8C4C28",
+"H     c #2F5D99",
+"I     c #2462A6",
+"J     c #475E79",
+"K     c #316295",
+"L     c #3F6892",
+"M     c #A65524",
+"N     c #2A6DB7",
+"O     c #4D6B91",
+"P     c #3373B4",
+"Q     c #3C72AD",
+"R     c #4673AA",
+"S     c #337AC8",
+"T     c #397AC2",
+"U     c #417EC0",
+"V     c #4A81BD",
+"W     c #6386AF",
+"X     c #5C89BB",
+"Y     c #7396C1",
+"Z     c #87AACF",
+"`     c #91BBE2",
+"                                ",
+"           ==========           ",
+"        :0'==%%%%%%=='0:        ",
+"       dOb'%%%%%%%%%%'bOd       ",
+"      LW:^=%%%@@@@%%%=^:WL      ",
+"     LY6'%%@@@@@@@@@@@%'6YL     ",
+"    AZ6^%@@@@@@@@.,,,,,%'6ZA    ",
+"   s`s^=@@@@@...>(8Gcxx31_s`s   ",
+"  fYY:=%@@@...>(oGy4ye4Ex12YYf  ",
+"  BZB^%@@@...!<GpyMp/pCGG(_BZB  ",
+" gXW7=%@@..#!oC4/py4pvc8(;=7WXg ",
+" kLV:%@@..><vp//////MCCG8,%:VLk ",
+" IAU:%@..>[C4{{{{{{{{4yv3,%:UAI ",
+" NAN:%@.!aD/]]]]]]]]pv[!>@%:NAN ",
+" SsN:@,(oy4D]~~~~~~pn*#..@%:NsS ",
+"fTlS:;(nDyMe))))))]v*#...@%:SlTf",
+"gTlT21vDnvpe))))))p[##...@%:TlTg",
+" ThPd183nDvq------q<#....@=7PhT ",
+" SdBz_;>[8n]------n[#....@^zBdS ",
+" IsbT6=.><n&&&&&&&9a!#..@=6TbsI ",
+" gKbsI_;!59********n8!>,;_IsbKg ",
+" gT22Pd1ci*********&ii831dP22Tg ",
+"  zu2bTw5$$$$$$$$$$$$*5ixUb2uz  ",
+"  gT__0Vw)$$$$$$$$$$$$}wV0__Tg  ",
+"   tK___QFa*++++++++*aFQ___Kt   ",
+"    Iu'''uQOj}++++}jOQu'''uI    ",
+"    kNu====0KRa##aRK0====uNk    ",
+"     kIL%%%%%0O**O0%%%%%LIk     ",
+"       tVr@@@@OmmO@@@@rVt       ",
+"        gHXJ|.;YY;.|JXHg        ",
+"          ggRXWYYWXRgg          ",
+"               ff               "}
diff --git a/misc/netradiant-NexuizPack/games/nexuiz.game b/misc/netradiant-NexuizPack/games/nexuiz.game
deleted file mode 100644 (file)
index 5eefbbb..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
-<!-- generated by Radiant setup, modify at your own risks -->
-<game
-  type="nexuiz"
-  index="1"
-  name="Nexuiz"
-  enginepath_win32="C:/Program Files/Nexuiz/"
-  enginepath_linux="/usr/share/games/nexuiz/"
-  enginepath_macos="/Applications/Nexuiz"
-  engine_win32="nexuiz-sdl.exe"
-  engine_linux="nexuiz-sdl"
-  engine_macos="Nexuiz.app"
-  prefix=".nexuiz"
-  basegame="data"
-  basegamename="Nexuiz"
-  unknowngamename="Custom Nexuiz modification"
-  shaderpath="scripts"
-  archivetypes="pk3"
-  texturetypes="tga jpg png"
-  modeltypes="md3 mdl md2 ase obj"
-  maptypes="mapq3"
-  shaders="quake3"
-  entityclass="quake3"
-  entityclasstype="def"
-  entities="quake3"
-  brushtypes="quake3"
-  patchtypes="quake3"
-  default_scale="0.25"
-/>
diff --git a/misc/netradiant-NexuizPack/gpl.txt b/misc/netradiant-NexuizPack/gpl.txt
deleted file mode 100755 (executable)
index 5b6e7c6..0000000
+++ /dev/null
@@ -1,340 +0,0 @@
-                   GNU GENERAL PUBLIC LICENSE
-                      Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-                           Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-\f
-                   GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-  2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-\f
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections
-    1 and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable.  However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-\f
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-  5. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-\f
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded.  In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-                           NO WARRANTY
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-                    END OF TERMS AND CONDITIONS
-\f
-           How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) year name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
-  `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
-  <signature of Ty Coon>, 1 April 1989
-  Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs.  If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Library General
-Public License instead of this License.
diff --git a/misc/netradiant-NexuizPack/nexuiz.game/data/default_shaderlist.txt b/misc/netradiant-NexuizPack/nexuiz.game/data/default_shaderlist.txt
deleted file mode 100644 (file)
index 4e5dea8..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-//**********************************************************************//
-//     shaderlist.txt modified for Q3Radiant                           //
-//     by Eutectic - 13 May 2000                                       //
-//                                                                      //
-//      Rev history:                                                    //
-//      08/11/2000
-//      TTimo - changed liquid to liquids and sky to skies for better   //
-//      consistency with the directories and actual shader names        //
-//                                                                     //
-//     Added the names of the new shader files created as a result     //
-//     of the cleanup of the old shader files so Q3Radiant will read   //
-//     and display all the shaders in the texture window.              //
-//                                                                     //
-//     SHADER FILE NAMES ADDED:                                        //
-//     base_door                                                       //
-//     gothic_button                                                   //
-//     gothic_door                                                     //
-//**********************************************************************//
-
-// this file lists all the separate shader files
-
-common
-dsi
-e7
-el3dm1
-evil3
-evil4_techtrims
-evil5
-evil6
-evil6_floors
-evil6_lights
-evil6_support
-evil6_trims
-evil6_walls
-evil8_base
-gfx
-harlequin_sky
-hell
-kaznexctf2
-liquids
-models
-museum
-official_cmp1
-organics
-reaper
-sav-graysky1
-sav-liquids
-savdm6ish
-sfx
-skies
-skin
-stralenex1
-terrademoQ3
-test
-tznex01
-tznex03
\ No newline at end of file
diff --git a/misc/netradiant-NexuizPack/nexuiz.game/data/entities.def b/misc/netradiant-NexuizPack/nexuiz.game/data/entities.def
deleted file mode 100644 (file)
index 436eb49..0000000
+++ /dev/null
@@ -1,1770 +0,0 @@
-/*QUAKED _skybox (0.77 0.88 1.0) (-4 -4 -4) (4 4 4) 
-Compiler-only entity that specifies a the origin of a sky box (a wholly contained, separate area of the map), similar to some games' portal skies. When compiled with Q3Map2, the sky box surfaces will be visible from any place where sky is normally visible. It will cast shadows on the normal parts of the map, and can be used with cloud layers and other effects. As it is compiler-only, it can't "scale up" entities in its box.
-To use this, carve a small box in some larger structure on your map, place this entity inside that box hole, and make a small version on what should be seen in the sky there.
--------- KEYS --------
-angle: rotation angle of the sky surfaces.
-angles: Individual control of PITCH, YAW, and ROLL (default 0 0 0).
-_scale: scaling factor (default 64), good values are between 50 and 300, depending on the map.
-*/
-
-/*QUAKED dom_controlpoint (.3 .3 1) (-16 -16 -16) (16 16 16) 
-Domination  control point
-In order to get Domination working well in your map, you need to place dom_team and dom_controlpoint entities.  You *must* have at least 3 dom_team entities - 2 minimum teams and one blank one (empty netname and no team).  You can have up to 4 teams (5 dom_team entities).
--------- KEYS --------
-message: message to be displayed to all players when this point is captured, preceded by the team's name.  This defaults to " has captured a control point".  You can specify different names for each point, for example " has captured the Lava Room".
-wait: How often this point gives its controlling team frags.
-frags: How many frags this point gives each wait cycle.
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-zbqry="zbqryf/qbzvangvba/qbz_hapynvzrq.zq3"
-
-*/
-
-/*QUAKED dom_team (.3 .3 1) (-16 -16 -16) (16 16 16) 
-Domination team.
-In order to get Domination working well in your map, you need to place dom_team and dom_controlpoint entities.  You *must* have at least 3 dom_team entities - 2 minimum teams and one blank one (empty netname and no team).  You can have up to 4 teams (5 dom_team entities).
--------- KEYS --------
-netname: name of team (Red Team).  Set to "" or don't define for the required blank team.
-cnt: color of the team.  See the "Helpful Extras" section for info.
-model: When this team captures control points, the points turn to this model.  If this is the neutral team, points start out as this model.
-noise: Sound to be played on the control point when it's captured.  Only players nearby will hear it.
-noise1: Sound to be played to all players when the control point is captured.  Also good for an announcer voice ("Red Team has captured a control point")
-*/
-
-/*QUAKED func_assault_destructible (.5 0 .5) ? - - - - - - - - NOSPLASH
-This is a brush model which can be damaged. Once triggered it's active and will happily receive damage players inflict upon it. Once all health is consumed it'll disappear and trigger the targeted entity/entities. As damage is received the brush model will be tinted in an increasingly visible flavor of red to give visible feedback.
--------- KEYS --------
-health: The damage this trigger can take
-target: The entity/entities to be triggered once this entity gets invisible
-targetname: The name other entities can use to target this entity
-mdl: particle effect name to show when destroyed
-count: particle effect multiplier
-mdl_dead: optional replacement model to show when destroyed
-debris: names of debris models to show when destroyed, separated by spaces
-noise: sound to play when destroyed
-dmg: damage to deal to the environment when destroyed
-dmg_edge: edge damage to deal to the environment when destroyed
-dmg_radius: damage radius
-dmg_force: damage force
-message: death message when a player gets hit by the explosion
-message2: death message when someone gets pushed into this (default: "was pushed into an explosion by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-debrismovetype: way in which the debris moves: one of 1 = ANGLENOCLIP, 2 = ANGLECLIP, 3 = WALK, 4 = STEP, 5 = FLY, 6 = TOSS, 7 = PUSH, 8 = NOCLIP, 9 = FLYMISSILE, 10 = BOUNCE, 11 = BOUNCEMISSILE
-debrissolid: solidity of the debris: one of 0 = NOT, 1 = TRIGGER, 2 = BBOX, 3 = SLIDEBOX, 4 = BSP, 5 = CORPSE
-debrisvelocity: initial velocity vector of the debris (static part)
-debrisvelocityjitter: initial velocity vector of the debris (random part)
-debrisavelocityjitter: initial angular velocity vector of the debris (random part)
-debristime: time till the debris fades (average)
-debristimejitter: time till the debris fades (random part)
-debrisfadetime: how long debris takes to fade
-debrisdamageforcescale: how much debris is affected by damage force (e.g. explosions)
-debrisskin: skin number of debris
--------- SPAWNFLAGS --------
-NOSPLASH: if set, splash damage cannot activate the door, only direct damage can (requires health to be set)
-*/
-
-/*QUAKED func_assault_wall (.5 0 .5) ?
-Brush model that will disappear once the targeted target_objective is fulfilled. This can be used to restrict access to parts of the map until a certain objective has been conquered.
--------- KEYS --------
-target: targetname of a target_objective
-*/
-
-/*QUAKED func_bobbing (0 .5 .8) ? X_AXIS Y_AXIS
-Solid entity that oscillates back and forth in a linear motion. By default, it will have an amount of displacement in either direction equal to the dimension of the brush in the axis in which it's bobbing. Entity bobs on the Z axis (up-down) by default. It can also emit sound if the "noise" key is set. Will crush the player when blocked.
--------- KEYS --------
-speed: amount of time in seconds for one complete oscillation cycle (default 4).
-height: sets the amount of travel of the oscillation movement (default 32). 
-phase: sets the start offset of the oscillation cycle. Values must be 0 < phase < 1. Any integer phase value is the same as no offset (default 0).
-noise: path/name of .wav or .ogg file to play. Use looping sounds only (e.g. sound/world/drone6.wav - See Notes).
-dmg: damage a player who gets crushed by it receives
-dmgtime: interval to apply dmg to a player who is s in the way
-message: death message when a player gets crushed
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
--------- SPAWNFLAGS --------
-X_AXIS: entity will bob along the X axis.
-Y_AXIS: entity will bob along the Y axis.
-*/
-
-/*QUAKED func_button (0 .5 .8) ? - - - - - - - - NOSPLASH
-When a button is touched by a player, it moves in the direction set by the "angle" key, triggers all its targets, stays pressed by an amount of time set by the "wait" key, then returns to it's original position where it can be operated again.
--------- KEYS --------
-angle: determines the direction in which the button will move (up = -1, down = -2).
-target: all entities with a matching targetname will be triggered.
-target2: all entities with a matching targetname will be triggered.
-target3: all entities with a matching targetname will be triggered.
-target4: all entities with a matching targetname will be triggered.
-speed: speed of button's displacement (default 40).
-wait: number of seconds button stays pressed (default 1, -1 = return immediately).
-lip: lip remaining at end of move (default 4 units).
-health: (default 0) if set to any non-zero value, the button must take damage (any amount) to activate.
--------- SPAWNFLAGS --------
-NOSPLASH: if set, splash damage cannot activate the door, only direct damage can (requires health to be set)
-*/
-
-/*QUAKED func_door (0 .5 .8) ? START_OPEN - DOOR_DONT_LINK - - TOGGLE - - NOSPLASH
-Normal sliding door entity. By default, the door will activate when player walks close to it or when damage is inflicted to it.
-If DOOR_DONT_LINK is not set, the door will be linked with all doors it touches. Note however that for linked doors to work properly, it is necessary that ALL linked doors have SOME volume of common area (that is, there must be a point that is part of ALL doors).
--------- KEYS --------
-message: is printed when the door is touched if it is a trigger door and it hasn't been fired yet, or death message if dmg is set
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-angle: determines the opening direction
-targetname: if set, no touch field will be spawned and a remote button or trigger field activates the door.
-health: if set, door must be shot open
-speed: movement speed (100 default)
-wait: wait before returning (3 default, -1 = never return)
-lip: lip remaining at end of move (8 default)
-dmg: damage to inflict when blocked (when triggered and someone is in the way)
-sounds: when 1, use default door sounds
-noise1: sound when the door opens
-noise2: sound when the door closes
--------- SPAWNFLAGS --------
-START_OPEN: causes the door to move to its destination when spawned, and operate in reverse.  It is used to temporarily or permanently close off an area when triggered (not useful for touch or damage triggered doors).
-DOOR_DONT_LINK: the door won't link with another door it touches
-TOGGLE: causes the door to wait in both the start and end states for a trigger event.
-NOSPLASH: if set, splash damage cannot activate the door, only direct damage can (requires health to be set)
-*/
-
-/*QUAKED func_door_rotating (0 .5 .8) ? START_OPEN BIDIR DOOR_DONT_LINK BIDIR_IN_DOWN - TOGGLE X_AXIS Y_AXIS NOSPLASH
-Normal rotating door entity that opens by rotating around an axis (default: Z). Use an origin brush to specify the rotation axis.
-By default, the door will activate when player walks close to it or when damage is inflicted to it.
-If DOOR_DONT_LINK is not set, the door will be linked with all doors it touches.
-BIDIR makes the door work bidirectional, so that the opening direction is always away from the requestor.
-The usage of bidirectional doors requires two manually instantiated triggers (trigger_multiple), the one to open it in the other direction
-must have set trigger_reverse to 1.
-BIDIR_IN_DOWN will the door prevent from reopening while closing if it is triggered from the other side.
--------- KEYS --------
-message: is printed when the door is touched if it is a trigger door and it hasn't been fired yet, or death message if dmg is set
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-angle: determines the destination angle for opening. negative values reverse the direction (90 default)
-targetname: if set, no touch field will be spawned and a remote button or trigger field activates the door.
-health: if set, door must be shot open
-speed: speed to rotate (in degrees per second)
-wait: wait before returning (3 default, -1 = never return)
-dmg: damage to inflict when blocked (when triggered and someone is in the way)
-sounds: when 1, use default door sounds
-noise1: sound when the door opens
-noise2: sound when the door closes
--------- SPAWNFLAGS --------
-START_OPEN: causes the door to move to its destination when spawned, and operate in reverse.  It is used to temporarily or permanently close off an area when triggered (not useful for touch or damage triggered doors).
-DOOR_DONT_LINK: the door won't link with another door it touches
-TOGGLE: causes the door to wait in both the start and end states for a trigger event.
-NOSPLASH: if set, splash damage cannot activate the door, only direct damage can (requires health to be set)
-*/
-
-/*QUAKED func_door_secret (0 .5 .8) ? OPEN_ONCE 1ST_LEFT 1ST_DOWN NO_SHOOT ALWAYS_SHOOT
-Basic secret door. Slides back, then to the side. Angle determines direction. Opens when targeted or when shot; does not create its own trigger field like func_door does.
--------- KEYS --------
-wait: # of seconds before coming back
-key1: first entity key with one-line description
-key2: second entity key with one-line description
-t_width: override WIDTH to move back (or height if going down)
-t_length: override LENGTH to move sideways
-dmg: damage to inflict when blocked (2 default)
-message: text to display when activating the door, or death message if dmg is set
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-noise1: sound when opening backwards or closing
-noise2: sound when opening sideways
-noise3: sound when stopping
--------- SPAWNFLAGS --------
-OPEN_ONCE: only work once, then stay open
-1ST_LEFT: 1st move is left of arrow
-1ST_DOWN: 1st move is down from arrow
-NO_SHOOT: never respond to shots
-ALWAYS_SHOOT: even if targetname is set, respond to shots
-*/
-
-/*QUAKED func_group (0 .5 .8) ? 
-This is not an entity as such. It is strictly an editor utility to group world brushes and patches together for convenience (selecting, moving, copying, etc). You cannot group entities with this.
--------- Q3MAP2 KEYS --------
-_lightmapscale: light map resolution factor
-_castshadows: Allows per-entity control over shadow casting. Defaults to 0 on entities, 1 on world. 0 = no shadow casting. 1 = cast shadows on world. > 1 = cast shadows on entities with _rs (or _receiveshadows) with the corresponding value, AND world. Negative values imply same, but DO NOT cast shadows on world.
-_receiveshadows: Allows per-entity control over shadow reception. Defaults to 1 on everything (world shadows). 0 = receives NO shadows. > 1 = receive shadows only from corresponding keyed entities (see above) and world. < 1 = receive shadows ONLY from corresponding keyed entities.
-_celshader: Sets the cel shader used for this geometry. Note: omit the "textures/" prefix.
--------- KEYS --------
-_indexmap: Path/name for the TGA file used to guide the mapping of textures on the terrain surface.
-_layers: number of unique root shaders that will be use on the terrain.
-_shader: Path to the metashader used to assign textures to the terrain entity. Note: Omit the "textures/" prefix.
-_offsets: space separated list of height offsets for the index map
-*/
-
-/*QUAKED func_ladder (0 .5 .8) ? 
-a ladder, need i say no more
-grab a trigger brush and put it in front of the part that you want the player to climb
-*/
-
-/*QUAKED func_plat (0 .5 .8) ? - - CRUSH
-Rising platform the player can ride to reach higher places. Plats must always be drawn in the raised position, so they will operate and be lighted correctly but they spawn in the lowered position. The plat will stay in the raised position until the player steps off.
--------- KEYS --------
-speed: determines how fast the plat moves (default 150).
-lip: lip remaining at end of move (default 16). Has no effect if "height" is set.
-height: if set, this will determine the total amount of vertical travel of the plat.
-dmg: damage to inflict on player when he blocks operation of plat. Plat will reverse direction when blocked.
-targetname: if set, the trigger that points to this will lower the plat each time it fires. The plat lowers and lifts someone up later.
-sounds: 2 for alternate sound set, -1 for silence, or use the fields below
-sound1: platform starts moving sound
-sound2: platform stop sound
-message: kill message, when someone gets killed by this plat
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
--------- SPAWNFLAGS --------
-CRUSH: crush players hit by the platform instantly
--------- NOTES --------
-By default, the total amount of vertical travel of a platform is implicitly determined by the overall vertical size of the brushes of which it's made minus the lip value. But if the "height" key is used, then the total amount of vertical travel of the plat will be exactly that value regardless of the shape and size of the plat and regardless of the value of the "lip" key. Using the "height" key is the best method for any kind of platforms and the only possible one for thin plats which need to travel vertical distances many times their own thickness. Setting the origin key is simply an alternate method to using an origin brush. When using the model2 key, the origin point of the model will correspond to the origin point defined by either the origin brush or the origin coordinate value.
-*/
-
-/*QUAKED func_rain (0 .5 .8) ? 
-This is an invisible area like a trigger, which rain falls inside of.
--------- KEYS --------
-velocity: falling direction (should be something like '0 0 -700', use the X and Y velocity for wind)
-cnt: sets color of rain in the Quake palette (default 12 - white)
-count: adjusts density, this many particles fall every second for a 1024x1024 area, default is 2000
-*/
-
-/*QUAKED func_rotating (0 .5 .8) ? - - X_AXIS Y_AXIS
-Brush entity that spins in place on one axis (default Z). Use an origin brush to specify the rotation axis.
-To rotate around another axis, make a func_wall with an explicit avelocity given.
--------- KEYS --------
-speed: speed to rotate (in degrees per second)
-noise: path/name of looping .wav file to play.
-dmg: Do this much dmg every .dmgtime interval when blocked
-dmgtime: See above. (0.25s default)
-message: kill message when crushed by this
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
--------- SPAWNFLAGS --------
-X_AXIS: rotate around the X axis
-Y_AXIS: rotate around the Y axis
-*/
-
-/*QUAKED func_snow (0 .5 .8) ? 
-This is an invisible area like a trigger, which snow falls inside of.
--------- KEYS --------
-velocity: falling direction (should be something like '0 0 -300', use the X and Y velocity for wind)
-cnt: sets color of snow in the Quake palette (default 12 - white)
-count: adjusts density, this many particles fall every second for a 1024x1024 area, default is 2000
-*/
-
-/*QUAKED func_stardust (.5 .5 .5) (-8 -8 -8) (8 8 8) 
-Point entity with EF_STARDUST applied. This will spawn a particle cloud with mostly golden particles. Used as eye-candy.
-*/
-
-/*QUAKED func_train (0 .5 .8) ? 
-Trains are moving solids that follow a cycle of path_corner entities. Origin brushes are NOT supported; they use the "mins" corner as reference (that is, lowest x, y, and z coordinates).
-At each node, the train's mins corner hits exactly the path_corner.
-Trains always start on in the game.
-Trains do not damage the played when blocked.
-Trains cannot emit sound.
-Trains are not trigger-able or toggle-able.
-Trains cannot be block-stopped just by getting in their way, the player must be wedged between the train and another obstacle to block it.
--------- KEYS --------
-speed: default/initial speed of train (default 100 or overridden by speed value of targeted path_corner)
-target: targetname of first path_corner to move to at the default speed; ideally, this path_corner shall be exactly where the train starts
-noise: path/name of .wav or .ogg file to play while moving. Use looping sounds only (e.g. sound/world/drone6.wav - See Notes).
-dmg: damage a player who gets crushed by it receives
-dmgtime: interval to apply dmg to a player who is s in the way
-message: death message when a player gets crushed
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-*/
-
-/*QUAKED info_location (1 1 0) (-8 -8 -8) (8 8 8) 
-Location for use by the %l escape in "say" messages.
-The closest "visible" info_location entity is chosen to find the right location name for a point.
--------- KEYS --------
-netname: name of location, possibly with color codes
-*/
-
-/*QUAKED info_notnull (0 .5 0) (-8 -8 -8) (8 8 8) 
-Entity that does nothing, but may be targeted (e.g. to use its position)
--------- KEYS --------
-targetname: must match the target key of entity that uses this for pointing.
-*/
-
-/*QUAKED info_null (0 .5 0) (-8 -8 -8) (8 8 8) 
-Aiming target for q3map2-internal entities like _decal or light. Removes itself when loaded, so it can NOT be used for in-game stuff!
--------- KEYS --------
-targetname: the entity that requires an aiming direction points to this.
-*/
-
-/*QUAKED info_player_attacker (1 0.5 0) (-16 -16 -24) (16 16 45) 
-Attacking team's player spawning location in Assault. Should touch the floor, but not the walls, and should point where the player should look when he spawns there.
--------- KEYS --------
-target: this should point to a target_objective to decide when this spawning point is active.
-target2: trigger all entities with this targetname when someone spawns
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED info_player_deathmatch (0 1 0) (-16 -16 -24) (16 16 45) 
-Normal player spawning location in game types without team spawns. Should touch the floor, but not the walls, and should point where the player should look when he spawns there.
--------- KEYS --------
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-target: trigger all entities with this targetname when someone spawns
-targetname: when targeted by a func_button, pressing the button will assign the spawn point to the team of the activator as an additional spawn point, or reassign it if it was already assigned. Also used to assign spawn points to Onslaught control points.
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED info_player_defender (.5 .5 .5) (-16 -16 -24) (16 16 45) 
-Defending team's player spawning location in Assault. Should touch the floor, but not the walls, and should point where the player should look when he spawns there.
--------- KEYS --------
-target: this should point to a target_objective to decide when this spawning point is active.
-target2: trigger all entities with this targetname when someone spawns
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED info_player_team1 (1 0 0) (-16 -16 -24) (16 16 45) 
-Red team's player spawning location in e.g. CTF and Onslaught. Should touch the floor, but not the walls, and should point where the player should look when he spawns there.
--------- KEYS --------
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-target: trigger all entities with this targetname when someone spawns
-targetname: when targeted by a func_button, pressing the button will reassign the spawn point to the team of the activator. If a team has no more spawn point left, it immediately loses.
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED info_player_team2 (0 0 1) (-16 -16 -24) (16 16 45) 
-Blue team's player spawning location in e.g. CTF and Onslaught. Should touch the floor, but not the walls, and should point where the player should look when he spawns there.
--------- KEYS --------
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-target: trigger all entities with this targetname when someone spawns
-targetname: when targeted by a func_button, pressing the button will reassign the spawn point to the team of the activator. If a team has no more spawn point left, it immediately loses.
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED info_player_team3 (1 1 0) (-16 -16 -24) (16 16 45) 
-Yellow team's player spawning location, but there is no game mode to use this yet. Anyway, should touch the floor, but not the walls, and should point where the player should look when he spawns there.
--------- KEYS --------
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-target: trigger all entities with this targetname when someone spawns
-targetname: when targeted by a func_button, pressing the button will reassign the spawn point to the team of the activator. If a team has no more spawn point left, it immediately loses.
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED info_player_team4 (1 0 1) (-16 -16 -24) (16 16 45) 
-Pink team's player spawning location, but there is no game mode to use this yet. Anyway, should touch the floor, but not the walls, and should point where the player should look when he spawns there.
--------- KEYS --------
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-target: trigger all entities with this targetname when someone spawns
-targetname: when targeted by a func_button, pressing the button will reassign the spawn point to the team of the activator. If a team has no more spawn point left, it immediately loses.
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED item_armor_large (.4 .8 .4) (-30 -30 0) (30 30 32) FLOATING
-Large Armor (default 100 armor points)
--------- KEYS --------
-respawntime: time till it respawns (default: 30)
-armorvalue: amount of armor it gives (default: 100 (g_pickup_armorlarge))
-max_armorvalue: max of armor it increases to (default: 999 (g_pickup_armorlarge_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_a25.md3"
-*/
-
-/*QUAKED item_armor_big (.4 .8 .4) (-30 -30 0) (30 30 32) FLOATING
-Big Armor (default 50 armor points)
--------- KEYS --------
-respawntime: time till it respawns (default: 20)
-armorvalue: amount of armor it gives (default: 50 (g_pickup_armorlarge))
-max_armorvalue: max of armor it increases to (default: 999 (g_pickup_armorlarge_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_a50.md3"
-*/
-
-/*QUAKED item_armor_medium (.4 .8 .4) (-30 -30 0) (30 30 32) FLOATING
-Medium Armor (default 25 armor points)
--------- KEYS --------
-respawntime: time till it respawns (default: 20)
-armorvalue: amount of armor it gives (default: 25 (g_pickup_armormedium))
-max_armorvalue: max of armor it increases to (default: 999 (g_pickup_armormedium_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_armormedium.md3"
-*/
-
-/*QUAKED item_armor_small (.4 .8 .4) (-30 -30 0) (30 30 32) FLOATING
-Small Armor (default 5 armor points)
--------- KEYS --------
-respawntime: time till it respawns (default: 15)
-armorvalue: amount of armor it gives (default: 5 (g_pickup_armorsmall))
-max_armorvalue: max of armor it increases to (default: 999 (g_pickup_armorsmall_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_a1.md3"
-*/
-
-/*QUAKED item_bullets (.3 .3 1) (-30 -30 0) (30 30 32) FLOATING
-Machine Gun ammo
--------- KEYS --------
-ammo_nails: bullets gained by this item (if unset, g_pickup_nails is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/a_bullets.md3"
-*/
-
-/*QUAKED item_cells (.3 .3 1) (-30 -30 0) (30 30 32) FLOATING
-Nex, Electro and Crylink ammo
--------- KEYS --------
-ammo_cells: cells gained by this item (if unset, g_pickup_cells is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/a_cells.md3"
-*/
-
-/*QUAKED item_flag_team1 (1 0 0) (-32 -32 0) (32 32 74) 
-CTF flag for team one (Red). Use more than one if you really insist.
--------- KEYS --------
-model: model to use
-scale: scaling factor (DO set this when using your own model!)
-noise: sound played when flag is picked up
-noise1: sound played when flag is returned
-noise2: sound played when flag is captured
-noise3: sound played when flag is lost in the field and respawns itself
--------- ZBQRY SBE ENQVNAG BAYL - QB ABG FRG GUVF NF N XRL --------
-zbqry="zbqryf/pgs/enqvnag/synt_erq_enqvnag.zq3"
-*/
-
-/*QUAKED item_flag_team2 (0 0 1) (-32 -32 0) (32 32 74) 
-CTF flag for team two (Blue). Use more than one if you really insist.
--------- KEYS --------
-model: model to use
-scale: scaling factor (DO set this when using your own model!)
-noise: sound played when flag is picked up
-noise1: sound played when flag is returned
-noise2: sound played when flag is captured
-noise3: sound played when flag is lost in the field and respawns itself
--------- ZBQRY SBE ENQVNAG BAYL - QB ABG FRG GUVF NF N XRL --------
-zbqry="zbqryf/pgs/enqvnag/synt_oyhr_enqvnag.zq3"
-*/
-
-/*QUAKED item_health_large (.9 .3 .3) (-30 -30 0) (30 30 48) FLOATING
-Large Health (default 50 health points)
--------- KEYS --------
-respawntime: time till it respawns (default: 20)
-health: amount of health it gives (default: 50 (g_pickup_healthlarge))
-max_health: max of health it increases to (default: 999 (g_pickup_healthlarge_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_h50.md3"
-*/
-
-/*QUAKED item_health_medium (.9 .3 .3) (-30 -30 0) (30 30 48) FLOATING
-Medium Health (default 25 health points)
--------- KEYS --------
-respawntime: time till it respawns (default: 15)
-health: amount of health it gives (default: 25 (g_pickup_healthmedium))
-max_health: max of health it increases to (default: 999 (g_pickup_healthmedium_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_h25.md3"
-*/
-
-/*QUAKED item_health_mega (.9 .3 .3) (-30 -30 0) (30 30 48) FLOATING
-Mega Health (default 100 health points)
-In Minstagib, this randomly turns into either an invisibility, an extra lives or a speed power-up with a default respawn time of 120.
--------- KEYS --------
-respawntime: time till it respawns (default: 30)
-health: amount of health it gives (default: 100 (g_pickup_healthmega))
-max_health: max of health it increases to (default: 999 (g_pickup_healthmega_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_h100.md3"
-*/
-
-/*QUAKED item_health_small (.9 .3 .3) (-30 -30 0) (30 30 48) FLOATING
-Small Health (default 5 health points)
--------- KEYS --------
-respawntime: time till it respawns (default: 15)
-health: amount of health it gives (default: 5 (g_pickup_healthsmall))
-max_health: max of health it increases to (default: 5 (g_pickup_healthsmall_max))
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_h1.md3"
-*/
-
-/*QUAKED item_invincible (.3 .3 1) (-30 -30 0) (30 30 48) FLOATING
-Strong Shield
-In Minstagib, this randomly turns into either an invisibility, an extra lives or a speed power-up with a default respawn time of 120.
--------- KEYS --------
-respawntime: time till it respawns (default: 120)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_invincible.md3"
-*/
-
-/*QUAKED item_minst_cells (.3 .3 1) (-30 -30 0) (30 30 32) FLOATING
-Minstagib ammo.
-Always contains 5 (g_minstagib_ammo_drop) shots.
-It only appears when playing Minstagib and prevents auto-replacement of weapon_nex & weapon_rocketlauncher when used.
--------- KEYS --------
-respawntime: time till it respawns (default: 45)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/a_cells.md3"
-*/
-
-/*QUAKED item_rockets (.3 .3 1) (-30 -30 0) (30 30 32) FLOATING
-Rocket Launcher, Hagar and Mortar ammo
--------- KEYS --------
-ammo_rockets: rockets gained by this item (if unset, g_pickup_rockets is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/a_rockets.md3"
-*/
-
-/*QUAKED item_shells (.3 .3 1) (-30 -30 0) (30 30 32) FLOATING
-Shotgun ammo
--------- KEYS --------
-ammo_shells: shells gained by this item (if unset, g_pickup_shells is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/a_shells.md3"
-*/
-
-/*QUAKED item_strength (.3 .3 1) (-30 -30 0) (30 30 48) FLOATING
-Strength aka Quad damage
-In Minstagib, this randomly turns into either an invisibility, an extra lives or a speed power-up with a default respawn time of 120.
--------- KEYS --------
-respawntime: time till it respawns (default: 120)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_strength.md3"
-*/
-
-/*QUAKED light (.65 .65 1) (-8 -8 -8) (8 8 8) LINEAR NOANGLE - - NOGRIDLIGHT
-Non-displayed point light source. The -pointscale and -scale arguments to Q3Map2 affect the brightness of these lights. The -skyscale argument affects brightness of entity sun lights.
-Maximum intensity (in a radius 16 sphere around the light): regular lights have light/256, linear lights have light/8000-16*fade.
-Falloff radius to a negligible light amount: regular lights have light have 16*sqrt(light), linear lights have light/(fade*8000).
-By this you see that you HAVE to specify fade for a linear light... use values below 0.01 there.
--------- KEYS --------
-light: intensity factor (default: 300). A linear
-_color: weighted RGB value of light color (default white - 1.0 1.0 1.0).
-target: Lights pointed at a target will be spotlights.
-radius: radius of a spotlight at the target point (default: 64)
-_anglescale: scales angle attenuation
-fade: Fade factor of light attenuation of linear lights. Linear lights completely vanish at distance light/(fade*8000), so if you want the light to vanish at distance X, specify light/(8000*X) here.
-_filterradius: filter radius for this light, similar to -light -filter
-_sun: if 1, this light is an infinite sun light
-_samples: number of samples to use to get soft shadows from a light
-_deviance: position deviance of the samples of a regular light (distributes the light samples in a cube of side length 2*_deviance around the origin), or angle deviance of the sun light samples in radians
--------- SPAWNFLAGS --------
-LINEAR: Use a linear falloff. Default is inverse distance squared (more realistic).
-NOANGLE: Ignore angle attenuation.
-NOGRIDLIGHT: Do not affect the light grid (dynamic entity lighting).
-*/
-
-/*QUAKED lightJunior (.65 .65 1) (-8 -8 -8) (8 8 8) LINEAR NOANGLE
-Non-displayed point light source that JUST APPLIES TO THE LIGHT GRID. No idea what this is good for. The -pointscale and -scale arguments to Q3Map2 affect the brightness of these lights. The -skyscale argument affects brightness of entity sun lights.
-Maximum intensity (in a radius 16 sphere around the light): regular lights have light/256, linear lights have light/8000-16*fade.
-Falloff radius to a negligible light amount: regular lights have light have 16*sqrt(light), linear lights have light/(fade*8000).
-By this you see that you HAVE to specify fade for a linear light... use values below 0.01 there.
--------- KEYS --------
-light: intensity factor (default: 300). A linear
-_color: weighted RGB value of light color (default white - 1.0 1.0 1.0).
-target: Lights pointed at a target will be spotlights.
-radius: radius of a spotlight at the target point (default: 64)
-_anglescale: scales angle attenuation
-fade: Fade factor of light attenuation of linear lights. Linear lights completely vanish at distance light/(fade*8000), so if you want the light to vanish at distance X, specify light/(8000*X) here.
-_filterradius: filter radius for this light, similar to -light -filter
-_sun: if 1, this light is an infinite sun light
-_samples: number of samples to use to get soft shadows from a light
-_deviance: position deviance of the samples of a regular light (distributes the light samples in a cube of side length 2*_deviance around the origin), or angle deviance of the sun light samples in radians
--------- SPAWNFLAGS --------
-LINEAR: Use a linear falloff. Default is inverse distance squared (more realistic).
-NOANGLE: Ignore angle attenuation.
-*/
-
-/*QUAKED misc_laser (.5 .5 .5) (-8 -8 -8) (8 8 8) START_ON FINITE
-Laser beam emitter. Note that for the laser to be deadly, it has to start OUTSIDE the player's collision box. To ensure this, you may want to put this entity inside the walls (or directly on their surface), or cover it with a playerclip brush.
--------- KEYS --------
-target: target_position the laser targets (may be another entity, preferably target_position, possibly controlled by misc_follow)
-mdl: name of particle effect for the beam end point (see effectinfo.txt; default is laser_deadly if dmg is set, and none if not)
-colormod: color of the laser beam (default: red, that is, 1 0 0)
-dmg: damage inflicted by the beam per second, or -1 for an instant-death ray
-targetname: name to target this (then its state is toggled)
-alpha: when set, makes a dark laser of the given strength; may be combined with colormod
-scale: scales the beam thickness (default 1)
-modelscale: scales the dynamic light radius at the endpoint (default 1, -1 to turn off)
--------- SPAWNFLAGS --------
-START_ON: when targeted, the laser will start switched on
-FINITE: the laser does not extend over its target like light would do, but stops there (takes more bandwidth)
--------- NOTES --------
-Use trigger_monoflop if you want the laser to turn off for a while, then turn back on.
-When the laser's target has itself target set, its targets are triggered when someone enters or leaves the laser.
-*/
-
-/*QUAKED misc_model (1 .5 .25) (-16 -16 -16) (16 16 16) - SOLID - EXTRUDE_NORMALS EXTRUDE_TERRAIN COLOR_TO_ALPHA
-Generic placeholder for inserting MD3 models in game. Requires compilation of map geometry to be added to level. If the map is compiled with Q3Map2, then ASE, 3DS, OBJ and other model formats are supported.
--------- Q3MAP2 KEYS --------
-model: file name of model to include
-_frame: frame of model to include
-_remap: string of the form from;to specifying which texture name of the model to replace by which shader; * is allowed. Any key starting with this prefix will work, so if you need more remappings, create _remap2, etc.
-angle: view direction of the model
-angles: view direction of the model in PITCH YAW ROLL
-modelscale: scaling factor
-modelscale_vec: scaling vector for non-uniform scaling
-_castshadows: Allows per-entity control over shadow casting. Defaults to 0 on entities, 1 on world. 0 = no shadow casting. 1 = cast shadows on world. > 1 = cast shadows on entities with _rs (or _receiveshadows) with the corresponding value, AND world. Negative values imply same, but DO NOT cast shadows on world.
-_receiveshadows: Allows per-entity control over shadow reception. Defaults to 1 on everything (world shadows). 0 = receives NO shadows. > 1 = receive shadows only from corresponding keyed entities (see above) and world. < 1 = receive shadows ONLY from corresponding keyed entities.
-_lightmapscale: light map resolution factor
-_celshader: the cel shader for this
--------- SPAWNFLAGS --------
-SOLID: make the model solid
-EXTRUDE_NORMALS: for converting triangles to clip brushes, extrude along the model normals (by default, extrusion happens in a coordinate axis direction that is decided per triangle)
-EXTRUDE_TERRAIN: always extrude downwards (for terrain)
-COLOR_TO_ALPHA: use the color value as alpha (for terrain blending)
-*/
-
-/*QUAKED misc_gamemodel (0 .5 .8) (-8 -8 -8) (8 8 8) ALIGN_ORIGIN ALIGN_BOTTOM
-A way to load models from a map by the engine (e.g. self-animated zym models).
-Is non-solid by default.
-The keys below actually apply to most engine-loaded model entities as they are engine features; however, they are described here as they aren't overridden by game code in misc_gamemodel. Its q3map2 keys below will work on any brush entity!
--------- KEYS --------
-model: when used as a point entity, file name of model to load; when used as a brush entity, do not specify that
-frame: animation frame to play (for self-animated zym models)
-skin: number of skin to load (when model is used)
-movetype: way in which it moves: one of 0 = NONE, 1 = ANGLENOCLIP, 2 = ANGLECLIP, 3 = WALK, 4 = STEP, 5 = FLY, 6 = TOSS, 7 = PUSH, 8 = NOCLIP, 9 = FLYMISSILE, 10 = BOUNCE, 11 = BOUNCEMISSILE
-solid: solidity: one of 0 = NOT, 1 = TRIGGER, 2 = BBOX, 3 = SLIDEBOX, 4 = BSP, 5 = CORPSE
-avelocity: vector giving its angular velocity (useful for spinning models)
-scale: scale factor of the model (range: 0.0625 to 15.9375)
-colormap: 1024 + 16 * pantscolor + shirtcolor
-velocity: when movetype isn't 0, initial velocity vector
-angles: initial looking direction
-modelscale: scaling factor
-effects: sum of 1 = BRIGHTFIELD, 4 = BRIGHTLIGHT, 8 = DIMLIGHT, 32 = ADDITIVE, 64 = BLUE, 128 = RED, 512 = FULLBRIGHT, 1024 = FLAME, 2048 = STARDUST, 4096 = NOSHADOW, 8192 = NODEPTHTEST, 32768 = DOUBLESIDED, 8388608 = NOMODELFLAGS (ignores the following coming from a model file), 16777216 = ROCKET, 33554432 = GRENADE, 67108864 = GIB, 134217728 = ROTATE, 268435456 = TRACER, 536870912 = ZOMGIB, 1073741824 = TRACER2, -2147483648 = TRACER3
-loddistance1: distance after which to show the first LOD model replacement (default: 1000)
-loddistance2: distance after which to show the second LOD model replacement (default: 2000)
-lodmodel1: file name of the first LOD model replacement
-lodmodel2: file name of the second LOD model replacement
-targetname: when invoking it by a button etc., it changes the color to the initiator of the action (e.g. the one pressing a button). In Onslaught, this can be used to color control points for team who owns them. In other game types, this can be used as a fun feature.
-originjitter: a vector describing a random offset this entity will be moved on initial spawn. This corresponds to the "origin" field. Works on any non-q3map2-only entity.
-anglesjitter: a vector in the order "pitch yaw roll" describing a random angles change on this entity on initial spawn. The value 180 180 180 makes the angles entirely random and uniformly distributed (among euler angles). This corresponds to the "angles" field. Works on any non-q3map2-only entity.
-anglejitter: a float describing a random yaw angle change on this entity on initial spawn. The value 180 makes the yaw angle entirely random (maybe good for items). This corresponds to the "angle" field. Works on any non-q3map2-only entity.
-gametypefilter: either a + sign and a comma separated list of game types or the aliases "teams" and "noteams" to ONLY show the entity in the listed game types, or a - sign and a comma separated list of game types or the aliases "teams" and "noteams" to NOT show the entity in the listed game types. The syntax is the same as in sbar_columns_set strings. Works on any non-q3map2-only entity.
-cvarfilter: either a + sign and a space separated list of conditions, or a - sign and the same for an inverted filter. The conditions are ALWAYS combined with AND! Possible conditions are: "cvar==value", "cvar!=value", "cvar<value", "cvar>value", "cvar<=value", "cvar>=value", "cvar===string", "cvar!==string", "cvar", "!cvar". Ridiculous example filter: "-g_balance_health_start<150 g_balance_armor_start==0" spawns an item only if start health is at least 150 or start armor is not 0. Other ideas: "+g_campaign" and "-g_campaign" for enabling/disabling items when the map is played as part of the campaign.
--------- SPAWNFLAGS --------
-ALIGN_ORIGN: align the origin to the surface below the model
-ALIGN_BOTTOM: align the bottom of the model to the surface below it
-*/
-
-/*QUAKED func_illusionary (0 .5 .8) ? 
-NOTE: THIS ENTITY IS BROKEN REGARDING CLIENT AND PROJECTILE PREDICTION. DO NOT USE IT. USE NONSOLID SHADERS OR FUNC_CLIENTILLUSIONARY INSTEAD.
-A non-solid brush entity. Use func_wall if you want it solid.
-The keys below actually apply to most brush entities as they are engine features; however, they are described here as they aren't overridden by game code in misc_models. Its q3map2 keys below will work on any brush entity!
--------- KEYS --------
-movetype: way in which it moves: one of 0 = NONE, 1 = ANGLENOCLIP, 2 = ANGLECLIP, 3 = WALK, 4 = STEP, 5 = FLY, 6 = TOSS, 7 = PUSH, 8 = NOCLIP, 9 = FLYMISSILE, 10 = BOUNCE, 11 = BOUNCEMISSILE
-avelocity: vector giving its angular velocity (useful for spinning models)
-scale: scale factor of the model (range: 0.0625 to 15.9375)
-colormap: 1024 + 16 * pantscolor + shirtcolor
-velocity: when movetype isn't 0, initial velocity vector
-angles: initial looking direction
-effects: sum of 1 = BRIGHTFIELD, 4 = BRIGHTLIGHT, 8 = DIMLIGHT, 32 = ADDITIVE, 64 = BLUE, 128 = RED, 512 = FULLBRIGHT, 1024 = FLAME, 2048 = STARDUST, 4096 = NOSHADOW, 8192 = NODEPTHTEST, 32768 = DOUBLESIDED, 8388608 = NOMODELFLAGS (ignores the following coming from a model file), 16777216 = ROCKET, 33554432 = GRENADE, 67108864 = GIB, 134217728 = ROTATE, 268435456 = TRACER, 536870912 = ZOMGIB, 1073741824 = TRACER2, -2147483648 = TRACER3
-loddistance1: distance after which to show the first LOD model replacement (default: 1000)
-loddistance2: distance after which to show the second LOD model replacement (default: 2000)
-lodtarget1: targetname of the first LOD model entity (can be used instead of lodmodel1 to use a brush model instead)
-lodtarget2: targetname of the second LOD model entity (can be used instead of lodmodel2 to use a brush model instead)
-targetname: when invoking it by a button etc., it changes the color to the initiator of the action (e.g. the one pressing a button). In Onslaught, this can be used to color control points for team who owns them. In other game types, this can be used as a fun feature. Works only with _shirt and _pants textures.
-originjitter: a vector describing a random offset this entity will be moved on initial spawn. This corresponds to the "origin" field. Works on any non-q3map2-only entity.
-anglesjitter: a vector in the order "pitch yaw roll" describing a random angles change on this entity on initial spawn. The value 180 180 180 makes the angles entirely random and uniformly distributed (among euler angles). This corresponds to the "angles" field. Works on any non-q3map2-only entity.
-anglejitter: a float describing a random yaw angle change on this entity on initial spawn. The value 180 makes the yaw angle entirely random (maybe good for items). This corresponds to the "angle" field. Works on any non-q3map2-only entity.
-gametypefilter: either a + sign and a comma separated list of game types or the aliases "teams" and "noteams" to ONLY show the entity in the listed game types, or a - sign and a comma separated list of game types or the aliases "teams" and "noteams" to NOT show the entity in the listed game types. The syntax is the same as in sbar_columns_set strings. Works on any non-q3map2-only entity.
--------- Q3MAP2 KEYS --------
-_castshadows: Allows per-entity control over shadow casting. Defaults to 0 on entities, 1 on world. 0 = no shadow casting. 1 = cast shadows on world. > 1 = cast shadows on entities with _rs (or _receiveshadows) with the corresponding value, AND world. Negative values imply same, but DO NOT cast shadows on world.
-_receiveshadows: Allows per-entity control over shadow reception. Defaults to 1 on everything (world shadows). 0 = receives NO shadows. > 1 = receive shadows only from corresponding keyed entities (see above) and world. < 1 = receive shadows ONLY from corresponding keyed entities.
-_clone: copies brushes from entity with identical _clonename. Still needs a single brush that will get replaced.
-_clonename: template name so one can clone from it
-min: override automatically found minimum coordinate bounds
-max: override automatically found maximum coordinate bounds
-targetname: if targeted by a misc_model, its brushes get inserted into this
-_celshader: Sets the cel shader used for this geometry. Note: omit the "textures/" prefix.
-*/
-
-/*QUAKED func_wall (0 .5 .8) ? 
-A solid brush entity. Use func_clientillusionary if you want it non-solid.
-The keys below actually apply to most brush entities as they are engine features; however, they are described here as they aren't overridden by game code in misc_models. Its q3map2 keys below will work on any brush entity!
--------- KEYS --------
-movetype: way in which it moves: one of 0 = NONE, 1 = ANGLENOCLIP, 2 = ANGLECLIP, 3 = WALK, 4 = STEP, 5 = FLY, 6 = TOSS, 7 = PUSH, 8 = NOCLIP, 9 = FLYMISSILE, 10 = BOUNCE, 11 = BOUNCEMISSILE
-solid: solidity: one of 1 = TRIGGER, 2 = BBOX, 3 = SLIDEBOX, 4 = BSP, 5 = CORPSE (default: 4, any other value causes prediction problems and should not be used until further notice)
-avelocity: vector giving its angular velocity (useful for spinning models)
-scale: scale factor of the model (range: 0.0625 to 15.9375)
-colormap: 1024 + 16 * pantscolor + shirtcolor
-velocity: when movetype isn't 0, initial velocity vector
-angles: initial looking direction
-effects: sum of 1 = BRIGHTFIELD, 4 = BRIGHTLIGHT, 8 = DIMLIGHT, 32 = ADDITIVE, 64 = BLUE, 128 = RED, 512 = FULLBRIGHT, 1024 = FLAME, 2048 = STARDUST, 4096 = NOSHADOW, 8192 = NODEPTHTEST, 32768 = DOUBLESIDED, 8388608 = NOMODELFLAGS (ignores the following coming from a model file), 16777216 = ROCKET, 33554432 = GRENADE, 67108864 = GIB, 134217728 = ROTATE, 268435456 = TRACER, 536870912 = ZOMGIB, 1073741824 = TRACER2, -2147483648 = TRACER3
-loddistance1: distance after which to show the first LOD model replacement (default: 1000)
-loddistance2: distance after which to show the second LOD model replacement (default: 2000)
-lodtarget1: targetname of the first LOD model entity (can be used instead of lodmodel1 to use a brush model instead)
-lodtarget2: targetname of the second LOD model entity (can be used instead of lodmodel2 to use a brush model instead)
-targetname: when invoking it by a button etc., it changes the color to the initiator of the action (e.g. the one pressing a button). In Onslaught, this can be used to color control points for team who owns them. In other game types, this can be used as a fun feature. Works only with _shirt and _pants textures.
-originjitter: a vector describing a random offset this entity will be moved on initial spawn. This corresponds to the "origin" field. Works on any non-q3map2-only entity.
-anglesjitter: a vector in the order "pitch yaw roll" describing a random angles change on this entity on initial spawn. The value 180 180 180 makes the angles entirely random and uniformly distributed (among euler angles). This corresponds to the "angles" field. Works on any non-q3map2-only entity.
-anglejitter: a float describing a random yaw angle change on this entity on initial spawn. The value 180 makes the yaw angle entirely random (maybe good for items). This corresponds to the "angle" field. Works on any non-q3map2-only entity.
-gametypefilter: either a + sign and a comma separated list of game types or the aliases "teams" and "noteams" to ONLY show the entity in the listed game types, or a - sign and a comma separated list of game types or the aliases "teams" and "noteams" to NOT show the entity in the listed game types. The syntax is the same as in sbar_columns_set strings. Works on any non-q3map2-only entity.
--------- Q3MAP2 KEYS --------
-_castshadows: Allows per-entity control over shadow casting. Defaults to 0 on entities, 1 on world. 0 = no shadow casting. 1 = cast shadows on world. > 1 = cast shadows on entities with _rs (or _receiveshadows) with the corresponding value, AND world. Negative values imply same, but DO NOT cast shadows on world.
-_receiveshadows: Allows per-entity control over shadow reception. Defaults to 1 on everything (world shadows). 0 = receives NO shadows. > 1 = receive shadows only from corresponding keyed entities (see above) and world. < 1 = receive shadows ONLY from corresponding keyed entities.
-_clone: copies brushes from entity with identical _clonename. Still needs a single brush that will get replaced.
-_clonename: template name so one can clone from it
-min: override automatically found minimum coordinate bounds
-max: override automatically found maximum coordinate bounds
-targetname: if targeted by a misc_model, its brushes get inserted into this
-_celshader: Sets the cel shader used for this geometry. Note: omit the "textures/" prefix.
-*/
-
-/*QUAKED misc_clientmodel (0 .5 .8) (-8 -8 -8) (8 8 8) ALIGN_ORIGIN ALIGN_BOTTOM
-A way to load models from a map by the engine (e.g. self-animated zym models) on client side.
-Is non-solid by default.
--------- KEYS --------
-scale: scale factor of the model (range: 0.0625 to 15.9375)
-colormap: 1024 + 16 * pantscolor + shirtcolor
-angles: initial looking direction
-targetname: when invoking it by a button etc., it changes the color to the initiator of the action (e.g. the one pressing a button). In Onslaught, this can be used to color control points for team who owns them. In other game types, this can be used as a fun feature. Works only with _shirt and _pants textures.
-bgmscript: emitter class from the BGM script (if prefixed with <, movedir is treated as an angle value)
-bgmscriptattack: attack time of the effect strength (0 to 3.9)
-bgmscriptdecay: decay time of the effect strength (0 to 3.9)
-bgmscriptsustain: sustain level of the effect strength (0.1 to 1, set to -1 to disable sustain)
-bgmscriptrelease: release time of the effect strength (0 to 3.9)
-movedir: vector by which the entity moves when "pressed" by the bgmscript
-lip: alpha change when "pressed" by the bgmscript (if > 0, it fades in when pressed, if < 0, it fades out when pressed)
-originjitter: a vector describing a random offset this entity will be moved on initial spawn. This corresponds to the "origin" field. Works on any non-q3map2-only entity.
-anglesjitter: a vector in the order "pitch yaw roll" describing a random angles change on this entity on initial spawn. The value 180 180 180 makes the angles entirely random and uniformly distributed (among euler angles). This corresponds to the "angles" field. Works on any non-q3map2-only entity.
-anglejitter: a float describing a random yaw angle change on this entity on initial spawn. The value 180 makes the yaw angle entirely random (maybe good for items). This corresponds to the "angle" field. Works on any non-q3map2-only entity.
-gametypefilter: either a + sign and a comma separated list of game types or the aliases "teams" and "noteams" to ONLY show the entity in the listed game types, or a - sign and a comma separated list of game types or the aliases "teams" and "noteams" to NOT show the entity in the listed game types. The syntax is the same as in sbar_columns_set strings. Works on any non-q3map2-only entity.
--------- SPAWNFLAGS --------
-ALIGN_ORIGN: align the origin to the surface below the model
-ALIGN_BOTTOM: align the bottom of the model to the surface below it
-*/
-
-/*QUAKED func_clientillusionary (0 .5 .8) ? 
-A client-side non-solid brush entity. Use func_wall if you want it solid.
--------- KEYS --------
-scale: scale factor of the model (range: 0.0625 to 15.9375)
-colormap: 1024 + 16 * pantscolor + shirtcolor
-angles: initial looking direction
-targetname: when invoking it by a button etc., it changes the color to the initiator of the action (e.g. the one pressing a button). In Onslaught, this can be used to color control points for team who owns them. In other game types, this can be used as a fun feature. Works only with _shirt and _pants textures.
-bgmscript: emitter class from the BGM script
-bgmscriptattack: attack time of the effect strength (0 to 3.9)
-bgmscriptdecay: decay time of the effect strength (0 to 3.9)
-bgmscriptsustain: sustain level of the effect strength (0.1 to 1, set to -1 to disable sustain)
-bgmscriptrelease: release time of the effect strength (0 to 3.9)
-movedir: vector by which the entity moves when "pressed" by the bgmscript
-lip: alpha change when "pressed" by the bgmscript (if > 0, it fades in when pressed, if < 0, it fades out when pressed)
-originjitter: a vector describing a random offset this entity will be moved on initial spawn. This corresponds to the "origin" field. Works on any non-q3map2-only entity.
-anglesjitter: a vector in the order "pitch yaw roll" describing a random angles change on this entity on initial spawn. The value 180 180 180 makes the angles entirely random and uniformly distributed (among euler angles). This corresponds to the "angles" field. Works on any non-q3map2-only entity.
-anglejitter: a float describing a random yaw angle change on this entity on initial spawn. The value 180 makes the yaw angle entirely random (maybe good for items). This corresponds to the "angle" field. Works on any non-q3map2-only entity.
-gametypefilter: either a + sign and a comma separated list of game types or the aliases "teams" and "noteams" to ONLY show the entity in the listed game types, or a - sign and a comma separated list of game types or the aliases "teams" and "noteams" to NOT show the entity in the listed game types. The syntax is the same as in sbar_columns_set strings. Works on any non-q3map2-only entity.
--------- Q3MAP2 KEYS --------
-_castshadows: Allows per-entity control over shadow casting. Defaults to 0 on entities, 1 on world. 0 = no shadow casting. 1 = cast shadows on world. > 1 = cast shadows on entities with _rs (or _receiveshadows) with the corresponding value, AND world. Negative values imply same, but DO NOT cast shadows on world.
-_receiveshadows: Allows per-entity control over shadow reception. Defaults to 1 on everything (world shadows). 0 = receives NO shadows. > 1 = receive shadows only from corresponding keyed entities (see above) and world. < 1 = receive shadows ONLY from corresponding keyed entities.
-_clone: copies brushes from entity with identical _clonename. Still needs a single brush that will get replaced.
-_clonename: template name so one can clone from it
-min: override automatically found minimum coordinate bounds
-max: override automatically found maximum coordinate bounds
-targetname: if targeted by a misc_model, its brushes get inserted into this
-_celshader: Sets the cel shader used for this geometry. Note: omit the "textures/" prefix.
-*/
-
-/*QUAKED func_clientwall (0 .5 .8) ? 
-NOTE: THIS ENTITY IS IN MOST USE CASES BROKEN REGARDING CLIENT AND PROJECTILE PREDICTION. DO NOT USE IT. USE FUNC_WALL INSTEAD.
-A client-side solid brush entity. Use func_clientillusionary if you want it non-solid.
--------- KEYS --------
-solid: solidity: one of 1 = TRIGGER, 2 = BBOX, 3 = SLIDEBOX, 4 = BSP, 5 = CORPSE (default: 4, any other value causes prediction problems and should not be used until further notice)
-scale: scale factor of the model (range: 0.0625 to 15.9375)
-colormap: 1024 + 16 * pantscolor + shirtcolor
-angles: initial looking direction
-targetname: when invoking it by a button etc., it changes the color to the initiator of the action (e.g. the one pressing a button). In Onslaught, this can be used to color control points for team who owns them. In other game types, this can be used as a fun feature. Works only with _shirt and _pants textures.
-bgmscript: emitter class from the BGM script
-bgmscriptattack: attack time of the effect strength (0 to 3.9)
-bgmscriptdecay: decay time of the effect strength (0 to 3.9)
-bgmscriptsustain: sustain level of the effect strength (0.1 to 1, set to -1 to disable sustain)
-bgmscriptrelease: release time of the effect strength (0 to 3.9)
-movedir: vector by which the entity moves when "pressed" by the bgmscript
-lip: alpha change when "pressed" by the bgmscript (if > 0, it fades in when pressed, if < 0, it fades out when pressed)
-originjitter: a vector describing a random offset this entity will be moved on initial spawn. This corresponds to the "origin" field. Works on any non-q3map2-only entity.
-anglesjitter: a vector in the order "pitch yaw roll" describing a random angles change on this entity on initial spawn. The value 180 180 180 makes the angles entirely random and uniformly distributed (among euler angles). This corresponds to the "angles" field. Works on any non-q3map2-only entity.
-anglejitter: a float describing a random yaw angle change on this entity on initial spawn. The value 180 makes the yaw angle entirely random (maybe good for items). This corresponds to the "angle" field. Works on any non-q3map2-only entity.
-gametypefilter: either a + sign and a comma separated list of game types or the aliases "teams" and "noteams" to ONLY show the entity in the listed game types, or a - sign and a comma separated list of game types or the aliases "teams" and "noteams" to NOT show the entity in the listed game types. The syntax is the same as in sbar_columns_set strings. Works on any non-q3map2-only entity.
--------- Q3MAP2 KEYS --------
-_castshadows: Allows per-entity control over shadow casting. Defaults to 0 on entities, 1 on world. 0 = no shadow casting. 1 = cast shadows on world. > 1 = cast shadows on entities with _rs (or _receiveshadows) with the corresponding value, AND world. Negative values imply same, but DO NOT cast shadows on world.
-_receiveshadows: Allows per-entity control over shadow reception. Defaults to 1 on everything (world shadows). 0 = receives NO shadows. > 1 = receive shadows only from corresponding keyed entities (see above) and world. < 1 = receive shadows ONLY from corresponding keyed entities.
-_clone: copies brushes from entity with identical _clonename. Still needs a single brush that will get replaced.
-_clonename: template name so one can clone from it
-min: override automatically found minimum coordinate bounds
-max: override automatically found maximum coordinate bounds
-targetname: if targeted by a misc_model, its brushes get inserted into this
-_celshader: Sets the cel shader used for this geometry. Note: omit the "textures/" prefix.
-*/
-
-/*QUAKED misc_teleporter_dest (1 .5 .25) (-16 -16 -24) (16 16 45) 
-Teleport destination location point for trigger_teleport entities. Do not let it touch the floor, but place it slightly higher (like, 16 units above) for better flow when jumping through it.
--------- KEYS --------
-targetname: make the trigger_teleporter point to this.
-target: target to activate when a teleporter targeting this is used
-angle: direction in which player will look when teleported, OR use
-angles: pitch and yaw when coming out of the teleporter (also specifies the direction the player will aim when coming out)
-cnt: weight for random selection, in case a teleporter points at multiple misc_teleporter_dest
-speed: maximum speed cap for the teleported player (if -1, teleported players will have no speed)
-*/
-
-/*QUAKED onslaught_controlpoint (0 .5 .8) (-32 -32 0) (32 32 128) 
-Control point.  Be sure to give this enough clearance so that the shootable part has room to exist
-This should link to an onslaught_controlpoint entity or onslaught_generator entity.
--------- KEYS --------
-targetname: name that onslaught_link entities will use to target this.
-target: target any entities that are tied to this control point, such as vehicles and buildable structure entities.
-message: name of this control point (should reflect the location in the map, such as "center bridge", "north tower", etc)
-*/
-
-/*QUAKED onslaught_generator (0 .5 .8) (-32 -32 -24) (32 32 64) 
-Base generator.
-
-onslaught_link entities can target this.
--------- KEYS --------
-team: team that owns this generator (5 = red, 14 = blue, etc), MUST BE SET.
-targetname: name that onslaught_link entities will use to target this.
-*/
-
-/*QUAKED onslaught_link (0 .5 .8) (-16 -16 -16) (16 16 16) 
-Link between control points.
-
-This entity targets two different onslaught_controlpoint or onslaught_generator entities, and suppresses shielding on both if they are owned by different teams.
--------- KEYS --------
-target: first control point.
-target2: second control point.
-*/
-
-/*QUAKED path_corner (.5 .3 0) (-8 -8 -8) (8 8 8) 
-Path corner entity that func_train will follow.
-All path_corner entities of a train have to connect in a circular manner, while the func_train shall point to one of the path_corners (ideally the one at the train's starting point)
--------- KEYS --------
-target: point to next path_corner in the path.
-targetname: the train following the path or the previous path_corner in the path points to this.
-speed: speed of func_train while moving to this path corner. If unset, the value from the func_train will be used.
-wait: number of seconds func_train will pause on this path corner before moving to next path corner (default: 0.1; to not wait, set this to -1
-*/
-
-/*QUAKED runematch_spawn_point (.3 .3 1) (-16 -16 -16) (16 16 16) 
-Spawn point for runes in a runematch.
-Runematch can work without runes also, it then spawn runes at random safe locations.
-*/
-
-/*QUAKED target_assault_roundend (1 0 0) (-8 -8 -8) (8 8 8) 
-This entity ends the current assault round if triggered or if the timelimit is reached.
-Ending a round means swapping attacker/defender teams, resetting objectives and rewarding the winning team.
-Every assault map needs this entity. There should only be one per map.
--------- KEYS --------
-targetname: Name to target this entity
-*/
-
-/*QUAKED target_assault_roundstart (.5 0 .5) (-8 -8 -8) (8 8 8) 
-This entity triggers its targets whenever a new assault round is started. This can be used to e.g. activate the first objective.
--------- KEYS --------
-target: targetname of entities to be enabled/triggered on round start (e.g. the first target_objective)
-target2: targetname of entities to be enabled/triggered on round start (e.g. the func_assault_destructibles targeting the target_objective)
-target3: targetname of entities to be enabled/triggered on round start
-target4: targetname of entities to be enabled/triggered on round start
-*/
-
-/*QUAKED target_objective (.5 0 .5) (-8 -8 -8) (8 8 8) 
-target_objective controls an objective. Once triggered the objective is active and has 100 "health" points. If this "health" falls below zero it is assumed this objective has been fulfilled and entities targeted will be triggered (e.g. to activate the next objective or to end this round). Use target_objective_decrease to decrease the objective health.
--------- KEYS --------
-target: targetname of entities to be enabled/triggered on objective fulfilling (e.g. the next target_objective, or target_assault_roundend)
-target2: targetname of entities to be enabled/triggered on objective fulfilling (e.g. the func_assault_destructibles targeting the target_objective)
-target3: targetname of entities to be enabled/triggered on objective fulfilling
-target4: targetname of entities to be enabled/triggered on objective fulfilling
-targetname: targetname for this entity so it can be triggered by other entities.
-*/
-
-/*QUAKED target_objective_decrease (0 1 0) (-8 -8 -8) (8 8 8) 
-When triggered decreases health of the targeted target_objective by the amount specified in dmg. Remember, target_objective has 100 health points and is considered conquered if health falls below zero.
-If you want e.g. two events to happen to conquer an objective you'd need two target_objective_decrease, each with a value for cnt of e.g. 51. To show attackers and defenders where to go, target_objective_decrease will show a fitting sprite ("Defend" to defenders, "Destroy"/"Push" to attackers) which can be seen through walls.
--------- KEYS --------
-target: The targetname of the target_objective you want to manipulate.
-targetname: Name for other entities to target this entity.
-dmg: The amount of "health"-points you want to subtract from the objective health. Defaults to 101. Also used as score for triggering this objective.
-*/
-
-/*QUAKED target_position (0 .5 0) (-8 -8 -8) (8 8 8) 
-Aiming target for entities like light and trigger_push.
--------- KEYS --------
-targetname: the entity that requires an aiming direction points to this.
-target: target to activate when a jumppad targeting this is used
-*/
-
-/*QUAKED target_speaker (0 .7 .7) (-8 -8 -8) (8 8 8) 
-Sound generating entity that plays sound files.
-If targeted, it plays the sound file every time when triggered.
-If not targeted, it loops the sound file as an ambient noise.
--------- KEYS --------
-noise: path/name of .wav/.ogg file to play
-targetname: the activating button or trigger points to this.
-atten: distance attenuation of the sound (a value from 0.1 to 3.9), default is 0.5 if targeted, 3 otherwise; set to -1 for no attenuation (global sound)
-volume: volume of the sound
-*/
-
-/*QUAKED trigger_counter (.5 .5 .5) ? NOMESSAGE
-Acts as an intermediary for an action that takes multiple inputs.
-After the counter has been triggered "count" times, it will fire all of its targets and remove itself.
--------- KEYS --------
-count: how many times this needs to be triggered to activate its targets
-target: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-delay: delay the triggering by the given time
-message: print this message to the player who activated the trigger
-killtarget: remove all entities with this targetname when triggered
--------- SPAWNFLAGS --------
-NOMESSAGE: don't print a "2 more to go..."-like message when triggered
-*/
-
-/*QUAKED trigger_delay (.5 .5 .5) (-8 -8 -8) (8 8 8) 
-Trigger that delays triggering by a given amount of time. Only one action can be waited for; if triggered again before the "wait" time expires, the timer will restart (as opposed to trigger_relay).
--------- KEYS --------
-wait: delay the triggering by the given time
-target: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-message: print this message to the player who activated the trigger
-killtarget: remove all entities with this targetname when triggered
-*/
-
-/*QUAKED trigger_hurt (.5 .5 .5) ? 
-Any object touching this will be hurt.
-Has the useful effect of automatically returning flags, keys and runes when they touch it.
--------- KEYS --------
-dmg: amount of damage to deal (default: 1000)
-message: kill message when someone gets killed by this (default: "was in the wrong place")
-message2: kill message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-*/
-
-/*QUAKED trigger_impulse (.5 .5 .5) ? 
-An accelerator/dampener/wind field.
-Can be used in two ways:
-"dampener field": just set strength to a value from 0 to 1. Entering the field will slow down to this factor.
-"accelerator field": just set strength to a value from 1 to infinity. Entering the field will accelerate by this factor.
-"wind field": set strength to the amount of velocity to add per second, and target a target_position. The field will apply force in the direction from its own origin to the target (use an origin brush to specify its own origin, or this will fail) when touched.
-"gravity field": set strength to the amount of velocity to add per second at the center, and set radius to the radius of the field. Set falloff to the desired falloff characteristics.
--------- KEYS --------
-target: "wind field": points to the target_position to which the player will get pushed.
-strength: "wind field", "gravity field": amount of force per second to apply. "dampener/accelerator field": slowdown/speedup factor.
-falloff: "gravity field": 0 means no falloff, 1 means linear falloff (zero at the outside), 2 means inverted linear falloff (zero at the inside)
-*/
-
-/*QUAKED trigger_multiple (.5 .5 .5) ? NOTOUCH ALLENTS - - - - - - NOSPLASH
-Variable sized repeatable trigger.  Must be targeted at one or more entities.  If "health" is set, the trigger must be killed to activate each time.
--------- KEYS --------
-health: amount of damage that has to be dealt to the trigger to activate (it then won't respond to merely touching it)
-wait: prevent triggering again for this amount of time (default: 0.2, set to -1 to wait indefinitely, or -2 to not wait at all)
-sounds: 1 to play misc/secret.wav, 2 to play misc/talk.wav, 3 to play misc/trigger1.wav
-noise: path to sound file, if you want to play something else
-target: trigger all entities with this targetname when triggered
-target2: trigger all entities with this targetname when triggered
-target3: trigger all entities with this targetname when triggered
-target4: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-delay: delay the triggering by the given time
-message: print this message to the player who activated the trigger
-killtarget: remove all entities with this targetname when triggered
--------- SPAWNFLAGS --------
-NOTOUCH: the trigger can only be triggered by other entities, not by touching or firing (you should probably use trigger_relay or trigger_delay instead)
-ALLENTS: the trigger responds to all entities, not just players (useful for targetting trigger_items)
-NOSPLASH: if set, splash damage cannot activate the door, only direct damage can (requires health to be set)
-*/
-
-/*QUAKED trigger_once (.5 .5 .5) ? NOTOUCH - - - - - - - NOSPLASH
-Variable sized repeatable trigger.  Must be targeted at one or more entities.  If "health" is set, the trigger must be killed to activate each time.
-Basically, it's a use-once trigger_multiple.
--------- KEYS --------
-health: amount of damage that has to be dealt to the trigger to activate (it then won't respond to merely touching it)
-sounds: 1 to play misc/secret.wav, 2 to play misc/talk.wav, 3 to play misc/trigger1.wav
-noise: path to sound file, if you want to play something else
-target: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-delay: delay the triggering by the given time
-message: print this message to the player who activated the trigger
-killtarget: remove all entities with this targetname when triggered
--------- SPAWNFLAGS --------
-NOTOUCH: the trigger can only be triggered by other entities, not by touching or firing (you should probably use trigger_relay or trigger_delay instead)
-NOSPLASH: if set, splash damage cannot activate the door, only direct damage can (requires health to be set)
-*/
-
-/*QUAKED trigger_push (1 .5 0) ? - - INVERT_TEAM
-Jump pad. What else?
-Can be used in three ways:
-Nexuiz "target/height" way: put the target_position where the player should land, and tune height to get a nice jump path. A good starting value for height is 100.
-Q3A "target" way: put the target_position at the apex of the jump, and hope the player will land at the right spot. Good luck.
-Quake "movedir/speed" way: player will get velocity movedir * speed * 10 when using the jump pad
--------- KEYS --------
-target: point the player will fly to when using the jump pad (use a target_position here)
-height: if height is 0, the (player's origin at the) apex of the jump will be at the target; otherwise, the apex will be abs(height) above the higher point of player's origin and the target; if positive, the apex will be reached in the jump from initial origin to target
-movedir: when target is not set, direction vector to push to
-speed: speed of jump pad (default: 1000)
-noise: sound to play when jump pad is used; default is misc/jumppad.wav; you can set it to "" to make the pad silent
-team: team that owns this jump pad (5 = red, 14 = blue, etc) (when set, only this team can teleport)
-targetname: when targeted by a func_button, pressing the button will reassign the teleporter to the team of the activator.
--------- SPAWNFLAGS --------
-INVERT_TEAM: the team that owns the teleporter will NOT jump when touching this
-*/
-
-/*QUAKED trigger_relay (.5 .5 .5) (-8 -8 -8) (8 8 8) 
-This fixed size trigger cannot be touched, it can only be fired by other events. It can, like any other trigger, contain killtargets, targets, delays, and messages.
-One possible use is to trigger entities with more than one targetname on an action, e.g. a button. For this, set target of your button to foobar. Create two trigger_relay with targetname=foobar. Give one of the trigger_relay entities target=ent1, and give the other target=ent2.
-More than one "trigger event" can be delayed at once, as opposed to trigger_delay.
--------- KEYS --------
-target: trigger all entities with this targetname when triggered
-target2: trigger all entities with this targetname when triggered
-target3: trigger all entities with this targetname when triggered
-target4: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-delay: delay the triggering by the given time
-message: print this message to the player who activated the trigger
-killtarget: remove all entities with this targetname when triggered
-*/
-
-/*QUAKED trigger_swamp (.5 .5 .5) ? 
-Players getting into the swamp will get slowed down and damaged
--------- KEYS --------
-dmg: damage per interval to deal (default is 5)
-swamp_interval: interval of damage when in swamp (default is 1)
-swamp_slowdown: amount of slowdown caused by the swamp (default is 0.5)
-*/
-
-/*QUAKED trigger_teleport (.5 .5 .5) ? - - INVERT_TEAM
-Touching this will teleport players to the location of the targeted misc_teleporter_dest entity.
-Note that in Nexuiz, teleporters preserve momentum of the player using them.
--------- KEYS --------
-target: this must point to a misc_teleporter_dest entity. If it points to more than one, a destination is randomly selected on teleport.
-team: team that owns this teleporter (5 = red, 14 = blue, etc) (when set, only this team can teleport)
-targetname: when targeted by a func_button, pressing the button will reassign the teleporter to the team of the activator.
--------- SPAWNFLAGS --------
-INVERT_TEAM: the team that owns the teleporter will NOT teleport when touching this
-*/
-
-/*QUAKED weapon_crylink (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Crylink
--------- KEYS --------
-ammo_cells: initial cells of the weapon (if unset, g_pickup_cells is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_crylink.md3"
-*/
-
-/*QUAKED weapon_electro (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Electro
--------- KEYS --------
-ammo_cells: initial cells of the weapon (if unset, g_pickup_cells is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_electro.md3"
-*/
-
-/*QUAKED weapon_grenadelauncher (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Mortar
--------- KEYS --------
-ammo_rockets: initial rockets of the weapon (if unset, g_pickup_rockets is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_gl.md3"
-*/
-
-/*QUAKED weapon_hagar (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Hagar
--------- KEYS --------
-ammo_rockets: initial rockets of the weapon (if unset, g_pickup_rockets is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_hagar.md3"
-*/
-
-/*QUAKED weapon_laser (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Laser. Note that unless you use
-  settemp_for_type all g_start_weapon_laser 0
-in your mapinfo file, everyone will already spawn with one, making this pickup useless.
--------- KEYS --------
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_laser.md3"
-*/
-
-/*QUAKED weapon_nex (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Nex
-In Minstagib, this turns into an item_minst_cells if no explicit item_minst_cells have been placed.
--------- KEYS --------
-ammo_cells: initial cells of the weapon (if unset, g_pickup_cells is used)
-respawntime: time till it respawns (default: 15 * g_balance_nex_respawntime_modifier)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_nex.md3"
-*/
-
-/*QUAKED weapon_rocketlauncher (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Rocket Launcher
-In Minstagib, this turns into an item_minst_cells if no explicit item_minst_cells have been placed.
--------- KEYS --------
-ammo_rockets: initial rockets of the weapon (if unset, g_pickup_rockets is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_rl.md3"
-*/
-
-/*QUAKED weapon_shotgun (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Shotgun. Note that unless you use
-  settemp_for_type all g_start_weapon_shotgun 0
-in your mapinfo file, everyone will already spawn with one, making this pickup useless.
--------- KEYS --------
-ammo_shells: initial shells of the weapon (if unset, g_pickup_shells is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_shotgun.md3"
-*/
-
-/*QUAKED weapon_uzi (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Machine Gun
--------- KEYS --------
-ammo_nails: initial bullets of the weapon (if unset, g_pickup_nails is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_uzi.md3"
-*/
-
-/*QUAKED worldspawn (0 0 0) ? 
-The world.
-If you see this, the currently selected brush is not of an entity.
--------- KEYS --------
-fog: fog parameters of the map (density red green blue alpha mindist maxdist); works just like the "fog" console command
-author: name of the author of the map, if not specified in "message". Will get copied to the "author" entry of the mapinfo file when none is present.
-message: text to print at user logon. Used for name of level. Ideally: "NAMEOFLEVEL by AUTHOR". Will get copied to the "title" and "author" entries of the mapinfo file when none is present.
-_description: one-line description of the map. Will get copied to the "description" entry of the mapinfo file when none is present.
--------- Q3MAP2 KEYS --------
-_blocksize: vector specifying the automatic vis subdivision block size (default: 1024 1024 1024)
-gridsize: lightgrid granularity vector (default: 64 64 128)
-_color: color of the global light parameters
-_ambient: light added to all surfaces
-_mingridlight: minimum grid light
-_minlight: minimum light value on both surfaces and lightgrid
-_keepLights: do not remove light entities from the map (useful e.g. for realtime lighting)
-_floodlight: flood light parameters (red green blue distance intensity), start with 240 240 255 1024 128
-_farplanedist: range after which everything is completely invisible by fog (when fog is being used)
-_noshadersun: turn off sun defined by shaders (useful if you defined your own light entity to be a sun)
-_ignoreleaks: ignore leaks when compiling
-_lightmapscale: light map resolution factor
-_castshadows: Allows per-entity control over shadow casting. Defaults to 0 on entities, 1 on world. 0 = no shadow casting.1 = cast shadows on world. > 1 = cast shadows on entities with _rs (or _receiveshadows) with the corresponding value, AND world. Negative values imply same, but DO NOT cast shadows on world.
-_receiveshadows: Allows per-entity control over shadow reception. Defaults to 1 on everything (world shadows). 0 = receives NO shadows. > 1 = receive shadows only from corresponding keyed entities (see above) and world. < 1 = receive shadows ONLY from corresponding keyed entities.
-_celshader: Sets the cel shader used for this geometry. Note: omit the "textures/" prefix.
-*/
-
-/*QUAKED trigger_race_checkpoint (0 1 0) ? NOTOUCH STRICTTRIGGER CRUSH FINISH
-A checkpoint, for the race game mode. Be sure to make them quite long, so they actually catch a player reliably!
--------- KEYS --------
-cnt: Number of the checkpoint. 0 for start/finish line, and at least two other checkpoints have to exist. They MUST be touched in sequential order!
-message: Death message, when touching checkpoints in the wrong order.
-message2: Death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-targetname: Name of the checkpoint. info_player_race can target this to assign a spawn to a checkpoint. Also used for triggering a checkpoint by an event.
-target: when the checkpoint is passed, these entities are triggered. Useful for forcing items in certain areas using trigger_items
-race_penalty: when set, this penalty time is given if passing this checkpoint, and the checkpoint does not show up with a sprite. Useful for invisible checkpoints to detect driving around the intended checkpoint
-race_penalty_reason: reason to display when the penalty time is imposed. Default: "missing a checkpoint"
--------- SPAWNFLAGS --------
-NOTOUCH: the checkpoint will not become active when touched, it HAS to be targeted
-STRICTTRIGGER: only trigger the targets when the checkpoint actually was reached in a valid way (that is, not when going back)
-CRUSH: the checkpoint kills when used at the wrong time
-FINISH: when set on the last checkpoint (i.e. the one with highest cnt), it is marked as finish line and the CP with cnt=0 is the start line
-*/
-
-/*QUAKED trigger_race_penalty (0 1 0) ? NOTOUCH
-A penalty trigger.
--------- KEYS --------
-race_penalty: this penalty time is given if passing this trigger
-race_penalty_reason: reason to display when the penalty time is imposed. Default: "leaving the track"
--------- SPAWNFLAGS --------
-NOTOUCH: the trigger will not become active when touched, it HAS to be targeted
-*/
-
-/*QUAKED info_player_race (1 0.5 0) (-16 -16 -24) (16 16 45) 
-Race spawn point.
-NOTE for race_place: when the race starts after the qualifying, the player with the fastest lap ends up at the info_player_race with race_place 1, and so on. If there are too many players, or if someone comes in later, he will spawn at an info_player_race with highest race_place. If someone dies after reaching the the starting checkpoint, he will spawn at race_place 0. So for each trigger_race_checkpoint, there must be at least one corresponding info_player_race with race_place NOT set.
--------- KEYS --------
-target: this should point to a trigger_race_checkpoint to decide when this spawning point is active. The checkpoint has to be AFTER this spawn.
-target2: trigger all entities with this targetname when someone spawns
-cnt: weight of spawn point for random selection. Set to a lower value if you have many spawn points close together. Default value is 1.
-race_place: if target points to the trigger_race_checkpoint with cnt 0 (finish line), this sets which place the spawn corresponds to; the special value 0 stands for spawns for players who died in game, and -1 marks the spawnpoint for qualifying mode only; any race map must have spawnpoints with race_place being 1, 2, 3 or it gets marked as a frustrating map
-restriction: when 1, only bots can spawn here; when 2, only humans can spawn here (be careful with these, or the game will crash because someone cannot spawn)
-*/
-
-/*QUAKED func_pointparticles (.5 .5 .5) ? START_ON IMPULSE
-A brush that emits particles.
--------- KEYS --------
-mdl: particle effect name from effectinfo.txt
-impulse: when positive, number of particles to emit per second; when negative; number of particles to emit per second and 64^3 block
-velocity: particle direction and speed
-waterlevel: extra velocity jitter amount
-count: particle count multiplier (per spawned particle)
-movedir: when set, trace direction (particles will then be emitted from the surface the trace hits); the length of the vector is used as strength of taking the normal of the trace into account
-noise: sound to play when the particle is emitted
-atten: distance attenuation of the sound (a value from 0.1 to 3.9), default is 0.5; set to -1 for no attenuation (global sound)
-volume: volume of the sound
-targetname: name to target this (then its state is toggled)
-bgmscript: emitter class from the BGM script
-bgmscriptattack: attack time of the effect strength (0 to 3.9)
-bgmscriptdecay: decay time of the effect strength (0 to 3.9)
-bgmscriptsustain: sustain level of the effect strength (0.1 to 1, set to -1 to disable sustain)
-bgmscriptrelease: release time of the effect strength (0 to 3.9)
--------- SPAWNFLAGS --------
-START_ON: when targeted, the particle emitter will start switched on
-IMPULSE: only send the full amount of impulse particles when the entity is triggered
--------- NOTES --------
-Use trigger_monoflop if you want the particles to turn off for a while, then turn back on.
-A BGM script is a .bgs file named like the map, in the maps directory. Its format is lines of the form
-  <emitter class> <time since start of background music> <0 if the emitters are to be switched off, >0 and <=1 if they are to be switched on>
-e.g.
-  smokers 4.7 1
-  smokers 4.9 0
-The lines MUST be sorted by emitter class as primary key, and by the time since start of the BGM as secondary key.
-*/
-
-/*QUAKED trigger_flipflop (.5 .5 .5) (-8 -8 -8) (8 8 8) START_ON
-"Flip-flop" trigger gate... lets only every second trigger event through
--------- KEYS --------
-target: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
--------- SPAWNFLAGS --------
-START_ON: assume it is already turned on (so the first event is NOT passed through)
-*/
-
-/*QUAKED trigger_monoflop (.5 .5 .5) (-8 -8 -8) (8 8 8) FIXED
-"Mono-flop" trigger gate... turns trigger events into pairs of events
--------- KEYS --------
-target: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-wait: time to wait until the "off" event is fired
--------- SPAWNFLAGS --------
-FIXED: do pulses of fixed length (so the "off" delay is NOT extended as usual and new events are just ignored)
-*/
-
-/*QUAKED trigger_multivibrator (.5 .5 .5) (-8 -8 -8) (8 8 8) START_ON
-"Multivibrator" trigger gate... repeatedly sends trigger events. When triggered, turns on or off.
--------- KEYS --------
-target: trigger all entities with this targetname when it goes off
-targetname: name that identifies this entity so it can be triggered
-phase: phase of the multivibrator (it is added to the time)
-wait: "on" cycle time (default: 1)
-respawntime: "off" cycle time (default: same as wait)
--------- SPAWNFLAGS --------
-START_ON: assume it is already turned on (when targeted)
-*/
-
-/*QUAKED trigger_gamestart (.5 .5 .5) (-8 -8 -8) (8 8 8)
-Triggers once when the game starts, then no longer does anything.
--------- KEYS --------
-target: trigger all entities with this targetname when starting the game
-target2: trigger all entities with this targetname when starting the game
-target3: trigger all entities with this targetname when starting the game
-target4: trigger all entities with this targetname when starting the game
-wait: wait so many seconds before triggering
-*/
-
-/*QUAKED misc_follow (.5 .5 .5) (-8 -8 -8) (8 8 8) ATTACH LOCAL
-Makes one entity follow another. Will not work with all entities.
--------- KEYS --------
-target: points to the entity to move (e.g. something that won't move by itself)
-killtarget: points to the entity that is to be used as the source (e.g. a func_plat)
-message: tag name to attach to (if ATTACH is used)
-punchangle: angle modifier (if LOCAL is used, and ATTACH is not)
--------- SPAWNFLAGS --------
-ATTACH: attachment will be used instead of MOVETYPE_FOLLOW (mostly useful for attaching stuff to ZYM models)
-LOCAL: do not untransform the coordinates (that is, the map specifies local coordinates, not global ones). Mostly useful with ATTACH.
-*/
-
-/*QUAKED weapon_minstanex (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-Placing this entity on a map kills your cat, voids the warranty on your toaster, and makes your map an unenjoyable campers' paradise.
-the MinstaGib Nex. Always kills with one shot.
--------- KEYS --------
-ammo_cells: initial cells of the weapon (if unset, g_pickup_cells is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_minstanex.md3"
-*/
-
-/*QUAKED weapon_porto (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Port-O-Launch. Only can be shot once.
-Portals cannot be made on noimpact surfaces, and the portal missile will bounce on slick surfaces.
--------- KEYS --------
-respawntime: time till it respawns (default: 120)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_porto.md3"
-*/
-
-/*QUAKED target_items (0 0 1) (-8 -8 -8) (8 8 8) AND OR ANDNOT
-Sets the items of any player who triggers this.
-For the number fields, not specifying a value means not changing it. To clear armor, you need to explicitly set "armor" to "-1".
-You may want to target this by a race checkpoint, a teleporter, or a trigger_multiple with ALLENTS set (so it removes weapons thrown through the field to avoid getting a weapon through it).
--------- KEYS --------
-targetname: used to trigger this
-netname: space separated list of items (either weapon short names (like in g_start_weapon_* cvars), or item short names "unlimited_ammo", "unlimited_weapon_ammo", "unlimited_superweapons", "invincible", "strength", "jetpack" and "fuel_regen"
-message: message to print
-ammo_shells: amount of shells
-ammo_nails: amount of bullets
-ammo_rockets: amount of rockets
-ammo_cells: amount of cells
-ammo_fuel: amount of fuel
-health: amount of health
-armorvalue: amount of armor
-strength_finished: if "strength" is specified, the time in seconds for which the strength will hold
-invincible_finished: if "invincible" is specified, the time in seconds for which the invincibility will hold
--------- SPAWNFLAGS --------
-AND: any items not listed will get removed, and none will get added
-OR: the player may keep items not listed
-ANDNOT: the items listed will get removed from the player
-*/
-
-/*QUAKED target_spawn (1 0 1) (-8 -8 -8) (8 8 8) - ONLOAD
-Spawns or modifies an entity when triggered.
-The entity field list is a single string of the form:
-'field' 'value' 'field' 'value' ... 'classname' 'item_bullets' ... 'field' 'value'
-The special "field" name $ calls a void(void) function, for example a spawn function.
-Special function names available are _setmodel and _setsize.
-Field values can use various variable replacements:
-$E
-$E.field
-$E.field+offset
-$E.field+offset+randomoffset
-where "E" can be self, activator, target (the entity being created/modified), killtarget, target2, target3, target4 and pusher.
-Example is a Mario-style question mark block which could throw a new weapon_nex when activated like this:
-{
-"classname" "func_button"
-"angle" "-1"
-"wait" "5"
-"target" "makenex"
-"speed" "1000"
-"lip" "64"
-...
-}
-{
-"classname" "target_spawn"
-"origin" "0 0 448"
-"targetname" "makenex"
-"message" "origin $self.origin owner $activator flags 65536 colormap $activator.colormap classname droppedweapon $ spawnfunc_weapon_nex think thrown_wep_think nextthink $time+0.5 velocity $activator.velocity velocity_z 512 movetype 3"
-}
--------- KEYS --------
-targetname: used to trigger this
-message: entity field list
-target: when set, target_spawn edits entities, instead of creating new ones
-count: make sure no more than count entities have been created by this (refuse to spawn new ones if exceeded)
-killtarget: reference entity (can be used as $killtarget)
-target2: reference entity (can be used as $target2)
-target3: reference entity (can be used as $target3)
-target4: reference entity (can be used as $target4)
--------- SPAWNFLAGS --------
-ONLOAD: create a first entity on map load
-*/
-
-/*QUAKED func_breakable (1 0 0) ? DISABLED INDICATE - - - - - - NOSPLASH
-This is a brush model which can be damaged.
-Once all health is consumed it'll disappear and trigger the targeted entity/entities.
-When triggered, it resets to full health, and unbreaks.
--------- KEYS --------
-health: The damage this trigger can take
-target: The entity/entities to be triggered once this entity gets invisible
-targetname: The name other entities can use to target this entity
-mdl: particle effect name to show when destroyed
-count: particle effect multiplier
-mdl_dead: optional replacement model to show when destroyed
-debris: names of debris models to show when destroyed, separated by spaces
-noise: sound to play when destroyed
-dmg: damage to deal to the environment when destroyed
-dmg_edge: edge damage to deal to the environment when destroyed
-dmg_radius: damage radius
-dmg_force: damage force
-message: death message when a player gets hit by the explosion
-message2: death message when someone gets pushed into this (default: "was pushed into an explosion by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-debrismovetype: way in which the debris moves: one of 1 = ANGLENOCLIP, 2 = ANGLECLIP, 3 = WALK, 4 = STEP, 5 = FLY, 6 = TOSS, 7 = PUSH, 8 = NOCLIP, 9 = FLYMISSILE, 10 = BOUNCE, 11 = BOUNCEMISSILE
-debrissolid: solidity of the debris: one of 0 = NOT, 1 = TRIGGER, 2 = BBOX, 3 = SLIDEBOX, 4 = BSP, 5 = CORPSE
-debrisvelocity: initial velocity vector of the debris (static part)
-debrisvelocityjitter: initial velocity vector of the debris (random part)
-debrisavelocityjitter: initial angular velocity vector of the debris (random part)
-debristime: time till the debris fades (average)
-debristimejitter: time till the debris fades (random part)
-debrisfadetime: how long debris takes to fade
-debrisdamageforcescale: how much debris is affected by damage force (e.g. explosions)
-debrisskin: skin number of debris
--------- SPAWNFLAGS --------
-DISABLED: do not allow damaging this until it is first activated
-INDICATE: indicate amount of damage already taken by coloring
-NOSPLASH: if set, splash damage cannot activate the door, only direct damage can (requires health to be set)
-*/
-
-/*QUAKED trigger_relay_if (0 1 0) (-8 -8 -8) (8 8 8) NEGATE
-Relays the trigger event if a cvar is set to a specified value.
--------- KEYS --------
-target: The entity/entities to relay the trigger events to
-targetname: The name other entities can use to target this entity
-netname: The name of the cvar to check
-message: The value of the cvar to check
-count: The count of entities that must be found
--------- SPAWNFLAGS --------
-NEGATE: trigger if the cvar does NOT match the value.
-*/
-
-/*QUAKED weapon_hlac (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Heavy Laser Assault Cannon.
--------- KEYS --------
-ammo_cells: initial cells of the weapon (if unset, g_pickup_cells is used)
-respawntime: time till it respawns (default: 30)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_hlac.md3"
-*/
-
-/*QUAKED weapon_hook (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the on-hand Grappling Hook.
--------- KEYS --------
-ammo_cells: initial cells of the weapon (if unset, g_pickup_cells is used)
-respawntime: time till it respawns (default: 30)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_hookgun.md3"
-*/
-
-/*QUAKED trigger_heal (.5 .5 .5) ?
-Any object touching this will be healed.
--------- KEYS --------
-health: health to give per second (default 10)
-max_health: max health this trigger will give (default 200)
-noise: sound file to play (use misc/null.wav to make it silent), default = item_health_medium sound
-*/
-
-/*QUAKED weapon_campingrifle (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Camping Rifle.
--------- KEYS --------
-ammo_nails: initial bullets of the weapon (if unset, g_pickup_nails is used)
-respawntime: time till it respawns (default: 30)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_campingrifle.md3"
-*/
-
-/*QUAKED func_fourier (0 .5 .8) ?
-Solid entity that oscillates according to a sum of sine waves.
--------- KEYS --------
-speed: amount of time in seconds for one complete oscillation cycle in the base frequency (default 4).
-height: sets the amount of travel of the oscillation movement (default 32). 
-phase: sets the start offset of the oscillation cycle. Values must be 0 < phase < 1. Any integer phase value is the same as no offset (default 0).
-noise: path/name of .wav or .ogg file to play. Use looping sounds only (e.g. sound/world/drone6.wav - See Notes).
-dmg: damage a player who gets crushed by it receives
-dmgtime: interval to apply dmg to a player who is s in the way
-message: death message when a player gets crushed
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
-netname: list of <frequencymultiplier> <phase> <x> <y> <z> quadruples, separated by spaces; note that phase 0 represents a sine wave, and phase 0.25 a cosine wave (by default, it uses 1 0 0 0 1, to match func_bobbing's defaults
-*/
-
-/*QUAKED func_vectormamamam (0 .5 .8) ? PROJECT_ON_TARGETNORMAL TARGET2NORMAL_IS_DIRECTION TARGET3NORMAL_IS_DIRECTION TARGET4NORMAL_IS_DIRECTION
-Solid entity that moves according to the movement of multiple given entities (max 4)
--------- KEYS --------
-target: first reference entity
-targetfactor: factor by which to take the first reference entity (default 1).
-targetnormal: if set, the first reference entity's location is first projected onto a plane with that normal
-target2: second reference entity
-target2factor: factor by which to take the second reference entity (default 1).
-target2normal: if set, the second reference entity's location is first projected onto a plane with that normal
-target3: third reference entity (optional)
-target3factor: factor by which to take the third reference entity (default 1).
-target3normal: if set, the third reference entity's location is first projected onto a plane with that normal
-target4: fourth reference entity (optional)
-target4factor: factor by which to take the fourth reference entity (default 1).
-target4normal: if set, the fourth reference entity's location is first projected onto a plane with that normal
-noise: path/name of .wav or .ogg file to play. Use looping sounds only (e.g. sound/world/drone6.wav - See Notes).
-dmg: damage a player who gets crushed by it receives
-dmgtime: interval to apply dmg to a player who is s in the way
-message: death message when a player gets crushed
-message2: death message when someone gets pushed into this (default: "was thrown into a world of hurt by"). The # character is replaced by the attacker name if present (and it instead does not get appended to the end)
--------- SPAWNFLAGS --------
-PROJECT_ON_TARGETNORMAL: target's origin is projected onto the given direction vector, not on the plane perpendicular to it
-PROJECT_ON_TARGET2NORMAL: target2's origin is projected onto the given direction vector, not on the plane perpendicular to it
-PROJECT_ON_TARGET3NORMAL: target3's origin is projected onto the given direction vector, not on the plane perpendicular to it
-PROJECT_ON_TARGET4NORMAL: target4's origin is projected onto the given direction vector, not on the plane perpendicular to it
-*/
-
-/*QUAKED trigger_relay_teamcheck (.5 .5 .5) (-8 -8 -8) (8 8 8) NOTEAM_TOO INVERT
-Works similar to trigger_relay, but only relays trigger events if the team of the activator matches this entity's team
--------- KEYS --------
-target: trigger all entities with this targetname when triggered
-target2: trigger all entities with this targetname when triggered
-target3: trigger all entities with this targetname when triggered
-target4: trigger all entities with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-delay: delay the triggering by the given time
-message: print this message to the player who activated the trigger
-killtarget: remove all entities with this targetname when triggered
-team: 5 for red, 14 for blue, 13 for yellow, 10 for pink team
--------- SPAWNFLAGS --------
-NOTEAM_TOO: also relay events if the activator has no team set
-INVERT: only relay the event if this entity has the matching team
-*/
-
-/*QUAKED trigger_disablerelay (.5 .5 .5) (-8 -8 -8) (8 8 8) 
-Disables a trigger_relay temporarily (until triggered again)
--------- KEYS --------
-target: disable/enable all relays with this targetname when triggered
-targetname: name that identifies this entity so it can be triggered
-*/
-
-/*QUAKED nexball_redgoal (1 0 0) ?
-Red goal. Defended by the red team.
--------- KEYS --------
-noise: sound played when a point is scored
--------- SPAWNFLAGS --------
-GOAL_TOUCHPLAYER: The trigger also affects ball-carrying players (the ball is then auto-dropped)
-*/
-
-/*QUAKED nexball_bluegoal (0 0 1) ?
-Blue goal. Defended by the blue team.
--------- KEYS --------
-noise: sound played when a point is scored
--------- SPAWNFLAGS --------
-GOAL_TOUCHPLAYER: The trigger also affects ball-carrying players (the ball is then auto-dropped)
-*/
-
-/*QUAKED nexball_yellowgoal (1 1 0) ?
-Yellow goal. Defended by the yellow team. Needs both red and blue goals on the map to work.
--------- KEYS --------
-noise: sound played when a point is scored
--------- SPAWNFLAGS --------
-GOAL_TOUCHPLAYER: The trigger also affects ball-carrying players (the ball is then auto-dropped)
-*/
-
-/*QUAKED nexball_pinkgoal (1 0 1) ?
-Pink goal. Defended by the pink team. Needs red, blue and yellow goals on the map to work.
--------- KEYS --------
-noise: sound played when a point is scored
--------- SPAWNFLAGS --------
-GOAL_TOUCHPLAYER: The trigger also affects ball-carrying players (the ball is then auto-dropped)
-*/
-
-
-/*QUAKED nexball_fault (0.6 0.1 0) ?
-This acts as a goal that always gives points to the opposing team.
--------- KEYS --------
-noise: sound played when a point is scored
--------- SPAWNFLAGS --------
-GOAL_TOUCHPLAYER: The trigger also affects ball-carrying players (the ball is then auto-dropped)
-*/
-
-/*QUAKED nexball_out (0.1 0.6 0) ?
-When the ball touches this, it is returned.
--------- KEYS --------
-noise: sound played when a point is scored
--------- SPAWNFLAGS --------
-GOAL_TOUCHPLAYER: The trigger also affects ball-carrying players (the ball is then auto-dropped)
-*/
-
-/*QUAKED nexball_football (.9 .9 .9) (-16 -16 -16) (16 16 16)
-The soccer type Nexball.
--------- KEYS --------
-model: set this if you want to use your own model
-scale: if you're using your own model, change this to scale it to 32*32*32
-noise: played when the ball bounces
-noise1: played when the ball is dropped on the map
-*/
-
-/*QUAKED nexball_basketball (.5 .2 0) (-16 -16 -16) (16 16 16)
-The basket ball type Nexball.
--------- KEYS --------
-model: set this if you want to use your own model
-scale: if you're using your own model, change this to scale it to 32*32*32
-noise: played when the ball bounces
-noise1: played when the ball is dropped on the map
-noise2: played when the ball is stolen from the enemy
-*/
-
-/*QUAKED item_fuel (.3 .3 1) (-30 -30 0) (30 30 32) FLOATING
-Jetpack fuel
--------- KEYS --------
-ammo_fuel: fuel units gained by this item (if unset, g_pickup_fuel is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_fuel.md3"
-*/
-
-/*QUAKED item_fuel_regen (1 .3 1) (-30 -30 0) (30 30 48) FLOATING
-Fuel regenerator
--------- KEYS --------
-respawntime: time till it respawns (default: 120)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_fuelregen.md3"
-*/
-
-/*QUAKED item_jetpack (.3 .3 1) (-30 -30 0) (30 30 48) FLOATING
-Jetpack
--------- KEYS --------
-ammo_fuel: fuel units gained by this item (if unset, g_pickup_fuel_jetpack is used)
-respawntime: time till it respawns (default: 120)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/items/g_jetpack.md3"
-*/
-
-/*QUAKED trigger_magicear (0 0 1) (-8 -8 -8) (8 8 8) IGNORE_SAY IGNORE_TEAMSAY IGNORE_TELL IGNORE_INVALIDTELL REPLACE_WHOLE_MESSAGE REPLACE_OUTSIDE CONTINUE NODECOLORIZE
-Triggers targets when a given magic word has been said
--------- KEYS --------
-message: message to wait for (can start or end with * for wildcards)
-netname: replacement text (by default, no replacement is performed if empty)
-radius: radius in which the player has to be for this to match
-target: all entities with a matching targetname will be triggered.
-target2: all entities with a matching targetname will be triggered.
-target3: all entities with a matching targetname will be triggered.
-target4: all entities with a matching targetname will be triggered.
--------- SPAWNFLAGS --------
-IGNORE_SAY: do not respond to "say" messages
-IGNORE_TEAMSAY: do not respond to "say_team" messages
-IGNORE_TELL: do not respond to "tell" messages
-IGNORE_INVALIDTELL: do not respond to "tell" messages of invalid syntax
-REPLACE_WHOLE_MESSAGE: replace the whole message by netname, or drop the message if netname is empty
-REPLACE_OUTSIDE: also perform the replacement when outside the radius (to hide the "secret word")
-CONTINUE: even if this magic ear matched, continue looking for further matches/replacements (useful for swear word filters)
-NODECOLORIZE: do not decolorize the input string before matching
-*/
-
-/*QUAKED weapon_fireball (1 0 .5) (-30 -30 0) (30 30 32) FLOATING
-the Fireball
--------- KEYS --------
-ammo_rockets: initial rockets of the weapon (if unset, g_pickup_rockets is used)
-respawntime: time till it respawns (default: 15)
-team: out of items with the same value here, only one (random one) will spawn. Useful to put multiple items on one spot.
-cnt: weight of this item for random selection using "team". Set to a lower value for items you want to see less likely.
--------- SPAWNFLAGS --------
-FLOATING: the item will float in air, instead of aligning to the floor by falling
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/weapons/g_fireball.md3"
-*/
-
-/*QUAKED trigger_warpzone (1 .5 1) ?
-A warp zone, i.e. seamlessly connecting two parts of the map.
-One surface of this entity must have the common/warpzone shader - this will be the warp plane - the others should be common/trigger.
-Must target, or be targeted by, another trigger_warpzone with a congruent common/warpzone surface.
-Should target a target_position, or be targeted by a misc_warpzone_position.
-Should be thick enough to fit a player entity (i.e. 32 units), preferably even thicker.
--------- KEYS --------
-target: must point to another trigger_warpzone, or...
-targetname: must be pointed to by another trigger_warpzone. Should be pointed to by a misc_warpzone_position entity, or...
-killtarget: should point to a target_position entity, or
-*/
-
-/*QUAKED misc_warpzone_position (1 .5 .25) (-8 -8 -8) (8 8 8) 
-Orientation specification for a trigger_warpzone
--------- KEYS --------
-target: must point to a trigger_warpzone
-angles: must point perpendicular to the common/warpzone surface of the trigger_warpzone, and away from the trigger brush
-origin: must be on the common/warpzone surface of the trigger_warpzone
-*/
-
-/*QUAKED func_camera (1 .5 1) ?
-A camera, i.e. a surface that shows a view from another part of the map.
-One surface of this entity must have the common/camera shader, the others should be common/caulk.
-Must target a target_position that indicates the view to be shown (and whose angles also indicate the orientation of the view)
--------- KEYS --------
-target: must point to a target_position
-*/
-
diff --git a/misc/netradiant-NexuizPack/nexuiz.game/data/turrets.def b/misc/netradiant-NexuizPack/nexuiz.game/data/turrets.def
deleted file mode 100644 (file)
index 08ba719..0000000
+++ /dev/null
@@ -1,246 +0,0 @@
-/*QUAKED turret_machinegun (1 0 0) (-32 -32 0) (32 32 50) - PILLAR
-Fast firing moderate damage bullet (hitscan) turret.
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/mg.md3"
-*/
-
-/*QUAKED turret_plasma (1 0 0) (-32 -32 0) (32 32 50) - PILLAR
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
----------NOTES----------
-Basic energy cannon
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/plasma.md3"
-*/
-
-/*QUAKED turret_plasma_dual (1 0 0) (-32 -32 0) (32 32 50) - PILLAR
-basic energy cannon * 2
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/plasma2.md3"
-*/
-
-/*QUAKED turret_flac (1 0 0) (-32 -32 0) (32 32 50) - PILLAR
-Only kills missiles, rockets, grenadelauncher & electro secondaries to be precise.
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/flac.md3"
-*/
-
-/*QUAKED turret_mlrs (1 0 0) (-32 -32 0) (32 32 50)
-6 unguided rockers fired in a rapid burst.
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/mlrs.md3"
-*/
-
-/*QUAKED turret_hellion (1 0 0) (-32 -32 0) (32 32 50)
-2 guided moderate damage accelerating rockets 
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/hellion.md3"
-*/
-
-
-/*QUAKED turret_hk (1 0 0) (-32 -32 0) (32 32 50)
-Single powerful rocket with the ability to evade obstacles to find its target. Varied speed.
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/hk.md3"
-*/
-
-/*QUAKED turret_tesla (1 0 0) (-32 -32 0) (32 32 50)
-Fires a lightning bolt that will jump to up to 10 targets if they are close enough to each other. Missiles included.
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/tesla.md3"
-*/
-
-/*QUAKED turret_phaser (1 0 0) (-32 -32 0) (32 32 50)
-Constant beam weapon that will considerably slow its target down while dealing low but constant damage.
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-master_name: This turret controls what all turrets with master_nameof set to this aim at
-master_nameof: Dont select own targets, use the target of the turret with this master_name
-target: Defend the position of this entity
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/phaser.md3"
-*/
-
-
-/*QUAKED turret_fusionreactor (1 0 0) (-32 -32 0) (32 32 50)
--------- KEYS --------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range: 2 = double range, 0.5 = half
-turret_scale_refire: 2 = double refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo: 2 = double ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim: 2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-team: 5=red, 14=blue
--------- SPAWNFLAGS --------
-PILLAR: Adds a supporting pillar under this turret, for turrets on terrain/uneven surfaces. (only for visuals)
----------NOTES----------
-Supplies neerby energy based turrets with more power so they can fire more often.
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/reactor.md3"
-*/
-
-/*QUAKED turret_targettrigger (.5 .5 .5) ?
-Used to feed turrets capable of it with remote target info. currently only turret_hk supports this.
-*/
-
-
-/*QUAKED turret_walker (1 0 0) (-32 -32 0) (32 32 50)
------------KEYS------------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range:  2 = double range, 0.5 = half
-turret_scale_refire: 2 = doubble refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo:   2 = doubble ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim:    2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-
-team : 5=red, 14=blue
------------SPAWNFLAGS-----------
----------NOTES----------
-
-A nasty mechanical ceature that will engage longrange target with missiles, midrange with its miniguna and meele things up close and personal.
-
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/walker.md3"
-*/
-
-
-/*QUAKED turret_ewheel (1 0 0) (-32 -32 0) (32 32 50)
------------KEYS------------
-turret_scale_damage: 2 = double damage, 0.5 = half
-turret_scale_range:  2 = double range, 0.5 = half
-turret_scale_refire: 2 = doubble refire (SLOWER!), 0.5 = half (FASTER!)
-turret_scale_ammo:   2 = doubble ammo carry & regen, 0.5 = half ammo carry & regen
-turret_scale_aim:    2 = aim twice as fast, 0,5 = aim at half speed
-turret_scale_health: 2 = double health, 0.5 = half
-
-team : 5=red, 14=blue
------------SPAWNFLAGS-----------
----------NOTES----------
-
-Small, agile and move capable turret.
-
--------- MODEL FOR RADIANT ONLY - DO NOT SET THIS AS A KEY --------
-model="models/turrets/radiant/ewheel.md3"
-*/
-
-
-/*QUAKED turret_checkpoint (1 0 1) (-32 -32 -32) (32 32 32)
------------KEYS------------
-target: .targetname of next wapoint in chain.
-wait:   Pause at this point # seconds.
------------SPAWNFLAGS-----------
-
----------NOTES----------
-If a loop is of targets are formed, any unit entering this loop will patrol it indefinitly.
-If the checkpoint chain in not looped, the unit will go "Roaming" when the last point is reached.
-*/
\ No newline at end of file
diff --git a/misc/netradiant-NexuizPack/nexuiz.game/default_build_menu.xml b/misc/netradiant-NexuizPack/nexuiz.game/default_build_menu.xml
deleted file mode 100644 (file)
index bb44de7..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-<?xml version="1.0"?>
-<!--
-build commands
-[RadiantPath]: path to Radiant .. C:\Program Files\Gtkradiant
-[EnginePath]: path to the engine .. C:\quake3\ C:\Program Files\Quake III Arena\ /usr/local/games/quake3/
--->
-<project version="2.0">
-<var name="q3map2">"[RadiantPath]q3map2.[ExecutableType]" -v<cond value="[MonitorAddress]"> -connect [MonitorAddress]</cond> -game nexuiz -fs_basepath "[EnginePath]"<cond value="[GameName]"> -fs_game [GameName]</cond></var>
-<build name="Q3Map2: (single) BSP">
-<command>[q3map2] -meta "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (single) -vis">
-<command>[q3map2] -vis "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (single) -light, low quality">
-<command>[q3map2] -light -deluxe -cheapgrid -faster "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (single) -light, medium quality">
-<command>[q3map2] -light -deluxe -fast "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (single) -light, high quality">
-<command>[q3map2] -light -deluxe -fast -samples 3 "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (single) -minimap">
-<command>[q3map2] -minimap "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (rebuild only entitys) ">
-<command>[q3map2] -onlyents "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (test)">
-<command>[q3map2] -meta -v -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -fast -samples 3 "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (test) fast vis, fast light">
-<command>[q3map2] -meta -v -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt -fast "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -faster -cheapgrid -filter "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (test) fast vis, good light">
-<command>[q3map2] -meta -v -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt -fast "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -fast -samples 2 "[MapFile]"</command>
-<command>[q3map2] -minimap "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (final) simple lighting">
-<command>[q3map2] -meta -v -samplesize 8 -minsamplesize 4 -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -fast -patchshadows -samples 2 "[MapFile]"</command>
-<command>[q3map2] -minimap "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (final) long distance lighting">
-<command>[q3map2] -meta -v -samplesize 8 -minsamplesize 4 -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -patchshadows -samples 3 "[MapFile]"</command>
-<command>[q3map2] -minimap "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (final) + radiosity (Nexuiz 2.4.2 default)">
-<command>[q3map2] -meta -v -samplesize 8 -minsamplesize 4 -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -patchshadows -samples 3 -bounce 8 -fastbounce -bouncegrid "[MapFile]"</command>
-<command>[q3map2] -minimap "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (final) + highres external lightmaps (Nexuiz 2.5 default, 2.5 required)">
-<command>[q3map2] -meta -v -samplesize 8 -minsamplesize 4 -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -patchshadows -samples 3 -lightmapsize 512 -bounce 8 -fastbounce -bouncegrid "[MapFile]"</command>
-<command>[q3map2] -minimap "[MapFile]"</command>
-</build>
-<build name="Q3Map2: (final) + ambient occlusion (Nexuiz 2.5 required)">
-<command>[q3map2] -meta -v -samplesize 8 -minsamplesize 4 -mv 1000000 -mi 6000000 "[MapFile]"</command>
-<command>[q3map2] -vis -saveprt "[MapFile]"</command>
-<command>[q3map2] -light -deluxe -patchshadows -samples 3 -lightmapsize 512 -bounce 8 -fastbounce -bouncegrid -dirty -dirtscale 2 "[MapFile]"</command>
-<command>[q3map2] -minimap "[MapFile]"</command>
-</build>
-</project>
-
diff --git a/misc/netradiant-NexuizPack/nexuiz.game/game.xlink b/misc/netradiant-NexuizPack/nexuiz.game/game.xlink
deleted file mode 100644 (file)
index 62b0f6d..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
-<!-- generated by Radiant setup, modify at your own risks -->
-<links>
-<item name="Nexuiz website" url="http://www.alientrap.org/nexuiz/"/>
-</links>
index 4d52563ec279e3290e88b3b216a11b9368056946..ccbe0bb862a507b41b0b85d1cf905b0e5408d636 100755 (executable)
@@ -4,12 +4,14 @@ set -e
 
 : ${CACHEDIR:=$HOME/.xonotic-cached-converter}
 : ${do_jpeg:=true}
+: ${do_jpeg_if_not_dds:=false}
 : ${jpeg_qual_rgb:=95}
 : ${jpeg_qual_a:=99}
 : ${do_dds:=true}
 : ${dds_tool:=compressonator-dxtc}
 : ${do_ogg:=false}
 : ${ogg_qual:=1}
+: ${del_src:=false}
 
 me=$0
 case "$me" in
@@ -25,6 +27,8 @@ tmpdir=`mktemp -d -t cached-converter.XXXXXX`
 trap 'exit 1' INT
 trap 'rm -rf "$tmpdir"' EXIT
 
+lastinfiles=
+lastinfileshash=
 cached()
 {
        flag=$1; shift
@@ -36,24 +40,34 @@ cached()
        if ! $flag; then
                return 0
        fi
+       if [ x"$infile1" = x"$outfile1" ]; then
+               keep=true
+       fi
        options=`echo "$*" | git hash-object --stdin`
-       sum=`git hash-object "$infile1"`
-       if [ -n "$infile2" ]; then
-               sum=$sum`git hash-object "$infile2"`
+       if [ x"$infile1/../$infile2" = x"$lastinfiles" ]; then
+               sum=$lastinfileshash
+       else
+               sum=`git hash-object "$infile1"`
+               if [ -n "$infile2" ]; then
+                       sum=$sum`git hash-object "$infile2"`
+               fi
+               lastinfileshash=$sum
        fi
        mkdir -p "$CACHEDIR/$method-$options"
        name1="$CACHEDIR/$method-$options/$sum-1.${outfile1##*.}"
        [ -z "$outfile2" ] || name2="$CACHEDIR/$method-$options/$sum-2.${outfile2##*.}"
        tempfile1="${name1%/*}/new-${name1##*/}"
        [ -z "$outfile2" ] || tempfile2="${name2%/*}/new-${name2##*/}"
-       if [ -f "$name1" ]; then
-               ln "$name1" "$outfile1" 2>/dev/null || cp "$name1" "$outfile1"
-               [ -z "$outfile2" ] || ln "$name2" "$outfile2" 2>/dev/null || cp "$name2" "$outfile2"
+       if [ -f "$name1" ] && { [ -z "$outfile2" ] || [ -f "$name2" ]; }; then
+               case "$outfile1" in */*) mkdir -p "${outfile1%/*}"; esac && { ln "$name1" "$outfile1" 2>/dev/null || cp "$name1" "$outfile1"; }
+               [ -z "$outfile2" ] || { case "$outfile2" in */*) mkdir -p "${outfile2%/*}"; esac && { ln "$name2" "$outfile2" 2>/dev/null || cp "$name2" "$outfile2"; }; }
+               conv=true
        elif "$method" "$infile1" "$infile2" "$tempfile1" "$tempfile2" "$@"; then
                mv "$tempfile1" "$name1"
                [ -z "$outfile2" ] || mv "$tempfile2" "$name2"
                case "$outfile1" in */*) mkdir -p "${outfile1%/*}"; esac && { ln "$name1" "$outfile1" 2>/dev/null || cp "$name1" "$outfile1"; }
                [ -z "$outfile2" ] || { case "$outfile2" in */*) mkdir -p "${outfile2%/*}"; esac && { ln "$name2" "$outfile2" 2>/dev/null || cp "$name2" "$outfile2"; }; }
+               conv=true
        else
                rm -f "$tempfile1"
                rm -f "$tempfile2"
@@ -66,8 +80,8 @@ reduce_jpeg2_dds()
        i=$1; shift
        ia=$1; shift
        o=$1; shift; shift 
-       convert "$i" "$ia" -compose CopyOpacity -composite "$tmpdir/x.png" && \
-       "$meprefix"compress-texture "$dds_tool" dxt5 "$tmpdir/x.png" "$o" $1
+       convert "$i" "$ia" -compose CopyOpacity -composite "$tmpdir/x.tga" && \
+       "$meprefix"compress-texture "$dds_tool" dxt5 "$tmpdir/x.tga" "$o" $1
 }
 
 reduce_jpeg2_jpeg2()
@@ -87,7 +101,7 @@ reduce_jpeg_jpeg()
        cp "$i" "$o" && jpegoptim --strip-all -m"$1" "$o"
 }
 
-reduce_ogg()
+reduce_ogg_ogg()
 {
        i=$1; shift; shift
        o=$1; shift; shift
@@ -95,11 +109,19 @@ reduce_ogg()
        oggenc -q"$1" -o "$o" "$tmpdir/x.wav"
 }
 
+reduce_wav_ogg()
+{
+       i=$1; shift; shift
+       o=$1; shift; shift
+       oggenc -q"$1" -o "$o" "$i"
+}
+
 reduce_rgba_dds()
 {
        i=$1; shift; shift
        o=$1; shift; shift
-       "$meprefix"compress-texture "$dds_tool" dxt5 "$i" "$o" $1
+       convert "$i" "$tmpdir/x.tga" && \
+       "$meprefix"compress-texture "$dds_tool" dxt5 "$tmpdir/x.tga" "$o" $1
 }
 
 reduce_rgba_jpeg2()
@@ -107,8 +129,8 @@ reduce_rgba_jpeg2()
        i=$1; shift; shift
        o=$1; shift
        oa=$1; shift
-       convert "$i" -alpha extract -quality 100 "$o" && \
-       convert "$i" -alpha off     -quality 100 "$oa" && \
+       convert "$i" -alpha off     -quality 100 "$o" && \
+       convert "$i" -alpha extract -quality 100 "$oa" && \
        jpegoptim --strip-all -m"$1" "$o" && \
        jpegoptim --strip-all -m"$2" "$oa"
 }
@@ -117,7 +139,8 @@ reduce_rgb_dds()
 {
        i=$1; shift; shift
        o=$1; shift; shift
-       "$meprefix"compress-texture "$dds_tool" dxt1 "$i" "$o" $1
+       convert "$i" "$tmpdir/x.tga" && \
+       "$meprefix"compress-texture "$dds_tool" dxt1 "$tmpdir/x.tga" "$o" $1
 }
 
 reduce_rgb_jpeg()
@@ -128,34 +151,105 @@ reduce_rgb_jpeg()
        jpegoptim --strip-all -m"$1" "$o"
 }
 
+has_alpha()
+{
+       i=$1; shift; shift
+       o=$1; shift; shift
+       if convert "$F" -depth 16 RGBA:- | perl -e 'while(read STDIN, $_, 8) { substr($_, 6, 2) eq "\xFF\xFF" or exit 1; } exit 0;'; then
+               # no alpha
+               : > "$o"
+       else
+               # has alpha
+               echo yes > "$o"
+       fi
+}
 
+to_delete=
 for F in "$@"; do
+       f=${F%.*}
+
+       echo >&2 "Handling $F..."
+       conv=false
+       keep=false
+
+       will_jpeg=$do_jpeg
+       will_dds=$do_dds
+       case "$f" in
+               ./models/player/*) will_dds=false ;;
+               ./textures/*) ;;
+               ./models/*) ;;
+               ./particles/*) ;;
+               ./progs/*) ;;
+               *)
+                       # we can't DDS compress the 2D textures, sorry
+                       # but JPEG is still fine
+                       will_dds=false
+                       ;;
+       esac
+
+       if $do_jpeg_if_not_dds; then
+               if $will_dds; then
+                       will_jpeg=false
+               else
+                       will_jpeg=true
+               fi
+       fi
+
        case "$F" in
-       *_alpha.jpg)
-               # handle in *.jpg case
-               ;;
-       *.jpg)
-               if [ -f "${F%.jpg}_alpha.jpg" ]; then
-                       cached "$do_dds"  reduce_jpeg2_dds   "$F" "${F%.*}_alpha.jpg" "dds/${F%.*}.dds" ""                  "$dds_flags"
-                       cached "$do_jpeg" reduce_jpeg2_jpeg2 "$F" "${F%.*}_alpha.jpg" "$F"              "${F%.*}_alpha.jpg" "$jpeg_qual_rgb"
-               else                                   
-                       cached "$do_dds"  reduce_rgb_dds     "$F" ""                  "dds/${F%.*}.dds" ""                  "$dds_flags"
-                       cached "$do_jpeg" reduce_jpeg_jpeg   "$F" ""                  "$F"              ""                  "$jpeg_qual_rgb"
+               *_alpha.jpg)
+                       # handle in *.jpg case
+
+                       # they always got converted, I assume
+                       if $will_dds || $will_jpeg; then
+                               conv=true
+                       fi
+                       keep=$will_jpeg
+                       ;;
+               *.jpg)
+                       if [ -f "${f}_alpha.jpg" ]; then
+                               cached "$will_dds"  reduce_jpeg2_dds   "$F" "${f}_alpha.jpg" "dds/${f}.dds" ""               "$dds_flags"
+                               cached "$will_jpeg" reduce_jpeg2_jpeg2 "$F" "${f}_alpha.jpg" "$F"           "${f}_alpha.jpg" "$jpeg_qual_rgb" "$jpeg_qual_a"
+                       else                                   
+                               cached "$will_dds"  reduce_rgb_dds     "$F" ""               "dds/${f}.dds" ""               "$dds_flags"
+                               cached "$will_jpeg" reduce_jpeg_jpeg   "$F" ""               "$F"           ""               "$jpeg_qual_rgb"
+                       fi
+                       ;;
+               *.png|*.tga)
+                       cached true has_alpha "$F" "" "$F.hasalpha" ""
+                       conv=false
+                       if [ -s "$F.hasalpha" ]; then
+                               cached "$will_dds"  reduce_rgba_dds    "$F" ""               "dds/${f}.dds" ""               "$dds_flags"
+                               cached "$will_jpeg" reduce_rgba_jpeg2  "$F" ""               "${f}.jpg"     "${f}_alpha.jpg" "$jpeg_qual_rgb" "$jpeg_qual_a"
+                       else                                                             
+                               cached "$will_dds"  reduce_rgb_dds     "$F" ""               "dds/${f}.dds" ""               "$dds_flags"
+                               cached "$will_jpeg" reduce_rgb_jpeg    "$F" ""               "${f}.jpg"     ""               "$jpeg_qual_rgb"
+                       fi
+                       rm -f "$F.hasalpha"
+                       ;;
+               *.ogg)
+                       cached "$do_ogg" reduce_ogg_ogg "$F" "" "$F" "" "$ogg_qual"
+                       ;;
+               *.wav)
+                       cached "$do_ogg" reduce_wav_ogg "$F" "" "$F" "" "$ogg_qual"
+                       ;;
+       esac
+       if $del_src; then
+               if $conv; then
+                       if ! $keep; then
+                               # FIXME can't have spaces in filenames that way
+                               to_delete="$to_delete $F"
+                       fi
                fi
-               ;;
-       *.png|*.tga)
-               if convert "$F" -depth 16 RGBA:- | perl -e 'while(read STDIN, $_, 8) { substr($_, 6, 2) eq "\xFF\xFF" or exit 1; } exit 0;'; then
-                       cached "$do_dds"  reduce_rgb_dds     "$F" ""                  "dds/${F%.*}.dds" ""                  "$dds_flags"
-                       cached "$do_jpeg" reduce_rgb_jpeg    "$F" ""                  "${F%.*}.jpg"     ""                  "$jpeg_qual_rgb"
-                       rm -f "$F"
-               else                                                             
-                       cached "$do_dds"  reduce_rgba_dds    "$F" ""                  "dds/${F%.*}.dds" ""                  "$dds_flags"
-                       cached "$do_jpeg" reduce_rgba_jpeg2  "$F" ""                  "${F%.*}.jpg"     "${F%.*}_alpha.jpg" "$jpeg_qual_rgb" "$jpeg_qual_a"
-                       rm -f "$F"
+       fi
+       # fix up DDS paths by a symbolic link
+       if [ -f "dds/${f}.dds" ]; then
+               if [ -z "${f##./textures/*}" ]; then
+                       if [ -n "${f##./textures/*/*}" ]; then
+                               ln -snf "textures/${f#./textures/}.dds" "dds/${f#./textures/}.dds"
+                       fi
                fi
-               ;;
-       *.ogg)
-               cached "$do_ogg" reduce_ogg "$F" "" "$F" "" "$ogg_qual"
-               ;;
-       esac
+       fi
+done
+for F in $to_delete; do
+       rm -f "$F"
 done
index 0cafa5a2ea815e19dbf1f597e26517b743e39a87..743992215a8af6548c0b1c99da307db88328360d 100755 (executable)
@@ -3,6 +3,8 @@
 # usage: compress-texture tool compression in.png out.dds
 # example: compress-texture compressonator dxt1 foo.jpg foo.dds
 
+echo >&2 "$0 $*"
+
 tool=$1; shift
 format=$1; shift
 src=$1; shift
@@ -25,9 +27,16 @@ case "$tool" in
                dir_dos="C:/${dir##*/}"
                ext=${src##*.}
                cp "$src" "$dir/src.$ext"
-               DISPLAY= wine "$HOME/.wine/drive_c/Program Files/AMD/The Compressonator 1.50/TheCompressonator.exe" -convert -mipmaps "$dir_dos/src.$ext" "$dir_dos/dst.dds" $c $f "$@" -mipper BoxFilter.dll
-               mv "$dir/dst.dds" "$dst"
+
+               # compressonator and wine suck, so we sometimes have to retry :(
+               for retry in 1 2 3 4 5; do
+                       wine "c:/Program Files/AMD/The Compressonator 1.50/TheCompressonator.exe" -convert -mipmaps "$dir_dos/src.$ext" "$dir_dos/dst.dds" $c $f "$@" -mipper BoxFilter.dll
+                       if mv "$dir/dst.dds" "$dst"; then
+                               break
+                       fi
+               done
                rm -rf "$dir"
+               [ -f "$dst" ]
                ;;
        nvcompress)
                case "$format" in
diff --git a/misc/tools/rebrand-darkplaces-engine.sh b/misc/tools/rebrand-darkplaces-engine.sh
new file mode 100755 (executable)
index 0000000..8208d48
--- /dev/null
@@ -0,0 +1,130 @@
+#!/bin/sh
+
+# all these shall be defined in a .brand file passed as first argument
+flags="-quake"
+name=DarkPlaces-Quake
+dirname1=id1
+dirname2=
+screenshotname=dp
+userdirname=darkplaces
+icon_icns=Darkplaces.app/Contents/Resources/Darkplaces.icns
+icon_ico=darkplaces.ico
+icon_xpm=darkplaces.xpm
+
+. "$1"; shift
+
+d=`pwd`
+t=`mktemp -d -t darkplaces-rebrand.XXXXXX`
+
+flags="$flags -customgamename \"$name\" -customgamedirname1 \"$dirname1\" -customgamedirname2 \"$dirname2\" -customgamescreenshotname \"$screenshotname\" -customgameuserdirname \"$userdirname\""
+echo "$flags" > "$t/darkplaces.opt"
+
+cd "$t"
+zip -9r darkplaces.zip darkplaces.opt
+rm -f darkplaces.opt
+cd "$d"
+
+for EXECUTABLE in "$@"; do
+       uses_xpm=false
+       uses_ico=false
+       uses_icns=false
+
+       # detect what the executable is
+       case "`file -b "$EXECUTABLE"`" in
+               *ELF*)
+                       case "$EXECUTABLE" in
+                               *-dedicated)
+                                       ;;
+                               *)
+                                       uses_xpm=true
+                                       ;;
+                       esac
+                       ;;
+               *Mach*)
+                       uses_icns=true
+                       case "$EXECUTABLE" in
+                               *-sdl)
+                                       uses_xpm=true
+                                       ;;
+                               *)
+                                       ;;
+                       esac
+                       ;;
+               *PE*)
+                       uses_ico=true
+                       ;;
+       esac
+
+       # add a selfpack
+       cp "$t/darkplaces.zip" "$t/darkplaces-this.zip"
+
+       if $uses_xpm; then
+               cp "$icon_xpm" "$t/darkplaces-icon.xpm"
+               cd "$t"
+               zip -9r darkplaces-this.zip darkplaces-icon.xpm
+               cd "$d"
+       fi
+
+       if $uses_ico; then
+               cp "$icon_ico" "$t/darkplaces-icon.ico"
+               cp "$EXECUTABLE" "$t/darkplaces.exe"
+               cat >"$t/darkplaces.rc" <<EOF
+#include <windows.h> // include for version info constants
+
+A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "darkplaces-icon.ico"
+
+1 VERSIONINFO
+FILEVERSION 1,0,0,0
+PRODUCTVERSION 1,0,0,0
+FILETYPE VFT_APP
+{
+  BLOCK "StringFileInfo"
+        {
+                BLOCK "040904E4"
+                {
+                        VALUE "CompanyName", "Forest Hale Digital Services"
+                        VALUE "FileVersion", "1.0"
+                        VALUE "FileDescription", "$name"
+                        VALUE "InternalName", "${EXECUTABLE##*/}"
+                        VALUE "LegalCopyright", "id Software, Forest Hale, and contributors"
+                        VALUE "LegalTrademarks", ""
+                        VALUE "OriginalFilename", "${EXECUTABLE##*/}"
+                        VALUE "ProductName", "$name"
+                        VALUE "ProductVersion", "1.0"
+                }
+        }
+}
+EOF
+               cd "$t"
+               wine "c:/Program Files/ResEdit/ResEdit.exe" -convert darkplaces.rc darkplaces.exe
+               cd "$d"
+               mv "$t/darkplaces.exe" "$EXECUTABLE"
+       fi
+
+       if $uses_icns; then
+               # OS X is special here
+               case "$EXECUTABLE" in
+                       */*)
+                               pkgdir="${EXECUTABLE%/*}/.."
+                               ;;
+                       *)
+                               pkgdir=..
+                               ;;
+               esac
+               if [ -d "$pkgdir/Resources" ]; then
+                       cp "$icon_icns" "$pkgdir/Resources/Darkplaces.icns"
+                       cat <<EOF >"$pkgdir/Resources/English.lproj/InfoPlist.strings"
+/* Localized versions of Info.plist keys */
+
+CFBundleName = "$name";
+CFBundleShortVersionString = "$name";
+CFBundleGetInfoString = "Darkplaces by Forest 'LordHavoc' Hale";
+NSHumanReadableCopyright = "Copyright `date +%Y`";
+EOF
+               fi
+       fi
+
+       cat "$t/darkplaces-this.zip" >> "$EXECUTABLE"
+done
+
+rm -rf "$t"
index 427ee97103200293a248bcd4f57ebb6a6271a207..58c8e6c7aa59b691bbd0ad40216b43ae8f1b3a59 100755 (executable)
@@ -16,7 +16,7 @@ use File::Temp;
        our $Q3MAP2      = '/home/rpolzer/Games/Xonotic/netradiant/install/q3map2.x86';
 
        # General flags for q3map2 (for example -threads 4)
-       our $Q3MAP2FLAGS = '';
+       our $Q3MAP2FLAGS = '-fs_forbiddenpath xonotic-data.pk3 -fs_forbiddenpath xonotic-data.pk3dir -fs_forbiddenpath xonotic-nexcompat.pk3 -fs_forbiddenpath xonotic-nexcompat.pk3dir';
 
        # Default flags for the -bsp stage
        our $BSPFLAGS    = '-meta -samplesize 8 -minsamplesize 4 -mv 1000000 -mi 6000000';
diff --git a/misc/tools/xonotic.brand b/misc/tools/xonotic.brand
new file mode 100644 (file)
index 0000000..14ac4fc
--- /dev/null
@@ -0,0 +1,9 @@
+flags="-nexuiz"
+name=Xonotic
+dirname1=data
+dirname2=
+screenshotname=xonotic
+userdirname=xonotic
+icon_icns="$d0/misc/logos/icons_icns/xonotic.icns"
+icon_ico="$d0/misc/logos/icons_ico/xonotic_64.ico"
+icon_xpm="$d0/misc/logos/icons_xpm/xonotic_32.xpm"
index 5461a4cc196b5cfed3901c11907eb815a7c83b6f..020970497116e080a5a0946a88473139f953b8cd 100755 (executable)
@@ -12,11 +12,11 @@ case "${0##*/}" in
 esac
 
 case "$(uname -m)" in
-  x86_64)      arch="x86_64" ;;
-  *)           arch="686" ;;
+  x86_64)      arch="linux64" ;;
+  *)           arch="linux32" ;;
 esac
 
-xonotic="xonotic-linux-${arch}-${mode}"
+xonotic="xonotic-${arch}-${mode}"
 
 set -- ./${xonotic} "${@}"