-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild
executable file
·301 lines (230 loc) · 6.31 KB
/
build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#!/bin/bash
printf "\n ---- ZDBuild ----\n"
printf " by Gustavo6046\n"
printf " under The MIT License\n"
printf " at [email protected]\n"
printf "\n\n==========================\n"
POSITIONAL=
FOLDER="Built"
SCPORT="gzdoom"
CVAR=""
IWAD=""
EXTRA=""
SPFILES=""
MAP=""
LZMA=0
PLATFORM=$(uname -s | head -c 5)
RUN=0
REALPATH_CMD="realpath"
# check if we are on macos
if [ "$PLATFORM" == "Darwi" ]; then
REALPATH_CMD="grealpath"
# check if grealpath exists
if ! command -v grealpath &> /dev/null; then
echo "grealpath not found, please install coreutils using 'brew install coreutils' and try again."
exit 1
fi
fi
while [[ $# -gt 0 ]]; do
key="$1"
case $key in
-h|--help)
echo
echo Syntax:
echo
echo
echo " ./build [-f|--folder <output folder : out>] [-s|--sourceport <path to source port : gzdoom>] [-i|--iwad <path to the mod's IWAD>] [-a|--file|--add <additional PWAD> [-a|--file|--add ...]] [-c|--cvar <additional cvar>=<value> [c|--cvar ...]] [-e|--extra <source port option>=<value> [...]] [-r|--run]"
echo
echo For example:
echo
echo " ./build -f out -s gzdoom -i /usr/games/doom/doom2.wad -c zb_debug=1 -e \"-nomonsters\" -e \"-skill=1\" -e \"+map=MAP18\""
echo
exit 0
;;
# LZMA was removed.
-f|--folder)
FOLDER="$2"
shift # past argument
shift # past value
;;
-r|--run)
RUN=1
shift
;;
-s|--sourceport)
SCPORT="$2"
shift # past argument
shift # past value
;;
-i|--iwad)
IWAD="$2"
shift # past argument
shift # past value
;;
-a|--file|--add)
SPFILES="$SPFILES;$2"
shift
shift
;;
-m|--map)
MAP=$2
shift
shift
;;
-c|--cvar)
if [ -z "$CVAR" ]; then
CVAR="$2"
else
CVAR="$CVAR $2"
fi
shift # past argument
shift # past value
;;
-e|--extra) # extra source port arguments
if [ -z "$EXTRA" ]; then
EXTRA="$2"
else
EXTRA="$EXTRA $2"
fi
shift # past argument
shift # past value
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional parameters
BUILDDIR=""
function ADDFILE {
if [ $# -eq 1 ]; then
if [ -n "$BUILDDIR" ]; then
f="$($REALPATH_CMD --relative-to="./$BUILDDIR" "./${BUILDDIR}/${1}")"
else
f="$($REALPATH_CMD --relative-to="." "./${1}")"
fi
#FILES+=( "$f" )
printf "%s\n" "$f" >>.FILES.txt
printf "+ %s\n" "$f"
else
echo "[WARNING] Invalid call to ADDFILE with ${#} arguments (expected 1)!"
fi
}
function ADDALL {
if [ -n "$BUILDDIR" ]; then
d="${BUILDDIR}/${1}"
elif [ $# -eq 1 ]; then
d=$1
else
echo "[WARNING] Invalid call to ADDALL with no build dir and ${#} arguments (expected either 1 argument or a build dir)!"
d=
fi
if [ -n "$d" ]; then
find "$d" -maxdepth 1 -type d | while read -r d; do
ADDFOLDER "$(echo "$d" | cut -c $((1 + ${#BUILDDIR}))-)"
done
find "$d" -maxdepth 1 -type f | while read -r f; do
ADDFILE "$(echo "$f" | cut -c $((1 + ${#BUILDDIR}))-)"
done
fi
}
function ADDFOLDER {
if [ -n "$BUILDDIR" ]; then
d="${BUILDDIR}/${1}"
else
d=$1
fi
if [ $# -eq 1 ]; then
find "$d" -type f | while read -r f; do
ADDFILE "$(echo "$f" | cut -c $((1 + ${#BUILDDIR}))-)"
done
elif [ $# -eq 2 ]; then
find "$d" -type f -name "$2" | while read -r f; do
ADDFILE "$(echo "$f" | cut -c $((1 + ${#BUILDDIR}))-)"
done
else
echo "[WARNING] Invalid call to ADDFOLDER with ${#} arguments (expected 1 or 2)!"
fi
}
# Build compilation
if [ -e "./compile" ]; then
. ./compile
fi
# Pre-configuration
. ./config
NUMFILES=${#FILES[@]}
owd="$(pwd)"
if [ $LZMA -eq 1 ]; then
PKEXT=7
else
PKEXT=3
fi
out="${owd}/${FOLDER}/${NAME}_v${VERSION}.pk${PKEXT}"
mkdir -p "$FOLDER"
# Create output file
echo Adding "$NUMFILES" files to output \'"${out}"\'.
rm "$out" 2>/dev/null # just to make sure file doesn't exist
if [ -n "$BUILDDIR" ]; then
cd "$BUILDDIR"
fi
if [ $LZMA -eq 1 ]; then
echo "${FILES[@]}" | tr " " "\n" | tar cf "$out" --lzma -T - || {
echo "Error building PK7 output!"
exit 1
}
else
if [ "$PLATFORM" == "MINGW" ]; then
ZIP="./zip.exe"
else
ZIP="zip"
fi
cat "$owd/.FILES.txt" | "$ZIP" -9 "$out" -@ && {
rm "$owd/.FILES.txt"
} || {
echo "Error building PK3 output!"
rm "$owd/.FILES.txt"
exit 1
}
fi
# Create launch script
lout="${owd}/${FOLDER}/${NAME}"
echo "#!/bin/bash" >"$lout"
printf "\"${SCPORT}\" -iwad \"${IWAD}\" -file \"./${NAME}_v${VERSION}.pk${PKEXT}\"" >>"$lout"
for cv in $CVAR; do
printf " +set $(echo "$cv" | awk -F\= '{print $1}') $(echo "$cv" | awk -F\= '{print $2}')" >> "$lout"
done
(
IFS=';'
for spf in $SPFILES; do
if [ ! "$spf" == "" ]; then
printf ' -file "' >> "$lout"
printf "$spf" >> "$lout"
printf '"' >> "$lout"
fi
done
)
for eo in $EXTRA; do
printf " $(echo "$eo" | awk -F\= '{print $1}') $(echo "$eo" | awk -F\= '{print $2}')" >> "$lout"
done
if [ ! $MAP == "" ]; then
printf " +map $MAP" >> "$lout"
fi
cd "$owd" || exit
chmod +x "$lout"
# Post-build
if [ -e "./postbuild" ]; then
. ./postbuild "$OUT"
fi
printf "#"'!'"/bin/bash\ncd \"${FOLDER}\"; \"./${NAME}\"; cd \"${owd}\"\n" >./run
chmod +x run
if [ "$RUN" == "1" ]; then
echo "Running..."
./run && (
echo "PK${PKEXT} built succesfully: \"$out\""
) || (
echo "Error while running '$out' through $SCPORT!"
)
else
echo "PK${PKEXT} built succesfully: $out"
fi