summaryrefslogtreecommitdiff
path: root/includes/cd-list.sh~
blob: 17cdfe6dc7bfe2720da51322b94aac4cf25b06e9 (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
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
#!/bin/bash
# Copyright 2009 Nick White
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# See <http://www.gnu.org/licenses/> for a copy of the GNU General
# Public License.
#
# Selects the appropriate installer(s) for an Infinity Engine game,
# based on the CD inserted

while [ -z "$MINSCRIPT" ]; do
	case "$1" in
		$BG1_5CD_INTL_MD5 )
			FULLGAMENAME="Baldurs Gate 1: 5CD International version"
			SHORTGAMENAME="baldursgate1"
			MINSCRIPT="bg1/install-5cd-minimal.sh"
			EXTRASCRIPT="bg1/install-5cd-extra.sh"
			PATCHES="bg1/install-patch-intl.sh bg1/install-patch-baldurdash-fix.sh bg1/install-patch-baldurdash-text.sh"
			WINDOWSFILES="baldur.exe bgmain.exe config.exe keymap.ini luaauto.cfg update.url"
			CDNO=5
			;;
		$BG1_TOTSC_3CD_US_MD5 )
			FULLGAMENAME="Baldurs Gate 1 & Tales of the Sword Coast: 3CD US version"
			SHORTGAMENAME="baldursgate1totsc"
			MINSCRIPT="bg1/install-3cd-minimal.sh"
			EXTRASCRIPT="bg1/install-3cd-extra.sh"
			PATCHES="bg1/install-patch-baldurdash-fix.sh bg1/install-patch-totsc-baldurdash-text.sh"
			WINDOWSFILES="baldur.exe bgmain.exe config.exe keymap.ini luaauto.cfg update.url"
			CDNO=3
			;;
		$BG1_TOTSC_1CD_UK_MD5 )
			FULLGAMENAME="Baldurs Gate 1 & Tales of the Sword Coast: 1CD UK version"
			SHORTGAMENAME="baldursgate1totsc"
			MINSCRIPT="bg1/install-1cd-totsc-uk.sh"
			PATCHES="bg1/install-patch-totsc-uk.sh bg1/install-patch-baldurdash-fix.sh bg1/install-patch-totsc-baldurdash-text.sh"
			WINDOWSFILES="bgmain2.exe baldur.exe config.exe mconvert.exe"
			;;
		$BG2_4CD_US_MD5 )
			FULLGAMENAME="Baldurs Gate 2 - Shadows of Amn: 4CD US version"
			SHORTGAMENAME="baldursgate2soa"
			MINSCRIPT="bg2/install-4cd-minimal-us.sh"
			# TODO: uncomment when complete EXTRASCRIPT="bg2/install-4cd-extra-us.sh"
			EXPANSIONSCRIPT=
			PATCHES="" # TODO: fill in patches
			# bg2/install-patch-soa-us.sh bg2/install-patch-baldurdash-fix.sh bg2/install-patch-soa-baldurdash-text.sh"
			WINDOWSFILES="bgdxtest.exe bggltest.exe glsetup.exe bgconfig.exe bgmain.exe charview.exe"
			;;
		# $BG2_TOB_1CD_US_MD5 )
		# 	FULLGAMENAME="Baldurs Gate 2 - Throne of Bhaal: 1CD US version"
		# 	SHORTGAMENAME="baldursgate2tob"
		# 	MINSCRIPT="bg2/install-1cd-tob-us.sh"
		# 	PATCHES="" # TODO: fill in patches
		#     # bg2/install-patch-totsc-uk.sh bg1/install-patch-baldurdash-fix.sh bg1/install-patch-totsc-baldurdash-text.sh"
		# 	# TODO: correct the list of windows files.
		#     WINDOWSFILES="" # "bgmain2.exe baldur.exe config.exe mconvert.exe"
		# 	;;
		$PST_2CD_MD5 )
			FULLGAMENAME="Planescape Torment: 2CD version"
			SHORTGAMENAME="planescapetorment"
			MINSCRIPT="pst/install-2cd-minimal.sh"
			EXTRASCRIPT="pst/install-2cd-extra.sh"
			WINDOWSFILES="torment.exe ereg"
			CDNO=2
			;;
		$PST_4CD_MD5 )
			FULLGAMENAME="Planescape Torment: 4CD version"
			SHORTGAMENAME="planescapetorment"
			MINSCRIPT="pst/install-4cd-minimal.sh"
			EXTRASCRIPT="pst/install-4cd-extra.sh"
			PATCHES="pst/install-patch-official.sh"
			WINDOWSFILES="torment.exe ereg"
			CDNO=4
			;;
		$IWD_2CD_UK_MD5 )
			FULLGAMENAME="Icewind Dale 2CD UK version"
			SHORTGAMENAME="icewinddale"
			MINSCRIPT="iwd/install-2cd-uk-minimal.sh"
			EXTRASCRIPT="iwd/install-2cd-uk-extra.sh"
			PATCHES="iwd/install-patch-uk-fix.sh iwd/install-patch-us.sh"
			WINDOWSFILES="3dfx.dll config.exe icewind.ini keymap.ini language.ini mpicewnd.mpi"
			CDNO=2
			;;
		* )
			echo "Unrecognised CD - please select game from menu"
			choosegame
			;;
	esac
done