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