Merge branch 'testing' new changes are coming in testing that may cause
instability so checkpointing while it's stable.
This commit is contained in:
commit
4cce555b7d
@ -776,6 +776,12 @@ game_launcher() {
|
||||
popd
|
||||
exit 0
|
||||
fi
|
||||
if [[ "$game" =~ interceptor ]]; then
|
||||
pushd "$(winepath "$winePath")"
|
||||
wine "$wineExec"
|
||||
popd
|
||||
exit 0
|
||||
fi
|
||||
if [[ -d "${WINEPREFIX}/drive_c/windows/syswow64" ]]; then
|
||||
wine64 start /realtime /d "${winePath}" "$wineExec"
|
||||
else
|
||||
@ -913,6 +919,7 @@ gameList=(
|
||||
"Castaways"
|
||||
"Castaways 2"
|
||||
"Challenge of the Horse"
|
||||
"Chillingham"
|
||||
#"Chopper Challenge"
|
||||
"Christmas WhoopAss"
|
||||
"Code Dungeon"
|
||||
@ -929,7 +936,7 @@ gameList=(
|
||||
"Duck Hunt"
|
||||
"DynaMan"
|
||||
"Easter Quest"
|
||||
#"Entombed"
|
||||
"Entombed"
|
||||
"ESP Pinball Classic"
|
||||
"ESP Pinball Extreme"
|
||||
"ESP Pinball Party Pack"
|
||||
@ -940,10 +947,12 @@ gameList=(
|
||||
"Fuck That Bird"
|
||||
"Future Life"
|
||||
"GMA Tank Commander"
|
||||
"Grizzly Gulch"
|
||||
"Hammer of Glory"
|
||||
#"Hearthstone"
|
||||
"Hunter"
|
||||
"Insect Therapy"
|
||||
"Interceptor"
|
||||
"Judgement Day"
|
||||
"Kitchensinc Games"
|
||||
"Kringle Crash"
|
||||
@ -1007,6 +1016,7 @@ gameList=(
|
||||
"Thief"
|
||||
"Traders of Known Space"
|
||||
#"Three D velocity"
|
||||
"Tomb Hunter"
|
||||
"Top Speed 2"
|
||||
"Top Speed 3"
|
||||
"Triple Triad"
|
||||
@ -1588,6 +1598,12 @@ case "${game}" in
|
||||
find "${WINEPREFIX}" -type f -name "nvdaControllerClient32.dll" -exec rm -fv "{}" \;
|
||||
add_launcher "c:\Program Files\\${game}\game.exe"
|
||||
;;
|
||||
"Chillingham")
|
||||
install_wine_bottle vb6run mfc42
|
||||
download "https://stormgames.wolfe.casa/downloads/chillingham.zip"
|
||||
unzip -d "$WINEPREFIX/drive_c/Program Files" "$cache/chillingham.zip"
|
||||
add_launcher "c:\Program Files\chillingham\Chillingham.exe"
|
||||
;;
|
||||
"Chopper Challenge")
|
||||
# Freezes at menu
|
||||
install_wine_bottle vb6run dx8vb speechsdk
|
||||
@ -1725,11 +1741,11 @@ case "${game}" in
|
||||
;;
|
||||
"Entombed")
|
||||
export winVer="win7"
|
||||
install_wine_bottle speechsdk msvcrt40 gdiplus ie7
|
||||
install_wine_bottle speechsdk msvcrt40 gdiplus ie7 wmp11 mf
|
||||
# Ok, more dotnet.
|
||||
LC_ALL=C DISPLAY="" winetricks -q dotnet462
|
||||
LC_ALL=C DISPLAY="" winetricks -q dotnet40 xna40
|
||||
wineserver -k # Sigh.
|
||||
download "http://blind-games.com/newentombed/EntombedSetup.exe" "https://download.microsoft.com/download/E/C/1/EC1B2340-67A0-4B87-85F0-74D987A27160/SSCERuntime-ENU.exe"
|
||||
download "http://blind-games.com/newentombed/EntombedSetup.exe" "https://download.microsoft.com/download/E/C/1/EC1B2340-67A0-4B87-85F0-74D987A27160/SSCERuntime-ENU.exe" "https://stormgames.wolfe.casa/downloads/Entombed.exe.config" "https://stormgames.wolfe.casa/downloads/mfplat.dll"
|
||||
mkdir -p "${WINEPREFIX}/drive_c/temp"
|
||||
pushd "${WINEPREFIX}/drive_c/temp"
|
||||
7z e "${cache}/SSCERuntime-ENU.exe"
|
||||
@ -1742,8 +1758,13 @@ case "${game}" in
|
||||
popd
|
||||
wine "${cache}/EntombedSetup.exe" /silent
|
||||
pushd "${WINEPREFIX}/drive_c/Program Files/Entombed"
|
||||
cp ../Microsoft\ SQL\ Server\ Compact\ Edition/v3.5/System.Data.SqlServerCe.Entity.dll ../Microsoft\ SQL\ Server\ Compact\ Edition/v3.5/Desktop/System.Data.SqlServerCe.dll .
|
||||
cp ../Microsoft\ SQL\ Server\ Compact\ Edition/v3.5/Private/System.Data.SqlServerCe.Entity.dll ../Microsoft\ SQL\ Server\ Compact\ Edition/v3.5/Private/System.Data.SqlServerCe.dll .
|
||||
cp ../Microsoft\ SQL\ Server\ Compact\ Edition/v3.5/sql* .
|
||||
cp "${cache}/Entombed.exe.config" .
|
||||
popd
|
||||
if [ ! -f "${WINEPREFIX}/drive_c/windows/system32/mfplat.dll" ] ; then
|
||||
cp "${cache}/mfplat.dll" "${WINEPREFIX}/drive_c/windows/system32/"
|
||||
fi
|
||||
add_launcher "c:\Program Files\Entombed\Entombed.exe"
|
||||
;;
|
||||
"ESP Pinball Classic")
|
||||
@ -1849,6 +1870,12 @@ case "${game}" in
|
||||
echo -e "\"Firstname Lastname\"\n\"Email address\"\n\"Country code\""
|
||||
add_launcher "c:\Program Files\GMA Tank Commander\gtc.exe"
|
||||
;;
|
||||
"Grizzly Gulch")
|
||||
install_wine_bottle vb6run mfc42
|
||||
download "https://stormgames.wolfe.casa/downloads/grizzly-gulch.zip"
|
||||
unzip -d "$WINEPREFIX/drive_c/Program Files" "$cache/grizzly-gulch.zip"
|
||||
add_launcher "c:\Program Files\grizzly-gulch\Grizzly Gulch.exe"
|
||||
;;
|
||||
"Hammer of Glory")
|
||||
export bottle="oriol-gomez"
|
||||
export winVer="win7"
|
||||
@ -1919,6 +1946,12 @@ case "${game}" in
|
||||
unzip -d "$WINEPREFIX/drive_c/Program Files/insect therapy" "${cache}/insect_en.zip"
|
||||
add_launcher "c:\Program Files\insect therapy\game.exe"
|
||||
;;
|
||||
"Interceptor")
|
||||
install_wine_bottle
|
||||
download "http://www.valiantgalaxy.com/interceptor/Interceptor0.0.2.0Installer.exe"
|
||||
wine "${cache}/Interceptor0.0.2.0Installer.exe" /silent
|
||||
add_launcher "c:\Program Files\VGA\interceptor\launch_interceptor.exe"
|
||||
;;
|
||||
"Judgement Day")
|
||||
install_wine_bottle vb6run dx8vb quartz
|
||||
download "http://files.l-works.net/judgmentdayfullsetup.exe"
|
||||
@ -2456,6 +2489,13 @@ EOF
|
||||
wine "${cache}/Tspeed_2.00.exe" /silent
|
||||
add_launcher "c:\Program Files\Playing in the dark\Top Speed 2\TopSpeed.exe"
|
||||
;;
|
||||
"Tomb Hunter")
|
||||
install_wine_bottle speechsdk
|
||||
download "http://masonasons.me/softs/th_freeware_password_is_tombhunter.7z"
|
||||
7z e -o"$WINEPREFIX/drive_c/Program Files/Tomb Hunter" "${cache}/th_freeware_password_is_tombhunter.7z" -ptombhunter
|
||||
find "${WINEPREFIX}" -type f -name "nvdaControllerClient32.dll" -exec rm -fv "{}" \;
|
||||
add_launcher "c:\Program Files\Tomb Hunter\th.exe"
|
||||
;;
|
||||
"Top Speed 3")
|
||||
install_wine_bottle directplay
|
||||
download "https://github.com/PlayingintheDark/TopSpeed/releases/download/h/Tspeed_3.0.3.exe"
|
||||
|
@ -39,7 +39,7 @@
|
||||
|
||||
cache="${XDG_CACHE_HOME:-$HOME/.cache}/audiogame-manager"
|
||||
updateURL="https://www.kaldobsky.com/audiogames"
|
||||
updateFiles=("Swamp.zip")
|
||||
updateFiles=("SwampPatch.zip")
|
||||
|
||||
|
||||
dialog --backtitle "Audiogame manager" --yesno "If you do not have a full 32 bit gstreamer installation, the Swamp music can cause stuttering and crashes. Would you like to remove the music directory after installation?" -1 -1 --stdout
|
||||
|
Loading…
Reference in New Issue
Block a user