blob: c518fdb638fbd928d60d61183f4add05c2d163d0 (
plain)
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
|
#!/bin/sh
set -e
zenity() {
command zenity --width=700 --title="re3-launcher" --window-icon="/usr/share/pixmaps/re3.png" "$@"
}
patch() {
output="$(cp -av "/usr/share/games/re3/gamefiles"/* . 2>&1)" && error=$? || error=$?
if [ $error -ne 0 ]
then
zenity --text="Updating the game files failed:
$output" --error
exit $error
fi
zenity --text="Successfully updated the game files:
$output" --info
}
run() {
if [ "--patch" = "$1" ]
then
echo "force patching"
shift
patch
elif [ ! -r "gamecontrollerdb.txt" ]
then
echo "missing 'gamecontrollerdb.txt', patching needed"
if zenity --text="The game in '$PWD' is missing re3 specific resources, do you want to patch it?" --question
then
patch
fi
fi
echo "running re3 from '$PWD'"
exec re3 "$@"
}
for game_dir in \
"$HOME/.re3/Grand Theft Auto 3" \
"$HOME/.local/share/Steam/steamapps/common/Grand Theft Auto 3" \
"$PWD" \
; do
if [ -r "$game_dir/data/gta3.dat" ]
then
cd "$game_dir"
run "$@"
exit
fi
done
zenity --text="Games files not found." --error
exit 1
|