]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/all/xonotic.subr
more fixing
[xonotic/xonotic.git] / misc / tools / all / xonotic.subr
1 handled=true
2 case "$cmd" in
3         update-maps)
4                 misc/tools/xonotic-map-compiler-autobuild download
5                 ;;
6         compile-map)
7                 if [ $# -eq 0 ] ; then
8                         msg "Usage: ./all compile-map mapname1 mapname2 mapname3"
9                         msg "For example: ./all compile-map dance xoylent"
10                 fi
11                 if ! [ -f "netradiant/install/q3map2" ] ; then
12                         msg "q3map2 needed! Building netradiant..."
13                         make -C netradiant install/q3map2
14                 fi
15                 for mapfile in "$@"; do
16                         mapfile="data/xonotic-maps.pk3dir/maps/$mapfile.map"
17                         if [ ! -f "$mapfile" ] ; then
18                                 msg "ERROR, $mapfile not found!"
19                         else
20                                 time misc/tools/xonotic-map-compiler-optionsfile "$mapfile"
21                         fi
22                 done
23                 ;;
24         compile)
25                 cleand0=false
26                 cleandp=false
27                 cleanqcc=false
28                 cleanqc=false
29                 compiled0=false
30                 debug=debug
31                 snowleopardhack=false
32                 if [ -z "$CC" ]; then
33                         export CC="gcc"
34                 fi
35                 export CC="$CC -DSUPPORTIPV6"
36                 while :; do
37                         case "$1" in
38                                 -0)
39                                         compiled0=true
40                                         shift
41                                         ;;
42                                 -c)
43                                         cleand0=true
44                                         cleandp=true
45                                         cleanqcc=true
46                                         cleanqc=true
47                                         shift
48                                         ;;
49                                 -r|-p)
50                                         case "$1" in
51                                                 -p)
52                                                         debug=profile
53                                                         ;;
54                                                 -r)
55                                                         debug=release
56                                                         ;;
57                                         esac
58                                         export CC="$CC -g"
59                                         case "`$CC -dumpversion`" in
60                                                 [5-9]*|[1-9][0-9]*|4.[3-9]*|4.[1-9][0-9]*)
61                                                         # gcc 4.3 or higher
62                                                         # -march=native is broken < 4.3
63                                                         if $CC -mtune=native -march=native misc/tools/conftest.c -o conftest >/dev/null 2>&1; then
64                                                                 export CC="$CC -mtune=native -march=native"
65                                                         fi
66                                                         ;;
67                                         esac
68                                         if [ -n "$WE_HATE_OUR_USERS" ]; then
69                                                 export CC="$CC -fno-common"
70                                         fi
71                                         shift
72                                         ;;
73                                 *)
74                                         break
75                                         ;;
76                         esac
77                 done
78                 if [ -n "$WE_HATE_OUR_USERS" ]; then
79                         TARGETS="sv-$debug cl-$debug"
80                 elif [ x"`uname`" = x"Darwin" ]; then
81                         case "`uname -r`" in
82                                 ?.*)
83                                         TARGETS="sv-$debug cl-$debug sdl-$debug"
84                                         ;;
85                                 *)
86                                         # AGL cannot be compiled on systems with a kernel > 10.x (Snow Leopard)
87                                         snowleopardhack=true
88                                         TARGETS="sv-$debug sdl-$debug"
89                                         ;;
90                         esac
91                         export CC="$CC -fno-reorder-blocks -I$PWD/misc/buildfiles/osx/Xonotic.app/Contents/Frameworks/SDL.framework/Headers -F$PWD/misc/buildfiles/osx/Xonotic.app/Contents/Frameworks"
92                 else
93                         TARGETS="sv-$debug cl-$debug sdl-$debug"
94                 fi
95                 if [ $# -gt 0 ] && [ x"$1" = x"" ]; then
96                         # if we give the command make the arg "", it will surely fail (invalid filename),
97                         # so better handle it as an empty client option
98                         BAD_TARGETS=" "
99                         shift
100                 elif [ -n "$1" ]; then
101                         BAD_TARGETS=
102                         TARGETS_SAVE=$TARGETS
103                         TARGETS=
104                         for X in $1; do
105                                 case "$X" in
106                                         sdl)
107                                                 TARGETS="$TARGETS sdl-$debug"
108                                                 ;;
109                                         agl)
110                                                 TARGETS="$TARGETS cl-$debug"
111                                                 if $snowleopardhack; then
112                                                         export CC="$CC -arch i386"
113                                                 fi
114                                                 ;;
115                                         glx|wgl)
116                                                 TARGETS="$TARGETS cl-$debug"
117                                                 ;;
118                                         dedicated)
119                                                 TARGETS="$TARGETS sv-$debug"
120                                                 ;;
121                                         *)
122                                                 BAD_TARGETS="$BAD_TARGETS $X"
123                                                 ;;
124                                 esac
125                         done
126                         if [ -n "$TARGETS" ]; then # at least a valid client
127                                 shift
128                         else # no valid client, let's assume this option is not meant to be a client then
129                                 TARGETS=$TARGETS_SAVE
130                                 BAD_TARGETS=
131                         fi
132                 fi
133                 if [ -z "$MAKEFLAGS" ]; then
134                         ncpus=`getconf _NPROCESSORS_ONLN 2>/dev/null || getconf NPROCESSORS_ONLN 2>/dev/null || echo 1`
135                         if [ $ncpus -gt 1 ]; then
136                                 MAKEFLAGS=-j$ncpus
137                         fi
138                         if [ -n "$WE_HATE_OUR_USERS" ]; then
139                                 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw"
140                         fi
141                 fi
142
143                 # win32: don't rely on jpeg includes
144                 if [ -n "$WE_HATE_OUR_USERS" ]; then
145                         MAKEFLAGS="$MAKEFLAGS LIB_JPEG= CFLAGS_LIBJPEG="
146                 fi
147
148                 # workaround ARM issue in DP's makefile.inc
149                 case `uname -m` in
150                         x86_64|*86)
151                                 ;;
152                         *)
153                                 MAKEFLAGS="$MAKEFLAGS CFLAGS_SSE= CFLAGS_SSE2="
154                                 ;;
155                 esac
156                 
157                 if ! verbose $CC misc/tools/conftest.c -o conftest; then
158                         msg ""
159                         msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
160                         msg "~~~~~~~~~~ COMPILER ~~~~~~~~~~"
161                         msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
162                         msg "~~~~~~~~~~~~~~_...._~~~~~~~~~~"
163                         msg "~~~~~~~~~~~,-'     \\\`-._~~~~~~"
164                         msg "~~~~~~~~~~/     --. ><  \\~~~~~"
165                         msg "~~~~~~~~~/      (*)> -<: \\~~~~"
166                         msg "~~~~~~~~~(     ^~-'  (*) )~~~~"
167                         msg "~~~~~~~~~\\        ^+-_/  |~~~~"
168                         msg "~~~~~~~~~~\\       {vvv}  |~~~~"
169                         msg "~~~~~~~~~~,\\    , {^^^},/~~~~~"
170                         msg "~~~~~~~~,/  \`---.....-'~~W~~~~"
171                         msg "~~~~~~,/   \\_____/_\\_W~~/~~~~~"
172                         msg "~~~~~/          /~~~\\__/~~~~~~"
173                         msg "~~~~/          /~~~~~~~~~~~~~~"
174                         msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
175                         msg "~~~~~~~ Y U NO COMPILE ~~~~~~~"
176                         msg "~~~~~~~~~~~~ CODE ~~~~~~~~~~~~"
177                         msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
178                         msg ""
179                         exit 1
180                 fi
181                 rm -f conftest
182
183                 verbose cd "$d0/d0_blind_id"
184                 if ! $compiled0; then
185                         # compilation of crypto library failed
186                         # use binaries then, if we can...
187                         mkdir -p .libs
188                         if [ -n "$WE_HATE_OUR_USERS" ]; then
189                                 verbose cp "$d0/misc/buildfiles/win32/libd0_blind_id"-* .libs/
190                                 verbose cp "$d0/misc/buildfiles/win32/libd0_rijndael"-* .libs/
191                                 verbose cp "$d0/misc/buildfiles/win32/libgmp"-* .libs/
192                         else
193                                 case "`uname`" in
194                                         Linux)
195                                                 case `uname -m` in
196                                                         x86_64)
197                                                                 #verbose cp "$d0/misc/builddeps/dp.linux64/lib/libd0_blind_id".* .libs/
198                                                                 #verbose cp "$d0/misc/builddeps/dp.linux64/lib/libd0_rijndael".* .libs/
199                                                                 #verbose cp "$d0/misc/builddeps/dp.linux64/lib/libgmp".* .libs/
200                                                                 export CC="$CC -I../../../../misc/builddeps/dp.linux32/include"
201                                                                 MAKEFLAGS="$MAKEFLAGS DP_LINK_CRYPTO=shared DP_LINK_CRYPTO_RIJNDAEL=shared LIB_CRYPTO=../../../../misc/builddeps/dp.linux64/lib/libd0_blind_id.a LIB_CRYPTO+=../../../../misc/builddeps/dp.linux64/lib/libgmp.a LIB_CRYPTO_RIJNDAEL=../../../../misc/builddeps/dp.linux64/lib/libd0_rijndael.a"
202                                                                 ;;
203                                                         *86)
204                                                                 #verbose cp "$d0/misc/builddeps/dp.linux32/lib/libd0_blind_id".* .libs/
205                                                                 #verbose cp "$d0/misc/builddeps/dp.linux32/lib/libd0_rijndael".* .libs/
206                                                                 #verbose cp "$d0/misc/builddeps/dp.linux32/lib/libgmp".* .libs/
207                                                                 export CC="$CC -I../../../../misc/builddeps/dp.linux32/include"
208                                                                 MAKEFLAGS="$MAKEFLAGS DP_LINK_CRYPTO=shared DP_LINK_CRYPTO_RIJNDAEL=shared LIB_CRYPTO=../../../../misc/builddeps/dp.linux32/lib/libd0_blind_id.a LIB_CRYPTO+=../../../../misc/builddeps/dp.linux32/lib/libgmp.a LIB_CRYPTO_RIJNDAEL=../../../../misc/builddeps/dp.linux32/lib/libd0_rijndael.a"
209                                                                 ;;
210                                                         *)
211                                                                 compiled0=true
212                                                                 ;;
213                                                 esac
214                                                 ;;
215                                         Darwin)
216                                                 verbose cp "$d0/misc/buildfiles/osx/Xonotic.app/Contents/MacOS/libd0_blind_id".* .libs/
217                                                 verbose cp "$d0/misc/buildfiles/osx/Xonotic.app/Contents/MacOS/libd0_rijndael".* .libs/
218                                                 ;;
219                                         *)
220                                                 compiled0=true
221                                                 ;;
222                                 esac
223                         fi
224                 fi
225                 if $compiled0; then
226                         if $cleand0; then
227                                 if [ -f Makefile ]; then
228                                         verbose make $MAKEFLAGS distclean
229                                 fi
230                         fi
231                         if ! [ -f Makefile ]; then
232                                 verbose sh autogen.sh
233                                 verbose ./configure
234                         fi
235                         verbose make $MAKEFLAGS
236                 fi
237
238                 verbose cd "$d0/gmqcc"
239                 if $cleanqcc; then
240                         verbose make $MAKEFLAGS clean
241                 fi
242                 if [ -n "$WE_HATE_OUR_USERS" ]; then
243                         verbose make $MAKEFLAGS gmqcc.exe
244                 else
245                         verbose make $MAKEFLAGS gmqcc
246                 fi
247
248                 verbose cd "$d0/data/xonotic-data.pk3dir"
249                 if $cleanqc; then
250                         verbose make QCC="../../../../gmqcc/gmqcc" "$@" $MAKEFLAGS clean
251                 fi
252                 verbose make QCC="../../../../gmqcc/gmqcc" "$@" $MAKEFLAGS
253                 # 4 levels up: data, xonotic-data, qcsrc, server
254
255                 verbose cd "$d0/darkplaces"
256                 if [ x"$BAD_TARGETS" = x" " ]; then
257                         $ECHO "Warning: invalid empty client, default clients will be used."
258                 fi
259                 if $cleandp; then
260                         verbose make $MAKEFLAGS clean
261                 fi
262                 for T in $TARGETS; do
263                         verbose make $MAKEFLAGS STRIP=: "$@" "$T"
264                 done
265                 for T in $BAD_TARGETS; do
266                         $ECHO "Warning: discarded invalid client $T."
267                 done
268
269                 verbose "$SELF" update-maps
270                 ;;
271         run)
272                 if [ -n "$WE_HATE_OUR_USERS" ]; then
273                         client=
274                         export PATH="$d0/misc/buildfiles/win32:$d0/d0_blind_id/.libs:$PATH"
275                 elif [ x"`uname`" = x"Darwin" ]; then
276                         export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Xonotic.app/Contents/MacOS:$d0/d0_blind_id/.libs"
277                         export DYLD_FRAMEWORK_PATH="$d0/misc/buildfiles/osx/Xonotic.app/Contents/Frameworks"
278                         client=-sdl
279                 else
280                         export LD_LIBRARY_PATH="$d0/d0_blind_id/.libs"
281                         client=-sdl
282                 fi
283                 case "$1" in
284                         dedicated)
285                                 client=-$1
286                                 shift
287                                 ;;
288                         sdl|glx|agl)
289                                 USE_RLWRAP=no
290                                 client=-$1
291                                 shift
292                                 ;;
293                         wgl)
294                                 USE_RLWRAP=no
295                                 client=
296                                 shift
297                                 ;;
298                 esac
299                 if ! [ -x "darkplaces/darkplaces$client" ]; then
300                         if [ -x "darkplaces/darkplaces$client.exe" ]; then
301                                 client=$client.exe
302                         else
303                                 $ECHO "Client darkplaces/darkplaces$client not found, aborting"
304                                 exit 1
305                         fi
306                 fi
307                 set -- "darkplaces/darkplaces$client" -xonotic "$@"
308
309                 # if pulseaudio is running: USE IT
310                 if [ -z "$SDL_AUDIODRIVER" ] && ! [ -n "$WE_HATE_OUR_USERS" ] && ! [ x"`uname`" = x"Darwin" ]; then
311                         if ps -C pulseaudio >/dev/null; then
312                                 if ldd /usr/lib/libSDL.so 2>/dev/null | grep pulse >/dev/null; then
313                                         export SDL_AUDIODRIVER=pulse
314                                 fi
315                         fi
316                 fi
317
318                 binary=$1
319
320                 if [ x"$USE_GDB" = x"yes" ]; then
321                         set -- gdb --args "$@"
322                         USE_RLWRAP=no
323                 elif [ x"$USE_GDB" = x"core" ]; then
324                         set -- gdb --batch -x savecore.gdb --args "$@"
325                         USE_RLWRAP=no
326                 elif which catchsegv >/dev/null 2>&1; then
327                         set -- catchsegv "$@"
328                 fi
329                 if [ x"$USE_RLWRAP" != x"no" ] && which rlwrap >/dev/null 2>&1; then
330                         set -- rlwrap -A -g '^quit' -q "\"" -r -S ']' -w 100 "$@"
331                 fi
332                 rm -f xonotic.core
333                 "$@" || true
334                 if [ -f xonotic.core ]; then
335                         if yesno "The program has CRASHED. Do you want to examine the core dump?"; then
336                                 gdb "$binary" xonotic.core
337                         #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
338                         #       tar cvzf xonotic.core.tar.gz xonotic.core darkplaces/*.c darkplaces/*.h
339                         #       # somehow send it
340                         #       rm -f xonotic.core.tar.gz
341                         else
342                                 $ECHO "The core dump can be examined later by"
343                                 $ECHO "  gdb $binary xonotic.core"
344                         fi
345                         exit 1
346                 fi
347                 ;;
348         help)
349                 $ECHO "  $SELF compile [-c] [-r|-p] [-0] [sdl|glx|wgl|agl|dedicated]"
350                 $ECHO "  $SELF update-maps"
351                 $ECHO "  $SELF run [sdl|glx|wgl|agl|dedicated] options..."
352                 $ECHO "  $SELF compile-map mapname1 mapname2... (e.g. \"./all compile-map dance drain fuse\")"
353                 handled=false
354                 ;;
355         *)
356                 handled=false
357                 ;;
358 esac