]> git.xonotic.org Git - xonotic/xonotic.git/blob - all
./all: drop into gdb if a crash happened and gdb is available (otherwise keep using...
[xonotic/xonotic.git] / all
1 #!/bin/sh
2 # vim: filetype=zsh
3
4 set -e
5
6 # I use this in EVERY shell script ;)
7 LF="
8 "
9
10 d00=`pwd`
11 while ! [ -f ./all ]; do
12         if [ x"`pwd`" = x"/" ]; then
13                 echo "Cannot find myself."
14                 echo "Please run this script with the working directory inside a Xonotic checkout."
15                 exit 1
16         fi
17         cd ..
18 done
19 export d0=`pwd`
20 SELF="$d0/all"
21
22 # If we are on WINDOWS:
23 case "$0" in
24         all|*/all)
25                 case "`uname`" in
26                         MINGW*|Win*)
27                                 # Windows hates users. So this script has to copy itself elsewhere first...
28                                 cp "$SELF" ../all.xonotic.sh
29                                 export WE_HATE_OUR_USERS=1
30                                 exec ../all.xonotic.sh "$@"
31                                 ;;
32                 esac
33                 ;;
34 esac
35
36 msg()
37 {
38         echo >&2 "\e[1m$*\e[m"
39 }
40
41 self=`git hash-object "$SELF"`
42 checkself()
43 {
44         self_new=`git hash-object "$SELF"`
45         if [ x"$self" != x"$self_new" ]; then
46                 msg "./all has changed."
47                 if [ -z "$XONOTIC_FORBID_RERUN_ALL" ]; then
48                         msg "Rerunning the requested operation to make sure."
49                         export XONOTIC_FORBID_RERUN_ALL=1
50                         exec "$SELF" "$@"
51                 else
52                         msg "Please try $SELF update, and then retry your requested operation."
53                         exit 1
54                 fi
55         fi
56         return 0
57 }
58
59 verbose()
60 {
61         msg "+ $*"
62         "$@"
63 }
64
65 visible_repo_name()
66 {
67         case "$1" in
68                 .)
69                         echo "the root directory"
70                         ;;
71                 *)
72                         echo "\"$1\""
73                         ;;
74         esac
75 }
76
77 check_mergeconflict()
78 {
79         if git ls-files -u | grep ' 1   '; then
80                 echo
81                 echo "MERGE CONFLICT."
82                 echo "change into the \"$1\" project directory, and then:"
83                 echo "- edit the files mentioned above with your favorite editor,"
84                 echo "  and fix the conflicts (marked with <<<<<<< blocks)"
85                 echo "- for binary files, you can select the files using"
86                 echo "  git checkout --ours or git checkout --theirs"
87                 echo "- when done with a file, 'git add' the file"
88                 echo "- when done, 'git commit'"
89                 echo
90                 exit 1
91         fi
92 }
93
94 yesno()
95 {
96         yesno=
97         while [ x"$yesno" != x"y" -a x"$yesno" != x"n" ]; do
98                 eval "$2"
99                 echo "$1"
100                 IFS= read -r yesno
101         done
102         [ x"$yesno" = x"y" ]
103 }
104
105 enter()
106 {
107         $2 cd "$1" || exit 1
108         check_mergeconflict "$1"
109 }
110
111 repos_urls="
112 .                             |                                                   | master      |
113 data/xonotic-data.pk3dir      |                                                   | master      |
114 data/xonotic-music.pk3dir     |                                                   | master      |
115 data/xonotic-nexcompat.pk3dir |                                                   | master      | no
116 darkplaces                    |                                                   | div0-stable | svn
117 netradiant                    |                                                   | master      |
118 div0-gittools                 |                                                   | master      | no
119 data/xonotic-maps.pk3dir      |                                                   | master      |
120 mediasource                   |                                                   | master      | no
121 fteqcc                        | http://github.com/Blub/qclib.git                  | master      |
122 "
123 # todo: in darkplaces, change repobranch to div0-stable
124
125 repos=`echo "$repos_urls" | grep . | cut -d '|' -f 1 | tr -d ' '`
126
127 base=`git config remote.origin.url`
128 case "$base" in
129         */xonotic.git)
130                 base=${base%xonotic.git}
131                 ;;
132         *)
133                 echo "The main repo is not xonotic.git, what have you done?"
134                 exit 1
135                 ;;
136 esac
137
138 repourl()
139 {
140         repo_t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 2 | tr -d ' '`
141         if [ -n "$repo_t" ]; then
142                 case "$repo_t" in
143                         *://*)
144                                 echo "$repo_t"
145                                 ;;
146                         *)
147                                 echo "$base$repo_t"
148                                 ;;
149                 esac
150         else
151                 if [ x"$1" = x"." ]; then
152                         echo "$base""xonotic.git"
153                 else
154                         echo "$base${1##*/}.git"
155                 fi
156         fi
157 }
158
159 repobranch()
160 {
161         repo_t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 3 | tr -d ' '`
162         if [ -n "$repo_t" ]; then
163                 echo "$repo_t"
164         else
165                 echo "master"
166         fi
167 }
168
169 repoflags()
170 {
171         echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 4 | tr -d ' '
172 }
173
174 listrepos()
175 {
176         for d in $repos; do
177                 p="${d%dir}"
178                 f="`repoflags "$d"`"
179                 # if we have the dir, always keep it
180                 if [ -d "$d" ]; then
181                         msg "Repository $d enabled because it already exists"
182                         echo "$d"
183                         continue
184                 fi
185                 # if .yes file exists, always keep it
186                 if [ -f "$d.yes" ]; then
187                         msg "Repository $d enabled by a .yes file"
188                         echo "$d"
189                         continue
190                 fi
191                 # if we have .no file, skip
192                 if [ -f "$d.no" ]; then
193                         msg "Repository $d disabled by a .no file, delete $p.no to enable"
194                         continue
195                 fi
196                 # if we have matching pk3, skip
197                 if [ x"$p" != x"$d" ] && [ -f "$p" ]; then
198                         msg "Repository $d disabled by matching .pk3 file, delete $p or create $d.yes to enable"
199                         continue
200                 fi
201                 # if "no" flag is set, skip
202                 case ",$f," in
203                         *,no,*)
204                                 msg "Repository $d disabled by default, create $d.yes to enable"
205                                 continue
206                                 ;;
207                 esac
208                 # default: enable
209                 msg "Repository $d enabled by default"
210                 echo "$d"
211         done
212 }
213
214 repos=`listrepos`
215
216 if [ "$#" = 0 ]; then
217         set -- help
218 fi
219 cmd=$1
220 shift
221
222 fix_upstream_rebase()
223 {
224         if [ -z "$r_me" ] || [ -z "$r_other" ]; then
225                 return
226         fi
227         r_base=`git merge-base "$r_me" "$r_other"`
228
229         # no merge-base? upstream did filter-branch
230         if [ -n "$r_base" ]; then
231                 # otherwise, check if the two histories are "similar"
232                 r_l_me=`git log --pretty="format:%s" "$r_other".."$r_me" | grep -v "^Merge" | sort -u`
233                 r_l_other=`git log --pretty="format:%s" "$r_me".."$r_other" | grep -v "^Merge" | sort -u`
234
235                 # heuristics: upstream rebase/filter-branch if more than 50% of the commits of one of the sides are in the other too
236                 r_lc_me=`echo "$r_l_me" | wc -l`
237                 r_lc_other=`echo "$r_l_other" | wc -l`
238                 r_lc_together=`{ echo "$r_l_me"; echo "$r_l_other"; } | sort -u | wc -l`
239                 r_lc_same=$(($r_lc_me + $r_lc_other - $r_lc_together))
240
241                 if [ $(( $r_lc_same * 2 )) -gt $(( $r_lc_me )) ] || [ $(( $r_lc_same * 2 )) -gt $(( $r_lc_other )) ]; then
242                         if yesno "Probable upstream rebase detected, automatically fix?" 'git log --oneline --graph --date-order --left-right "$r_other"..."$r_me"'; then
243                                 git reset --hard "$r_me"
244                                 git pull --rebase
245                                 return 1
246                         fi
247                 fi
248         fi
249
250         return 0
251 }
252
253 fix_upstream_rebase_mergeok()
254 {
255         r_me=`git rev-parse --revs-only HEAD^1 2>/dev/null || true`
256         r_other=`git rev-parse --revs-only HEAD^2 2>/dev/null || true`
257         fix_upstream_rebase
258 }
259
260 fix_upstream_rebase_mergefail()
261 {
262         r_me=`git rev-parse --revs-only HEAD 2>/dev/null || true`
263         r_other=`git rev-parse --revs-only MERGE_HEAD 2>/dev/null || true`
264         fix_upstream_rebase
265 }
266
267 fix_git_config()
268 {
269         verbose git config core.autocrlf input
270         if [ -z "`git config push.default`" ]; then
271                 verbose git config push.default current # or is tracking better?
272         fi
273 }
274
275 mkzip()
276 {
277         archive=$1
278         shift
279         ziplist=`mktemp`
280         find "$@" -xtype f \( -executable -or -type l \) -print > "$ziplist"
281         7za a -tzip -mx=9 -x@"$ziplist" "$archive" "$@" || true
282         zip         -9y   -@<"$ziplist" "$archive"      || true
283         rm -f "$ziplist"
284 }
285
286 mkzip0()
287 {
288         zip -0y "$@"
289 }
290
291 case "$cmd" in
292         fix_upstream_rebase)
293                 for d in $repos; do
294                         enter "$d0/$d" verbose
295                         verbose fix_upstream_rebase_mergefail && verbose fix_upstream_rebase_mergeok
296                 done
297                 ;;
298         update|pull)
299                 allow_pull=true
300                 if [ x"$1" = x"-N" ]; then
301                         allow_pull=false
302                 fi
303                 for d in $repos; do
304                         url=`repourl "$d"`
305                         branch=`repobranch "$d"`
306                         if [ -d "$d0/$d" ]; then
307                                 if $allow_pull; then
308                                         enter "$d0/$d" verbose
309                                         fix_git_config
310                                         verbose git config remote.origin.url "$url"
311                                         verbose git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
312                                         r=`git symbolic-ref HEAD`
313                                         r=${r#refs/heads/}
314                                         if git config branch.$r.remote >/dev/null 2>&1; then
315                                                 if ! verbose git pull; then
316                                                         fix_upstream_rebase_mergefail || true
317                                                         check_mergeconflict "$d"
318                                                         echo "Pulling failed. Press ENTER to continue, or Ctrl-C to abort."
319                                                         read -r DUMMY
320                                                 else
321                                                         fix_upstream_rebase_mergeok || true
322                                                 fi
323                                         fi
324
325                                         cd "$d00"
326                                         checkself "$cmd" "$@"
327                                         cd "$d0/$d"
328                                         verbose git remote prune origin
329                                         cd "$d0"
330                                 fi
331                         else
332                                 verbose git clone "$url" "$d0/$d"
333                                 enter "$d0/$d" verbose
334                                 fix_git_config
335                                 if [ "$branch" != "master" ]; then
336                                         verbose git checkout --track -b "$branch" origin/"$branch"
337                                 fi
338                                 cd "$d0"
339                         fi
340                 done
341                 ;;
342         update-maps)
343                 misc/tools/xonotic-map-compiler-autobuild download
344                 ;;
345         checkout|switch)
346                 checkoutflags=
347                 if [ x"$1" = x"-f" ]; then
348                         checkoutflags=-f
349                         shift
350                 fi
351                 remote=$1
352                 branch=$2
353                 if [ -z "$branch" ]; then
354                         case "$remote" in
355                                 origin/*)
356                                         branch=${remote#origin/}
357                                         remote=origin
358                                         ;;
359                                 *)
360                                         branch=$remote
361                                         remote=origin
362                                         ;;
363                         esac
364                 fi
365                 exists=false
366                 for d in $repos; do
367                         enter "$d0/$d" verbose
368                         b=$branch
369                         if [ -n "$b" ] && git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
370                                 exists=true
371                                 verbose git checkout $checkoutflags "$b"
372                         elif [ -n "$b" ] && git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
373                                 exists=true
374                                 verbose git checkout $checkoutflags --track -b "$b" "$remote/$b"
375                         else
376                                 b=`repobranch "$d"`
377                                 if git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
378                                         exists=true
379                                         verbose git checkout $checkoutflags "$b"
380                                 elif git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
381                                         exists=true
382                                         verbose git checkout $checkoutflags --track -b "$b" "$remote/$b"
383                                 else
384                                         echo "WTF? Not even branch $b doesn't exist in $d"
385                                         exit 1
386                                 fi
387                         fi
388                         cd "$d00"
389                         checkself "$cmd" "$@"
390                         cd "$d0"
391                 done
392                 if ! $exists; then
393                         echo "The requested branch was not found in any repository."
394                 fi
395                 exec "$SELF" branch
396                 ;;
397         branch)
398                 remote=$1
399                 branch=$2
400                 srcbranch=$3
401                 if [ -z "$branch" ]; then
402                         branch=$remote
403                         remote=origin
404                 fi
405                 if [ -z "$branch" ]; then
406                         for d in $repos; do
407                                 enter "$d0/$d"
408                                 r=`git symbolic-ref HEAD`
409                                 r=${r#refs/heads/}
410                                 echo "$d is at $r"
411                                 cd "$d0"
412                         done
413                 else
414                         for d in $repos; do
415                                 dv=`visible_repo_name "$d"`
416                                 enter "$d0/$d" verbose
417                                 if git rev-parse "refs/heads/$branch" >/dev/null 2>&1; then
418                                         echo "Already having this branch in $dv."
419                                 else
420                                         if yesno "Branch in $dv?"; then
421                                                 if [ -n "$srcbranch" ]; then
422                                                         b=$srcbranch
423                                                 else
424                                                         b=origin/"`repobranch "$d"`"
425                                                         verbose git fetch origin || true
426                                                 fi
427                                                 # TODO do this without pushing
428                                                 verbose git checkout -b "$branch" "$b"
429                                                 verbose git config "branch.$branch.remote" "$remote"
430                                                 verbose git config "branch.$branch.merge" "refs/heads/$branch"
431                                         fi
432                                 fi
433                                 cd "$d0"
434                         done
435                         "$SELF" branch
436                 fi
437                 ;;
438         branches)
439                 for d in $repos; do
440                         cd "$d0/$d" # am in a pipe, shouldn't use enter
441                         git branch -r -v -v | cut -c 3- | sed "s/^(no branch)/(no_branch)/" | sed "s,^,$d ,"
442                         cd "$d0"
443                 done | {
444                         branches_list=
445                         # branches_repos_*=
446                         while read -r d BRANCH REV TEXT; do
447                                 if [ x"$BRANCH" = x"`repobranch "$d"`" ]; then
448                                         continue
449                                 fi
450                                 if [ x"$REV" = x"->" ]; then
451                                         continue
452                                 fi
453                                 BRANCH=${BRANCH#remotes/}
454                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
455                                 branches_list="$branches_list $BRANCH" # TEH SORT MAKEZ IT UNIEQ
456                                 eval "r=\$branches_repos_$ID"
457                                 r="$r $d"
458                                 eval "branches_repos_$ID=\$r"
459                         done
460                         echo -n "$branches_list" | xargs -n 1 echo | sort -u | while IFS= read -r BRANCH; do
461                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
462                                 eval "r=\$branches_repos_$ID"
463                                 printf "%-60s %s\n" "$BRANCH" "$r"
464                                 #echo "$BRANCH: $r"
465                         done
466                 }
467                 ;;
468         merge)
469                 for d in $repos; do
470                         dv=`visible_repo_name "$d"`
471                         enter "$d0/$d" verbose
472                         r=`git symbolic-ref HEAD`
473                         r=${r#refs/heads/}
474                         if git log HEAD..origin/"`repobranch "$d"`" | grep .; then
475                                 # we have uncommitted changes
476                                 if yesno "Could merge from \"`repobranch "$d"`\" into \"$r\" in $dv. Do it?"; then
477                                         if ! verbose git merge origin/"`repobranch "$d"`"; then
478                                                 check_mergeconflict "$d"
479                                                 exit 1 # this should ALWAYS be fatal
480                                         fi
481                                 fi
482                         fi
483                         cd "$d0"
484                 done
485                 ;;
486         push|commit)
487                 submit=$1
488                 for d in $repos; do
489                         dv=`visible_repo_name "$d"`
490                         enter "$d0/$d" verbose
491                         r=`git symbolic-ref HEAD`
492                         r=${r#refs/heads/}
493                         diffdata=`git diff --color HEAD`
494                         if [ -n "$diffdata" ]; then
495                                 # we have uncommitted changes
496                                 if yesno "Uncommitted changes in \"$r\" in $dv. Commit?" 'echo "$diffdata" | less -r'; then
497                                         verbose git commit -a
498                                 fi
499                         fi
500                         rem=`git config "branch.$r.remote" || echo origin`
501                         bra=`git config "branch.$r.merge" || echo "$r"`
502                         upstream="$rem/${bra#refs/heads/}"
503                         if ! git rev-parse "$upstream" >/dev/null 2>&1; then
504                                 upstream="origin/`repobranch "$d"`"
505                         fi
506                         logdata=`git log --color "$upstream".."$r"`
507                         if [ -n "$logdata" ]; then
508                                 if yesno "Push \"$r\" in $dv?" 'echo "$logdata" | less -r'; then
509                                         verbose git push "$rem" HEAD
510                                 fi
511                         fi
512                         if [ x"$submit" = x"-s" ]; then
513                                 case "$r" in
514                                         */*)
515                                                 verbose git push "$rem" HEAD:"${bra%%/*}/finished/${bra#*/}"
516                                                 ;;
517                                 esac
518                         fi
519                         cd "$d0"
520                 done
521                 ;;
522         compile)
523                 if [ -n "$WE_HATE_OUR_USERS" ]; then
524                         TARGETS="sv-debug cl-debug"
525                         if [ -z "$CC" ]; then
526                                 export CC=gcc
527                         fi
528                 elif [ x"`uname`" = x"Darwin" ]; then
529                         case "`uname -r`" in
530                                 ?.*)
531                                         TARGETS="sv-debug cl-debug sdl-debug"
532                                         ;;
533                                 *)
534                                         # AGL cannot be compiled on systems with a kernel > 10.x (Snow Leopard)
535                                         TARGETS="sv-debug sdl-debug"
536                                         ;;
537                         esac
538                         export CC="gcc -I$PWD/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks/SDL.framework/Headers -F$PWD/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks"
539                 else
540                         TARGETS="sv-debug cl-debug sdl-debug"
541                 fi
542                 case "$1" in
543                         -c)
544                                 cleandp=true
545                                 cleanqcc=true
546                                 cleanqc=true
547                                 shift
548                                 ;;
549                         *)
550                                 cleandp=false
551                                 cleanqcc=false
552                                 cleanqc=false
553                                 ;;
554                 esac
555                 if [ $# -gt 0 ] && [ x"$1" = x"" ]; then
556                         # if we give the command make the arg "", it will surely fail (invalid filename),
557                         # so better handle it as an empty client option
558                         BAD_TARGETS=" "
559                         shift
560                 elif [ -n "$1" ]; then
561                         BAD_TARGETS=
562                         TARGETS_SAVE=$TARGETS
563                         TARGETS=
564                         for X in $1; do
565                                 case "$X" in
566                                         sdl)
567                                                 TARGETS="$TARGETS sdl-debug"
568                                                 ;;
569                                         glx|agl|wgl)
570                                                 TARGETS="$TARGETS cl-debug"
571                                                 ;;
572                                         dedicated)
573                                                 TARGETS="$TARGETS sv-debug"
574                                                 ;;
575                                         *)
576                                                 BAD_TARGETS="$BAD_TARGETS $X"
577                                                 ;;
578                                 esac
579                         done
580                         if [ -n "$TARGETS" ]; then # at least a valid client
581                                 shift
582                         else # no valid client, let's assume this option is not meant to be a client then
583                                 TARGETS=$TARGETS_SAVE
584                                 BAD_TARGETS=
585                         fi
586                 fi
587                 if [ -z "$MAKEFLAGS" ]; then
588                         if [ -f /proc/cpuinfo ]; then
589                                 ncpus=$((`grep -c '^processor   :' /proc/cpuinfo`+0))
590                                 if [ $ncpus -gt 1 ]; then
591                                         MAKEFLAGS=-j$ncpus
592                                 fi
593                         fi
594                         if [ -n "$WE_HATE_OUR_USERS" ]; then
595                                 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw LIB_JPEG= CFLAGS_LIBJPEG="
596                         fi
597                 fi
598
599                 enter "$d0/fteqcc" verbose
600                 if $cleanqcc; then
601                         verbose make $MAKEFLAGS clean
602                 fi
603                 verbose make $MAKEFLAGS
604
605                 enter "$d0/data/xonotic-data.pk3dir" verbose
606                 if $cleanqc; then
607                         verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS clean
608                 fi
609                 verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS
610
611                 enter "$d0/darkplaces" verbose
612                 if [ x"$BAD_TARGETS" = x" " ]; then
613                         echo "Warning: invalid empty client, default clients will be used."
614                 fi
615                 if $cleandp; then
616                         verbose make $MAKEFLAGS clean
617                 fi
618                 for T in $TARGETS; do
619                         verbose make $MAKEFLAGS "$@" "$T"
620                 done
621                 for T in $BAD_TARGETS; do
622                         echo "Warning: discarded invalid client $T."
623                 done
624
625                 verbose "$SELF" update-maps
626                 ;;
627         run)
628                 if [ -n "$WE_HATE_OUR_USERS" ]; then
629                         client=
630                         export PATH="$d0/misc/buildfiles/win32:$PATH"
631                 elif [ x"`uname`" = x"Darwin" ]; then
632                         export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/MacOS"
633                         export DYLD_FRAMEWORK_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks"
634                         client=-sdl
635                 else
636                         client=-sdl
637                 fi
638                 case "$1" in
639                         sdl|glx|agl|dedicated)
640                                 client=-$1
641                                 shift
642                                 ;;
643                         wgl)
644                                 client=
645                                 shift
646                                 ;;
647                 esac
648                 if ! [ -x "darkplaces/darkplaces$client" ]; then
649                         if [ -x "darkplaces/darkplaces$client.exe" ]; then
650                                 client=$client.exe
651                         else
652                                 echo "Client darkplaces/darkplaces$client not found, aborting"
653                                 exit 1
654                         fi
655                 fi
656                 set -- "darkplaces/darkplaces$client" -nexuiz -customgamename Xonotic -customgamedirname1 data -customgamedirname2 "" -customgamescreenshotname xonotic -customgameuserdirname xonotic -mygames "$@"
657                 # change this to:
658                 #set -- "darkplaces/darkplaces$client" -xonotic -mygames "$@"
659
660                 # if pulseaudio is running: USE IT
661                 if [ -z "$SDL_AUDIODRIVER" ] && ! [ -n "$WE_HATE_OUR_USERS" ] && ! [ x"`uname`" = x"Darwin" ]; then
662                         if ps -C pulseaudio >/dev/null; then
663                                 if ldd /usr/lib/libSDL.so 2>/dev/null | grep pulse >/dev/null; then
664                                         export SDL_AUDIODRIVER=pulse
665                                 fi
666                         fi
667                 fi
668
669                 binary=$1
670
671                 if [ -n "$USE_GDB" ]; then
672                         set -- gdb --args "$@"
673                 elif which gdb >/dev/null 2>&1; then
674                         set -- gdb --batch -x savecore.gdb --args "$@"
675                 elif which catchsegv >/dev/null 2>&1; then
676                         set -- catchsegv "$@"
677                 fi
678                 rm -f xonotic.core
679                 "$@"
680                 if [ -f xonotic.core ]; then
681                         echo "The program has CRASHED. Please examine the core dump in the debugger."
682                         gdb "$binary" xonotic.core
683                 fi
684                 ;;
685         each|foreach)
686                 keep_going=false
687                 if [ x"$1" = x"-k" ]; then
688                         keep_going=true
689                         shift
690                 fi
691                 for d in $repos; do
692                         if verbose cd "$d0/$d"; then
693                                 if $keep_going; then
694                                         verbose "$@" || true
695                                 else
696                                         verbose "$@"
697                                 fi
698                                 cd "$d0"
699                         fi
700                 done
701                 ;;
702         save-patches)
703                 outfile=$1
704                 patchdir=`mktemp -d -t save-patches.XXXXXX`
705                 for d in $repos; do
706                         enter "$d0/$d" verbose
707                         git branch -v -v | cut -c 3- | {
708                                 i=0
709                                 while read -r BRANCH REV UPSTREAM TEXT; do
710                                         case "$UPSTREAM" in
711                                                 \[*)
712                                                         UPSTREAM=${UPSTREAM#\[}
713                                                         UPSTREAM=${UPSTREAM%\]}
714                                                         UPSTREAM=${UPSTREAM%:*}
715                                                         TRACK=true
716                                                         ;;
717                                                 *)
718                                                         UPSTREAM=origin/"`repobranch "$d"`"
719                                                         TRACK=false
720                                                         ;;
721                                         esac
722                                         if [ x"$REV" = x"->" ]; then
723                                                 continue
724                                         fi
725                                         if git format-patch -o "$patchdir/$i" "$UPSTREAM".."$BRANCH"; then
726                                                 echo "$d" > "$patchdir/$i/info.txt"
727                                                 echo "$BRANCH" >> "$patchdir/$i/info.txt"
728                                                 echo "$UPSTREAM" >> "$patchdir/$i/info.txt"
729                                                 echo "$TRACK" >> "$patchdir/$i/info.txt"
730                                                 i=$(($i+1))
731                                         else
732                                                 rm -rf "$patchdir/$i"
733                                         fi
734                                 done
735                         }
736                 done
737                 ( cd "$patchdir" && tar cvzf - . ) > "$outfile"
738                 rm -rf "$patchdir"
739                 ;;
740         restore-patches)
741                 infile=$1
742                 patchdir=`mktemp -d -t restore-patches.XXXXXX`
743                 ( cd "$patchdir" && tar xvzf - ) < "$infile"
744                 # detach the head
745                 for P in "$patchdir"/*/info.txt; do
746                         D=${P%/info.txt}
747                         exec 3<"$P"
748                         read -r d <&3
749                         read -r BRANCH <&3
750                         read -r UPSTREAM <&3
751                         read -r TRACK <&3
752                         verbose git checkout HEAD^0
753                         verbose git branch -D "$BRANCH"
754                         if [ x"$TRACK" = x"true" ]; then
755                                 verbose git checkout --track -b "$BRANCH" "$UPSTREAM"
756                         else
757                                 verbose git branch -b "$BRANCH" "$UPSTREAM"
758                         fi
759                         verbose git am "$D"
760                 done
761                 rm -rf "$patchdir"
762                 ;;
763         admin-merge)
764                 branch=$1
765                 t=`mktemp`
766                 report=""
767                 reportecho()
768                 {
769                         report=$report"$*$LF"
770                         echo "$*"
771                 }
772                 reportecho4()
773                 {
774                         report=$report"    $*$LF"
775                         echo "    $*"
776                 }
777                 reportdo4()
778                 {
779                         o=`"$@" | sed 's/^/    /' || true`
780                         reportecho "$o"
781                 }
782                 for d in $repos; do
783                         enter "$d0/$d" verbose
784                         base="`repobranch "$d"`"
785                         reportecho "In $d:"
786                         for ref in `git for-each-ref --format='%(refname)' refs/remotes/origin/`; do
787                                 case "${ref#refs/remotes/origin/}" in
788                                         "$base")
789                                                 continue
790                                                 ;;
791                                         HEAD|master)
792                                                 continue
793                                                 ;;
794                                         */*)
795                                                 ;;
796                                         *)
797                                                 continue
798                                                 ;;
799                                 esac
800                                 if [ -n "$branch" ]; then
801                                         if [ x"$branch" != x"${ref#refs/remotes/origin/}" ]; then
802                                                 continue
803                                         fi
804                                 fi
805                                 case "$base" in
806                                         master)
807                                                 realbase=$base
808                                                 ;;
809                                         *)
810                                                 l0=`git rev-list "$base".."$ref" | wc -l`
811                                                 l1=`git rev-list master.."$ref" | wc -l`
812                                                 if [ $l0 -gt $l1 ]; then
813                                                         realbase=master
814                                                 else
815                                                         realbase=$base
816                                                 fi
817                                                 ;;
818                                 esac
819                                 reportecho "  Branch $ref:"
820                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
821                                 logdata=`git log --color "$realbase".."$ref"`
822                                 if [ -z "$logdata" ]; then
823                                         reportecho4 "--> not merging, no changes vs master"
824                                         if yesno "Branch \"$ref\" probably should get deleted. Do it?" ''; then
825                                                 git push origin :"${ref#refs/remotes/origin/}"
826                                                 reportecho4 "--> branch deleted"
827                                         fi
828                                 else
829                                         diffdata=`git diff --color --find-copies-harder --ignore-space-change "$realbase"..."$ref"`
830                                         if [ -z "$diffdata" ]; then
831                                                 reportecho4 "--> not merging, no changes vs master, branch contains redundant history"
832                                                 if yesno "Branch \"$ref\" probably should get deleted. Do it?" '{ echo "$logdata"; } | less -r'; then
833                                                         git push origin :"${ref#refs/remotes/origin/}"
834                                                         reportecho4 "--> branch deleted"
835                                                 fi
836                                         elif [ -z "$branch" ] && [ -n "$note" ]; then
837                                                 reportdo4 echo "$note"
838                                                 reportecho4 "--> not merging, already had this one rejected before"
839                                         elif yesno "Branch \"$ref\" may want to get merged. Do it?" '{ echo "$logdata"; echo "$diffdata"; } | less -r'; then
840                                                 git checkout "$realbase"
841                                                 org=`git rev-parse HEAD`
842                                                 if ! git merge --no-ff "$ref" 2>&1 | tee "$t" && ! { git ls-files -u | grep ' 1 ' >/dev/null; }; then
843                                                         git reset --hard "$org"
844                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Merge failed:$LF`cat "$t"`" "$ref"
845                                                         reportdo4 cat "$t"
846                                                         reportecho4 "--> merge failed"
847                                                 elif ! "$SELF" compile 2>&1 | tee "$t"; then
848                                                         git reset --hard "$org"
849                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Compile failed:$LF`cat "$t"`" "$ref"
850                                                         reportdo4 cat "$t"
851                                                         reportecho4 "--> compile failed"
852                                                 elif ! yesno "Still merge \"$ref\" into `git symbolic-ref HEAD` of $d? Maybe you want to test first."; then
853                                                         git reset --hard "$org"
854                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
855                                                         note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
856                                                         if [ x"$note" = x"del" ]; then
857                                                                 git push origin :"${ref#refs/remotes/origin/}"
858                                                                 reportecho4 "--> test failed, branch deleted"
859                                                         elif [ -n "$note" ]; then
860                                                                 reportdo4 echo "$note"
861                                                                 reportecho4 "--> test failed"
862                                                         else
863                                                                 reportecho4 "--> test failed, postponed"
864                                                         fi
865                                                 else
866                                                         echo "MERGING"
867                                                         case ",`repoflags "$d"`," in
868                                                                 *,svn,*)
869                                                                         # we do quite a mess here... luckily we know $org
870                                                                         git fetch # svn needs to be current
871                                                                         git rebase -i --onto origin/master "$org"
872                                                                         git svn dcommit --add-author-from
873                                                                         git reset --hard "$org"
874                                                                         ;;
875                                                                 *)
876                                                                         git push origin HEAD
877                                                                         ;;
878                                                         esac
879                                                         reportecho4 "--> MERGED"
880                                                         if yesno "Delete original branch \"$ref\"?"; then
881                                                                 git push origin :"${ref#refs/remotes/origin/}"
882                                                                 reportecho4 "--> branch deleted"
883                                                         fi
884                                                 fi
885                                         else
886                                                 GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
887                                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
888                                                 if [ x"$note" = x"del" ]; then
889                                                         git push origin :"${ref#refs/remotes/origin/}"
890                                                         reportecho4 "--> branch deleted"
891                                                 elif [ -n "$note" ]; then
892                                                         reportdo4 echo "$note"
893                                                         reportecho4 "--> rejected"
894                                                 else
895                                                         reportecho4 "--> postponed"
896                                                 fi
897                                         fi
898                                 fi
899                                 reportecho ""
900                         done
901                         reportecho ""
902                 done
903                 rm -f "$t"
904                 echo "$report" | ssh nexuiz@rm.endoftheinternet.org cat '>>' public_html/xonotic-merge-notes.txt
905                 ;;
906         clean)
907                 force=false
908                 gotoupstream=false
909                 fetchupstream=false
910                 gotomaster=false
911                 rmuntracked=false
912                 killbranches=false
913                 # usage:
914                 #   ./all clean [-m] [-f | -fu | -fU] [-r] [-D]
915                 #   ./all clean --reclone
916                 found=false
917                 while :; do
918                         if [ x"$1" = x"--reclone" ]; then
919                                 force=true
920                                 fetchupstream=true
921                                 gotoupstream=true
922                                 gotomaster=true
923                                 rmuntracked=true
924                                 killbranches=true
925                         elif [ x"$1" = x"-f" ]; then
926                                 force=true
927                         elif [ x"$1" = x"-u" ]; then
928                                 gotoupstream=true
929                         elif [ x"$1" = x"-U" ]; then
930                                 gotoupstream=true
931                                 fetchupstream=true
932                         elif [ x"$1" = x"-fu" ]; then
933                                 force=true
934                                 gotoupstream=true
935                         elif [ x"$1" = x"-fU" ]; then
936                                 force=true
937                                 gotoupstream=true
938                                 fetchupstream=true
939                         elif [ x"$1" = x"-m" ]; then
940                                 gotomaster=true
941                         elif [ x"$1" = x"-r" ]; then
942                                 rmuntracked=true
943                         elif [ x"$1" = x"-D" ]; then
944                                 killbranches=true
945                         else
946                                 break
947                         fi
948                         found=true
949                         shift
950                 done
951                 if ! $found; then
952                         rmuntracked=true
953                 fi
954                 for d in $repos; do
955                         verbose cd "$d0/$d"
956                         if $gotoupstream; then
957                                 if ! $force; then
958                                         msg "Must also use -f (delete local changes) when using -u"
959                                         exit 1
960                                 fi
961                                 if $gotomaster; then
962                                         if $fetchupstream; then
963                                                 verbose git fetch origin
964                                                 verbose git remote prune origin
965                                         fi
966                                         verbose git checkout -f "`repobranch "$d"`"
967                                         verbose git reset --hard origin/"`repobranch "$d"`"
968                                 else
969                                         r=`git symbolic-ref HEAD`
970                                         r=${r#refs/heads/}
971                                         rem=`git config "branch.$r.remote" || echo origin`
972                                         bra=`git config "branch.$r.merge" || echo "$r"`
973                                         upstream="$rem/${bra#refs/heads/}"
974                                         if $fetchupstream; then
975                                                 verbose git fetch "$rem"
976                                                 verbose git remote prune "$rem"
977                                         fi
978                                         if ! git rev-parse "$upstream" >/dev/null 2>&1; then
979                                                 upstream="origin/`repobranch "$d"`"
980                                         fi
981                                         verbose git reset --hard "$upstream"
982                                 fi
983                         elif $gotomaster; then
984                                 if $force; then
985                                         verbose git checkout -f "`repobranch "$d"`"
986                                         verbose git reset --hard
987                                 else
988                                         verbose git checkout "`repobranch "$d"`"
989                                 fi
990                         elif $force; then
991                                 verbose git reset --hard
992                         fi
993                         if $rmuntracked; then
994                                 case "$d" in
995                                         .)
996                                                 verbose git clean -df
997                                                 ;;
998                                         *)
999                                                 verbose git clean -xdf
1000                                                 ;;
1001                                 esac
1002                         fi
1003                         if $killbranches; then
1004                                 git for-each-ref --format='%(refname)' refs/heads/ | while IFS= read -r B; do
1005                                         if [ x"$B" != x"`git symbolic-ref HEAD`" ]; then
1006                                                 verbose git branch -D "${B#refs/heads/}"
1007                                         fi
1008                                 done
1009                         fi
1010                 done
1011                 ;;
1012
1013         # release building goes here
1014         release-prepare)
1015                 #"$SELF" each git clean -fxd
1016                 case "$RELEASETYPE" in
1017                         beta)
1018                                 msg "Building a BETA"
1019                                 ;;
1020                         release)
1021                                 msg "Building a RELEASE"
1022                                 ;;
1023                         *)
1024                                 msg "Must either set RELEASETYPE=beta or RELEASETYPE=release"
1025                                 exit 1
1026                                 ;;
1027                 esac
1028                 verbose rm -rf Xonotic Xonotic*.zip
1029                 verbose mkdir -p Xonotic
1030                 if [ -n "$RELEASEDATE" ]; then
1031                         verbose echo "$RELEASEDATE" > Xonotic/stamp.txt
1032                 else
1033                         verbose date +%Y%m%d > Xonotic/stamp.txt
1034                 fi
1035                 verbose git archive --format=tar HEAD -- Docs misc server xonotic-linux-glx.sh xonotic-linux-sdl.sh misc/buildfiles | {
1036                         verbose cd Xonotic
1037                         verbose mkdir data fteqcc source source/darkplaces source/fteqcc
1038                         verbose tar xvf -
1039                         verbose rm -rf misc/builddeps
1040                         verbose mv misc/buildfiles/win32/* . || true
1041                         verbose mv misc/buildfiles/win64 bin64 || true
1042                         verbose mv misc/buildfiles/osx/* . || true
1043                         verbose rm -rf misc/buildfiles
1044                 }
1045                 {
1046                         verbose cd darkplaces
1047                         verbose git archive --format=tar HEAD
1048                 } | {
1049                         verbose cd Xonotic/source/darkplaces
1050                         verbose tar xvf -
1051                 }
1052                 {
1053                         verbose cd fteqcc
1054                         verbose git archive --format=tar HEAD
1055                 } | {
1056                         verbose cd Xonotic/source/fteqcc
1057                         verbose tar xvf -
1058                 }
1059                 {
1060                         verbose cd data/xonotic-data.pk3dir
1061                         verbose git archive --format=tar HEAD -- qcsrc Makefile
1062                 } | {
1063                         verbose cd Xonotic/source
1064                         verbose tar xvf -
1065                 }
1066                 ;;
1067         release-compile-run)
1068                 host=$1
1069                 buildpath=$2
1070                 maketargets=$3
1071                 makeflags=$4
1072                 srcdir=$5
1073                 depsdir=$6
1074                 targetfiles=$7
1075                 set -x
1076                 if [ -n "$targetfiles" ]; then
1077                         case " $HOSTS_THAT_ARE_DISABLED " in
1078                                 *\ $host\ *)
1079                                         exit
1080                                         ;;
1081                         esac
1082                         case " $HOSTS_THAT_ARE_MYSELF " in
1083                                 *\ $host\ *)
1084                                         verbose rsync --delete -zLvaSHP "$srcdir"/ "$buildpath/"
1085                                         verbose rsync --delete -zLvaSHP "$depsdir"/ "$buildpath.deps/"
1086                                         verbose ln -snf "$buildpath.deps" "$buildpath/.deps"
1087                                         verbose eval make -C "$buildpath" clean $maketargets $makeflags
1088                                         for f in $targetfiles; do
1089                                                 verbose mv "$buildpath/${f%:*}" "${f##*:}" || true
1090                                         done
1091                                         ;;
1092                                 *)
1093                                         verbose rsync --delete -zLvaSHP "$srcdir"/ "$host:$buildpath/"
1094                                         verbose rsync --delete -zLvaSHP "$depsdir"/ "$host:$buildpath.deps/"
1095                                         verbose ssh "$host" "ln -snf $buildpath.deps $buildpath/.deps && cd $buildpath && nice -`nice` make clean $maketargets $makeflags"
1096                                         for f in $targetfiles; do
1097                                                 verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true
1098                                         done
1099                                         ;;
1100                         esac
1101                         # now rebrand the binaries...
1102                         for f in $targetfiles; do
1103                                 #verbose "$d0/misc/tools/rebrand-darkplaces-engine.sh" "${XONOTIC_BRAND:-$d0/misc/tools/xonotic.brand}" "${f##*:}" || true
1104                                 case "$f" in
1105                                         xonotic*.exe)
1106                                                 verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "$f"
1107                                                 (
1108                                                         d=`mktemp -d -t rebrand.XXXXXX`
1109                                                         cd "$d"
1110                                                         echo "-mygames" > darkplaces.opt
1111                                                         zip -9r darkplaces.zip darkplaces.opt
1112                                                         cat darkplaces.zip
1113                                                         cd "$d0"
1114                                                         rm -rf "$d"
1115                                                 ) >> "$f"
1116                                                 ;;
1117                                 esac
1118                         done
1119                 fi
1120                 ;;
1121         release-compile)
1122                 suffix=$1
1123                 makeflags=$2
1124                 fteqcc_maketargets=$3
1125                 fteqcc_files=$4
1126                 darkplaces_maketargets=$5
1127                 darkplaces_files=$6
1128                 host=xonotic-build-$suffix
1129                 verbose "$SELF" release-compile-run "$host" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "Xonotic/source/fteqcc" "$d0/misc/builddeps/dp.$suffix" "$fteqcc_files"
1130                 verbose "$SELF" release-compile-run "$host" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "Xonotic/source/darkplaces" "$d0/misc/builddeps/dp.$suffix" "$darkplaces_files"
1131                 ;;
1132         release-engine-win32)
1133                 verbose "$SELF" release-compile win32 \
1134                         'STRIP=: DP_MAKE_TARGET=mingw CC="i586-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I.deps/include -L.deps/lib" WINDRES="i586-mingw32msvc-windres" SDL_CONFIG=".deps/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN32RELEASE=1 D3D=0' \
1135                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
1136                         '' ''
1137                 verbose "$SELF" release-compile win32 \
1138                         'STRIP=: DP_MAKE_TARGET=mingw CC="i586-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I.deps/include -L.deps/lib" WINDRES="i586-mingw32msvc-windres" SDL_CONFIG=".deps/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN32RELEASE=1 D3D=0' \
1139                         '' '' \
1140                         release 'darkplaces.exe:Xonotic/xonotic.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
1141                 ;;
1142         release-engine-win64)
1143                 verbose "$SELF" release-compile win64 \
1144                         'STRIP=: DP_MAKE_TARGET=mingw CC="amd64-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I.deps/include -L.deps/lib" WINDRES="amd64-mingw32msvc-windres" SDL_CONFIG=".deps/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN64RELEASE=1 D3D=0' \
1145                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc-x64.exe' \
1146                         'sv-release sdl-release' 'darkplaces-sdl.exe:Xonotic/xonotic-x64-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-x64-dedicated.exe'
1147                 verbose "$SELF" release-compile win64 \
1148                         'STRIP=: DP_MAKE_TARGET=mingw CC="x86_64-w64-mingw32-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I.deps/include -L.deps/lib" WINDRES="x86_64-w64-mingw32-windres" SDL_CONFIG=".deps/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN64RELEASE=1 D3D=0' \
1149                         '' '' \
1150                         cl-release 'darkplaces.exe:Xonotic/xonotic-x64.exe'
1151                 ;;
1152         release-engine-osx)
1153                 # gcc on OSX is buggy, needs -fno-reorder-blocks for a release build to succeed
1154                 verbose "$SELF" release-compile osx \
1155                         'STRIP=: CC="gcc -g -arch i386 -arch ppc -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -I.deps/include -L.deps/lib -fno-reorder-blocks"' \
1156                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.osx' \
1157                         'sv-release sdl-release' 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin darkplaces-dedicated:Xonotic/xonotic-osx-dedicated'
1158                 verbose "$SELF" release-compile osx \
1159                         'STRIP=: CC="gcc -g -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -I.deps/include -L.deps/lib -fno-reorder-blocks"' \
1160                         '' '' \
1161                         'cl-release' 'darkplaces-agl:Xonotic/Xonotic.app/Contents/MacOS/xonotic-osx-agl-bin'
1162                 ;;
1163         release-engine-linux32)
1164                 verbose "$SELF" release-compile linux32 \
1165                         'STRIP=: CC="gcc -m32 -g -I.deps/include -L.deps/lib" DP_MODPLUG_STATIC_LIBDIR=.deps/lib LIB_JPEG=.deps/lib/libjpeg.a' \
1166                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux32' \
1167                         release 'darkplaces-glx:Xonotic/xonotic-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux32-dedicated'
1168                 ;;
1169         release-engine-linux64)
1170                 verbose "$SELF" release-compile linux64 \
1171                         'STRIP=: CC="gcc -m64 -g -I.deps/include -L.deps/lib" DP_MODPLUG_STATIC_LIBDIR=.deps/lib LIB_JPEG=.deps/lib/libjpeg.a' \
1172                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux64' \
1173                         release 'darkplaces-glx:Xonotic/xonotic-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
1174                 ;;
1175         release-engine)
1176                 verbose "$SELF" release-engine-linux32 &
1177                 verbose "$SELF" release-engine-linux64 &
1178                 verbose "$SELF" release-engine-win32 &
1179                 verbose "$SELF" release-engine-win64 &
1180                 verbose "$SELF" release-engine-osx &
1181                 wait %1
1182                 wait %2
1183                 wait %3
1184                 wait %4
1185                 wait %5
1186                 wait
1187                 ;;
1188         release-maps)
1189                 verbose "$SELF" update-maps
1190                 ;;
1191         release-qc)
1192                 case "$RELEASETYPE" in
1193                         beta)
1194                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 clean all
1195                                 ;;
1196                         release)
1197                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 FTEQCCFLAGS_WATERMARK= clean all
1198                                 ;;
1199                 esac
1200                 verbose rm -f Xonotic/source/*/fteqcc.log
1201                 ;;
1202         release-buildpk3-transform-raw)
1203                 dir=$1
1204                 ;;
1205         release-buildpk3-transform-normal)
1206                 dir=$1
1207                 verbose cd "$dir"
1208                 # texture: convert to jpeg and dds
1209                 verbose export do_jpeg=true
1210                 verbose export jpeg_qual_rgb=95
1211                 verbose export jpeg_qual_a=99
1212                 verbose export do_dds=true
1213                 verbose export dds_flags=
1214                 verbose export do_ogg=false
1215                 verbose export del_src=true
1216                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1217                 ;;
1218         release-buildpk3-transform-low)
1219                 dir=$1
1220                 verbose cd "$dir"
1221                 # texture: convert to jpeg and dds
1222                 # music: reduce bitrate
1223                 verbose export do_jpeg=true
1224                 verbose export jpeg_qual_rgb=80
1225                 verbose export jpeg_qual_a=95
1226                 verbose export do_dds=false
1227                 verbose export do_ogg=true
1228                 verbose export ogg_qual=1
1229                 verbose export del_src=true
1230                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1231                 ;;
1232         release-buildpk3-transform-lowdds)
1233                 dir=$1
1234                 verbose cd "$dir"
1235                 # texture: convert to jpeg and dds
1236                 # music: reduce bitrate
1237                 verbose export do_jpeg=false
1238                 verbose export do_jpeg_if_not_dds=true
1239                 verbose export jpeg_qual_rgb=80
1240                 verbose export jpeg_qual_a=95
1241                 verbose export do_dds=true
1242                 verbose export dds_flags=
1243                 verbose export do_ogg=true
1244                 verbose export ogg_qual=1
1245                 verbose export del_src=true
1246                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1247                 ;;
1248         release-buildpk3)
1249                 src=$1
1250                 dst=$2
1251                 transform=$3
1252                 case "$dst" in
1253                         /*)
1254                                 ;;
1255                         */)
1256                                 dst="$PWD/$dst"
1257                                 ;;
1258                 esac
1259                 verbose rm -rf Xonotic/temp
1260                 verbose mkdir -p Xonotic/temp
1261                 {
1262                         verbose cd "$src"
1263                         verbose git archive --format=tar HEAD
1264                 } | {
1265                         verbose cd Xonotic/temp
1266                         verbose tar xvf -
1267                 }
1268                 verbose cd Xonotic/temp
1269                 if [ x"$src" = x"data/xonotic-data.pk3dir" ]; then
1270                         verbose cp ../source/progs.dat .
1271                         verbose cp ../source/csprogs.dat .
1272                         verbose cp ../source/menu.dat .
1273                         verbose rm -rf qcsrc
1274                         gv=`grep "^gameversion " "defaultXonotic.cfg" | awk '{ print $2 }'`
1275                         major=$(($gv / 10000))
1276                         minor=$(($gv / 100 - $major * 100))
1277                         patch=$(($gv - $major * 10000 - $minor * 100))
1278                         versionstr="$major.$minor.$patch"
1279                         case "$RELEASETYPE" in
1280                                 beta)
1281                                         versionstr="$versionstr""beta"
1282                                         ;;
1283                         esac
1284                         verbose sed -i "
1285                                 s/^set g_xonoticversion [^ ]* /set g_xonoticversion $versionstr /;
1286                                 s/^gameversion_min [0-9]*/gameversion_min $(( ($gv / 100) * 100 - 100 ))/;
1287                                 s/^gameversion_max [0-9]*/gameversion_max $(( ($gv / 100) * 100 + 199 ))/;
1288                         " defaultXonotic.cfg
1289                         (
1290                                 verbose cd gfx/menu/luminos
1291                                 verbose cp "$d0"/mediasource/gfx/menu/luminos_versionbuilder/background_l2.svg .
1292                                 verbose "$d0"/mediasource/gfx/menu/luminos_versionbuilder/versionbuilder "$versionstr"
1293                                 verbose rm background_l2.svg
1294                         )
1295                 fi
1296                 if [ x"$src" = x"data/xonotic-maps.pk3dir" ]; then
1297                         for X in ../../data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
1298                                 if [ -f "$X" ]; then
1299                                         verbose unzip "$X"
1300                                         verbose rm -f maps/*.log maps/*.irc maps/*.lin
1301                                 fi
1302                         done
1303                 fi
1304                 verbose export git_src_repo="$d0/$src" # skip hash-object
1305                 verbose "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
1306                 verbose mkzip "../../$dst" *
1307                 verbose cd ../..
1308                 verbose rm -rf Xonotic/temp
1309                 ;;
1310         release-buildpk3s)
1311                 stamp=`cat Xonotic/stamp.txt`
1312                 src=$1
1313                 shift
1314                 dst=${src%.pk3dir}
1315                 case "$dst" in
1316                         data/xonotic-*)
1317                                 dst="data/xonotic-$stamp-${dst#data/xonotic-}"
1318                                 ;;
1319                         *)
1320                                 dst="$dst-$stamp"
1321                                 ;;
1322                 esac
1323                 while [ "$#" -gt 1 ]; do
1324                         verbose "$SELF" release-buildpk3 "$src" "Xonotic/$dst$2.pk3" "$1"
1325                         shift
1326                         shift
1327                 done
1328                 ;;
1329         release-pack)
1330                 verbose "$SELF" release-buildpk3s data/font-nimbussansl.pk3dir             raw ''
1331                 verbose "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1332                 verbose "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1333                 verbose "$SELF" release-buildpk3s data/xonotic-music.pk3dir                raw ''     low '-low'
1334                 verbose "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
1335                 ;;
1336         release-pack-needsx11)
1337                 case "$DISPLAY" in
1338                         '')
1339                                 verbose startx "$SELF" release-pack -- /usr/bin/Xvfb :7
1340                                 ;;
1341                         *)
1342                                 verbose "$SELF" release-pack
1343                                 ;;
1344                 esac
1345                 ;;
1346         release-zip)
1347                 stamp=`cat Xonotic/stamp.txt`
1348                 # exe and dll files do not need +x, so this makes them eligible for 7zip compression too
1349                 chmod a-x Xonotic/*.exe Xonotic/*.dll || true
1350                 # need to use infozip for these (+x bits)
1351                 verbose mkzip Xonotic-$stamp-engine.zip \
1352                         Xonotic/*.dll \
1353                         Xonotic/bin64/*.dll \
1354                         Xonotic/*.app \
1355                         Xonotic/xonotic-* \
1356                         Xonotic/xonotic.exe \
1357                         Xonotic/source/darkplaces/
1358                 verbose cp Xonotic-$stamp-engine.zip Xonotic-$stamp-common.zip
1359                 verbose mkzip Xonotic-$stamp-common.zip \
1360                         Xonotic/source/fteqcc/ \
1361                         Xonotic/source/qcsrc/ \
1362                         Xonotic/Docs \
1363                         Xonotic/misc \
1364                         Xonotic/fteqcc \
1365                         Xonotic/server \
1366                         Xonotic/data/font-nimbussansl-$stamp.pk3
1367                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp.zip
1368                 verbose mkzip0 Xonotic-$stamp.zip \
1369                         Xonotic/data/xonotic-$stamp-data.pk3 \
1370                         Xonotic/data/xonotic-$stamp-maps.pk3 \
1371                         Xonotic/data/xonotic-$stamp-music.pk3 \
1372                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1373                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-low.zip
1374                 verbose mkzip0 Xonotic-$stamp-low.zip \
1375                         Xonotic/data/xonotic-$stamp-data-low.pk3 \
1376                         Xonotic/data/xonotic-$stamp-maps-low.pk3 \
1377                         Xonotic/data/xonotic-$stamp-music-low.pk3
1378                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-lowdds.zip
1379                 verbose mkzip0 Xonotic-$stamp-lowdds.zip \
1380                         Xonotic/data/xonotic-$stamp-data-lowdds.pk3 \
1381                         Xonotic/data/xonotic-$stamp-maps-lowdds.pk3 \
1382                         Xonotic/data/xonotic-$stamp-music-low.pk3
1383                 verbose mv Xonotic-$stamp-common.zip Xonotic-$stamp-high.zip
1384                 verbose mkzip0 Xonotic-$stamp-high.zip \
1385                         Xonotic/data/xonotic-$stamp-data-raw.pk3 \
1386                         Xonotic/data/xonotic-$stamp-maps-raw.pk3 \
1387                         Xonotic/data/xonotic-$stamp-music.pk3 \
1388                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1389                 ;;
1390         release)
1391                 verbose "$SELF" release-prepare
1392                 verbose "$SELF" release-maps
1393                 verbose "$SELF" release-engine
1394                 verbose "$SELF" release-qc
1395                 verbose "$SELF" release-pack-needsx11
1396                 verbose "$SELF" release-zip
1397                 ;;
1398
1399         *)
1400                 echo "Usage:"
1401                 echo "  $SELF admin-merge [<branch>]"
1402                 echo "  $SELF branch <branch>"
1403                 echo "  $SELF branch <remote> <branch> [<srcbranch>]"
1404                 echo "  $SELF branches"
1405                 echo "  $SELF checkout|switch <branch>"
1406                 echo "  $SELF checkout|switch <remote>/<branch>"
1407                 echo "  $SELF clean [-m] [-f | -fu | -fU] [-r] [-D]"
1408                 echo "  $SELF clean --reclone"
1409                 echo "  $SELF compile [-c]"
1410                 echo "  $SELF each|foreach [-k] command..."
1411                 echo "  $SELF fix_upstream_rebase"
1412                 echo "  $SELF merge"
1413                 echo "  $SELF push|commit [-s]"
1414                 echo "  $SELF release"
1415                 echo "  $SELF restore-patches"
1416                 echo "  $SELF run [sdl|glx|wgl|agl|dedicated] options..."
1417                 echo "  $SELF save-patches"
1418                 echo "  $SELF update-maps"
1419                 echo "  $SELF update|pull [-N]"
1420                 ;;
1421 esac