forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_pak.sh
executable file
·363 lines (304 loc) · 9.01 KB
/
get_pak.sh
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#!/bin/bash
#
# This file is part of the Simutrans project under the Artistic License.
# (see LICENSE.txt)
#
#
# script to fetch pak sets
# Downloads pak sets and installs them into $(pwd)/
#
# make sure that non-existing variables are not ignored
set -u
# fall back to "/tmp" if TEMP is not set
TEMP=${TEMP:-/tmp}
#
# Download file.
# Parameters:
# URL
# filename
#
# Status codes:
# 0: Success
# 1: Generic error
# 2: File not found
#
do_download()
{
if which curl >/dev/null; then
curl --progress-bar -L "$1" > "$2" || {
echo "Error: download of file '$2' failed (curl returned $?)" >&2
rm -f "$2"
return 1
}
elif which wget >/dev/null; then
wget -q --show-progress -O "$2" "$1" || {
result=$?
rm -f "$2"
if [[ $result -eq 8 ]]; then
echo "Error downloading file: Not found at URL '$1'" >&2
return 2
else
echo "Unknown error downloading file (wget returned $result)" >&2
return 1
fi
}
else
echo "Error: Neither curl or wget are available on your system, please install either and try again!" >&2
return 1
fi
return 0
}
install_cab()
{
pakzippath="$1"
files=$(cabextract --list "$pakzippath" 2>/dev/null | head -n -2 | tail -n +4 | cut -d '|' -f3- | cut -b 2-) || {
echo "Error: Cannot extract .cab file (cabextract required)" >&2
return 1
}
# First check if we only have a simutrans/ directory at the root.
# If so, extract the archive here, otherwise into simutrans/
if [ -n "$(echo "$files" | grep -v "^simutrans/")" ]; then
mkdir -p "simutrans"
destdir="$(pwd)"
else
destdir="$(pwd)/.."
fi
cabextract -qd "$destdir" "$pakzippath" || {
echo "Error: Could not extract '$pakzippath' to '$destdir'" >&2
return 1
}
return 0
}
install_tgz()
{
pakzippath="$1"
files=$(tar -ztf "$pakzippath") || {
echo "Error: Cannot extract .tar.gz file (tar with gzip support required)" >&2
return 1
}
# First check if we only have a simutrans/ directory at the root.
# If so, extract the archive here, otherwise into simutrans/
if [ -n "$(echo "$files" | grep -v "^simutrans/")" ]; then
destdir="$(pwd)"
else
destdir="$(pwd)/.."
fi
tar -zxf "$pakzippath" -C "$destdir" || {
echo "Error: Could not extract '$pakzippath' to '$destdir'" >&2
return 1
}
return 0
}
install_zip()
{
pakzippath="$1"
# First check if we only have a simutrans/ directory at the root.
# If so, extract the archive here, otherwise into simutrans/
files=$(unzip -Z1 "$pakzippath" -x "simutrans/*" 2>/dev/null)
result=$?
if [ $result -eq 11 ]; then
# Not matched - We only have a simutrans/ directory
destdir="$(pwd)/"
elif [ $result -ge 2 ]; then
echo "Error: Could not extract '$pakzippath' (unzip -Z returned: $result)" >&2
return 1
elif [ -n "$files" ]; then
destdir="$(pwd)/"
else
destdir="$(pwd)/.."
fi
echo "Extracting '$pakzippath' to '$destdir'..."
unzip -qoC "$pakzippath" -d "$destdir"
result=$?
if [ $result -ge 2 ]; then
# unzip failed
echo "Error: Could not extract '$pakzippath' to '$destdir' (unzip returned: $result)" >&2
return 1
fi
return 0
}
# two parameters:
# - url
# - zipfilename
download_and_install_pakset()
{
url="$1"
pakzippath="$2"
echo "Downloading from '$1'"
do_download "$url" "$pakzippath" || return 1
destdir=""
if [ -n "$(file "$pakzippath" | grep -i "Microsoft Cabinet archive data")" ]; then
# .cab file
install_cab "$pakzippath"
elif [ -n "$(file "$pakzippath" | grep -i "gzip compressed data")" ]; then
# .tar.gz
install_tgz "$pakzippath"
elif [ -n "$(file "$pakzippath" | grep -i "Zip archive data")" ]; then
# .zip
install_zip "$pakzippath"
else
rm -f "$pakzippath"
echo "Error: Cannot extract unknown archive format" >&2
return 1
fi
result=$?
rm -f "$pakzippath"
if [ $result -ne 0 ]; then
echo "Installation failed." >&2
return 1
fi
echo "Installation completed."
return 0
}
# generated list of pak sets
paksets=( \
"http://downloads.sourceforge.net/project/simutrans/pak64/122-0/simupak64-122-0.zip" \
"http://simutrans-germany.com/pak.german/pak64.german_0-122-0-0-2_full.zip" \
"https://downloads.sourceforge.net/project/simutrans/pak64.japan/120-0/simupak64.japan-120-0-1.zip" \
"https://github.com/wa-st/pak-nippon/releases/download/v0.4.0/pak.nippon-v0.4.0.zip" \
"https://downloads.sourceforge.net/project/simutrans/pakHAJO/pakHAJO_102-2-2/pakHAJO_0-102-2-2.zip" \
"https://downloads.sourceforge.net/project/simutrans/pak96.comic/pak96.comic%20for%20111-3/pak96.comic-0.4.10-plus.zip" \
"https://downloads.sourceforge.net/project/simutrans/pak128/pak128%20for%20ST%20120.4.1%20%282.8.1%2C%20priority%20signals%20%2B%20bugfix%29/pak128.zip" \
"https://downloads.sourceforge.net/project/simutrans/pak128.britain/pak128.Britain%20for%20120-3/pak128.Britain.1.18-120-3.zip" \
"http://downloads.sourceforge.net/project/simutrans/PAK128.german/PAK128.german_2.0_for_ST_122.0/PAK128.german_2.0_for_ST_122.0.zip" \
"http://github.com/Flemmbrav/Pak192.Comic/releases/download/2021-V0.6-RC1/pak192.comic.0.6.RC1.zip" \
"https://downloads.sourceforge.net/project/simutrans/pak32.comic/pak32.comic%20for%20102-0/pak32.comic_102-0.zip" \
"https://downloads.sourceforge.net/project/simutrans/pak64.contrast/pak64.Contrast_910.zip" \
"https://hd.simutrans.com/release/PakHD_v04B_100-0.zip" \
"http://pak128.jpn.org/souko/pak128.japan.120.0.cab" \
"https://downloads.sourceforge.net/project/simutrans/pak64.scifi/pak64.scifi_112.x_v0.2.zip" \
"https://downloads.sourceforge.net/project/ironsimu/pak48.Excentrique/v018/pak48-excentrique_v018.zip" \
"http://simutrans.bilkinfo.de/pak64.ho-scale-latest.tar.gz" \
)
#
# main script
#
choices=()
installpak=()
if [ "$#" -gt 0 ] && [ "$1" = '-generate_h' ]; then
echo "Generate input file for Simutrans"
echo "// Generated by \"get_pak.sh -generate_h\"" > "paksetinfo.h"
echo "#define PAKSET_COUNT ${#paksets[@]}" >> "paksetinfo.h"
echo "const char *pakinfo[PAKSET_COUNT*2] = {" >> "paksetinfo.h"
for urlname in "${paksets[@]}"
do
zipname="${urlname##http*\/}"
choicename="${zipname%.*}"
choicename="${choicename%.tar}" # for .tar.gz
choicename="${choicename/simupak/pak}"
echo $'\t'"\"$urlname\", \"$choicename\"," >> "paksetinfo.h"
done
echo "};" >> "paksetinfo.h"
exit 0
fi
pwd | grep "/simutrans$" >/dev/null || {
echo "Cannot install paksets: Must be in a simutrans/ directory" >&2
exit 1
}
# first find out, if we have a command options and just install these paks
# parameter is the full path to the pakset
if [ "$#" -gt 0 ]; then
for urlname in "$@"
do
cd ..
zipname="${urlname##http*\/}"
choicename="${zipname%.*}"
choicename="${choicename%.tar}" # for .tar.gz
choicename="${choicename/simupak/pak}"
echo "-- Installing $choicename --"
tempzipname="$TEMP/$zipname"
download_and_install_pakset "$urlname" "$tempzipname" || {
echo "Error installing pakset $choicename"
}
done
echo "Installation finished."
exit 0
fi
echo "-- Choose at least one of these paks --"
let setcount=0
let choicecount=0
let "maxcount = ${#paksets[*]}"
while [ "$setcount" -lt "$maxcount" ]; do
installpak[choicecount]=0
urlname=${paksets[$setcount]}
zipname="${urlname##http*\/}"
choicename="${zipname%.*}"
choicename="${choicename%.tar}" # for .tar.gz
choicename="${choicename/simupak/pak}"
choices[choicecount]=$choicename
let "setcount += 1"
let "choicecount += 1"
echo "${choicecount}) ${choicename}"
done
while true; do
read -p "Which paks to install? (enter number or (i) to install or (x) to exit)" pak
#exit?
if [[ $pak = [xX] ]]; then
exit 0
fi
# test if installation now
if [[ $pak = [iI] ]]; then
echo ""
echo "You will install now"
let setcount=0
while [ $setcount -lt $choicecount ]; do
if [ ${installpak[$setcount]} -gt 0 ]; then
let "displaycount=$setcount+1"
echo "${displaycount}) ${choices[$setcount]}"
fi
let "setcount += 1"
done
echo "into directory '$(pwd)'"
read -p "Is this correct? (y/n)" yn
if [[ $yn = [yY] ]]; then
break
fi
# edit again
echo ""
echo "-- Choose again one of these paks --"
let setcount=0
while [ $setcount -lt $choicecount ]; do
echo "${setcount}) ${choices[$setcount]}"
let "setcount += 1"
done
let "pak=0"
fi
# otherwise it should be a number
if [[ $pak =~ ^[0-9]+$ ]]; then
let "setcount=pak-1"
if [ $setcount -lt $choicecount ]; then
if [ $setcount -ge 0 ]; then
status=${installpak[$setcount]}
if [ $status -lt 1 ]; then
echo "adding ${choices[$setcount]}"
installpak[$setcount]=1
else
echo "not installing ${choices[$setcount]}"
installpak[$setcount]=0
fi
fi
fi
fi
done
echo ""
# install the regular pak sets first
let setcount=0
let "maxcount = ${#paksets[*]}"
fail=0
pushd .. 1>/dev/null
while [ "$setcount" -lt "$maxcount" ]; do
if [ "${installpak[$setcount]}" -gt 0 ]; then
urlname=${paksets[$setcount]}
zipname="${urlname##http*\/}"
echo "-- Installing ${choices[$setcount]} --"
tempzipname="$TEMP/$zipname"
download_and_install_pakset "$urlname" "$tempzipname" || {
echo "Error installing pakset ${choices[$setcount]}"
let "fail++"
}
echo ""
fi
let "setcount++"
done
popd 1>/dev/null
exit $fail