Some new games added, not all working yet, fixed the net play issue with topspeed3.

This commit is contained in:
Storm Dragon 2020-08-28 20:11:17 -04:00
parent 597aa203c4
commit c432af8ff0

View File

@ -161,6 +161,7 @@ export WINEDEBUG="-all"
# The list of games available for installation. # The list of games available for installation.
# Use menu friendly names. # Use menu friendly names.
gameList=( gameList=(
"Battle Zone"
"Bloodshed" "Bloodshed"
"Chopper Challenge" "Chopper Challenge"
"Kitchensinc Games" "Kitchensinc Games"
@ -171,6 +172,7 @@ gameList=(
"Top Speed 3" "Top Speed 3"
"Q9" "Q9"
"RS Games" "RS Games"
"Undead Assault"
) )
# With no arguments, open the game launcher. # With no arguments, open the game launcher.
@ -194,12 +196,22 @@ done
# Install game based on the selection above. # Install game based on the selection above.
case "${game}" in case "${game}" in
"Battle Zone")
# Speech not working through sapi.
export winVer="win7"
install_wine_bottle speechsdk
wget -O "$WINEPREFIX/drive_c/Program Files/battle zone 13.5 setup.exe" "https://www.agarchive.net/games/gameMadnessInteractive/battle%20zone%2013.5%20setup.exe"
wine "$WINEPREFIX/drive_c/Program Files/battle zone 13.5 setup.exe" /silent
add_launcher "c:\Program Files\Battle Zone\ss.exe"
rm -f "$WINEPREFIX/drive_c/Program Files/battle zone 13.5 setup.exe"
;;
"Bloodshed") "Bloodshed")
install_wine_bottle speechsdk install_wine_bottle speechsdk
wget -O "$WINEPREFIX/drive_c/Program Files/bloodshed.exe" "http://www.samtupy.com/games/bloodshed.exe" wget -O "$WINEPREFIX/drive_c/Program Files/bloodshed.exe" "http://www.samtupy.com/games/bloodshed.exe"
add_launcher "c:\Program Files\bloodshed.exe" add_launcher "c:\Program Files\bloodshed.exe"
;; ;;
"Chopper Challenge") "Chopper Challenge")
# Freezes at menu
install_wine_bottle vb6run dx8vb install_wine_bottle vb6run dx8vb
wget -O "$WINEPREFIX/drive_c/Program Files/chopper challenge setup.exe" "https://www.agarchive.net/games/XSight/chopper%20challenge%20setup.exe" wget -O "$WINEPREFIX/drive_c/Program Files/chopper challenge setup.exe" "https://www.agarchive.net/games/XSight/chopper%20challenge%20setup.exe"
wine "$WINEPREFIX/drive_c/Program Files/chopper challenge setup.exe" & wine "$WINEPREFIX/drive_c/Program Files/chopper challenge setup.exe" &
@ -226,6 +238,7 @@ case "${game}" in
rm -f "$WINEPREFIX/drive_c/Program Files/RailRacerDemo10Setup.exe" rm -f "$WINEPREFIX/drive_c/Program Files/RailRacerDemo10Setup.exe"
;; ;;
"River Raiders") "River Raiders")
# Choppy sound under water.
install_wine_bottle install_wine_bottle
wget -O "$WINEPREFIX/drive_c/Program Files/River Raiders.exe" "https://www.agarchive.net/games/XSight/River%20Raiders%201.3.5.exe" wget -O "$WINEPREFIX/drive_c/Program Files/River Raiders.exe" "https://www.agarchive.net/games/XSight/River%20Raiders%201.3.5.exe"
wine "c:\Program Files\River Raiders.exe" /silent & wine "c:\Program Files\River Raiders.exe" /silent &
@ -250,7 +263,7 @@ case "${game}" in
add_launcher "c:\Program Files\TheBlindSwordsman.exe" add_launcher "c:\Program Files\TheBlindSwordsman.exe"
;; ;;
"Top Speed 3") "Top Speed 3")
install_wine_bottle install_wine_bottle directplay
wget -O "$WINEPREFIX/drive_c/Program Files/Tspeed_3.0.3.exe" "https://github.com/PlayingintheDark/TopSpeed/releases/download/h/Tspeed_3.0.3.exe" wget -O "$WINEPREFIX/drive_c/Program Files/Tspeed_3.0.3.exe" "https://github.com/PlayingintheDark/TopSpeed/releases/download/h/Tspeed_3.0.3.exe"
wine "$WINEPREFIX/drive_c/Program Files/Tspeed_3.0.3.exe" /silent wine "$WINEPREFIX/drive_c/Program Files/Tspeed_3.0.3.exe" /silent
add_launcher "c:\Program Files\Playing in the dark\Top Speed 3\TopSpeed.exe" add_launcher "c:\Program Files\Playing in the dark\Top Speed 3\TopSpeed.exe"
@ -264,12 +277,21 @@ case "${game}" in
rm -f "$WINEPREFIX/drive_c/Program Files/q9_english_installer.exe" rm -f "$WINEPREFIX/drive_c/Program Files/q9_english_installer.exe"
;; ;;
"RS Games") "RS Games")
# Does not speak with sapi.
install_wine_bottle speechsdk install_wine_bottle speechsdk
wget -O "$WINEPREFIX/drive_c/Program Files/rsgames-client-setup-2.01.exe" "http://rsgames.org/rsdownloads/rsgclient/rsgames-client-setup-2.01.exe" wget -O "$WINEPREFIX/drive_c/Program Files/rsgames-client-setup-2.01.exe" "http://rsgames.org/rsdownloads/rsgclient/rsgames-client-setup-2.01.exe"
wine "$WINEPREFIX/drive_c/Program Files/rsgames-client-setup-2.01.exe" /silent wine "$WINEPREFIX/drive_c/Program Files/rsgames-client-setup-2.01.exe" /silent
add_launcher "c:\Program Files\RS Games Client\rsg.exe" add_launcher "c:\Program Files\RS Games Client\rsg.exe"
rm -f "$WINEPREFIX/drive_c/Program Files/rsgames-client-setup-2.01.exe" rm -f "$WINEPREFIX/drive_c/Program Files/rsgames-client-setup-2.01.exe"
;; ;;
"Undead Assault")
# Does not speak with sapi.
install_wine_bottle speechsdk vcrun6sp6
wget -O "$WINEPREFIX/drive_c/Program Files/undead_assault.zip" "http://undead-assault.com/static/files/public/undead_assault.zip"
unzip -d "$WINEPREFIX/drive_c/Program Files" "$WINEPREFIX/drive_c/Program Files/undead_assault.zip"
rm -f "$WINEPREFIX/drive_c/Program Files/undead_assault.zip"
add_launcher "c:\Program Files\Undead Assault.exe"
;;
*) *)
exit 0 exit 0
;; ;;