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