From 6d693737fb86d42fd3b22c2e4ef21a37ea31344f Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 1 Jul 2021 23:55:24 -0400 Subject: [PATCH] Added several more BG games. Still plenty more to go. --- audiogame-manager.sh | 54 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/audiogame-manager.sh b/audiogame-manager.sh index e5b53f6..8eea4f8 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -735,6 +735,7 @@ gameList=( "BG Chess Challenge" "BG Code Breaker" "BG Cribbage" + "BG Cribbage Solitaire" "BG Crossword Puzzle" "BG Free Cell Solitaire" "BG Hearts" @@ -742,11 +743,16 @@ gameList=( "BG LAP" "BG Master Mind" "BG Mine Sweeper" + "BG Nomination Whist" "BG Penguin Solitaire" + "BG Poker Solitaire" + "BG Pyramid Solitaire" "BG Scorpion Solitaire" + "BG Spider Solitaire" "BG Scrabble" "BG Sudoku" "BG Uno" + "BG Word Jumble" "BG Word Target" "BG Yahtzee" "Bloodshed" @@ -1009,6 +1015,14 @@ case "${game}" in wine "${cache}/${bgInstaller}" /silent add_launcher "c:\Program Files\Games\CribbageB\CribbageB.exe" ;; + "BG Cribbage Solitaire") + bgInstaller="BCS32Setup10.exe" + export bottle="bg" + get_installer "$bgInstaller" "http://www.spoonbillsoftware.com.au/bggames.htm" + install_wine_bottle speechsdk + wine "${cache}/${bgInstaller}" /silent + add_launcher "c:\Program Files\Games\CribSolB\CribSolB.exe" + ;; "BG Crossword Puzzle") bgInstaller="BGX32Setup10h.exe" export bottle="bg" @@ -1065,6 +1079,14 @@ case "${game}" in wine "${cache}/${bgInstaller}" /silent add_launcher "c:\Program Files\Games\MinesweeperB\MinesweeperB.exe" ;; + "BG Nomination Whist") + bgInstaller="BNW32Setup10a.exe" + export bottle="bg" + get_installer "${bgInstaller}" "http://www.spoonbillsoftware.com.au/bggames.htm" + install_wine_bottle speechsdk + wine "${cache}/${bgInstaller}" /silent + add_launcher "c:\Program Files\Games\NomWhistB/NomWhistB.exe" + ;; "BG Penguin Solitaire") bgInstaller="BPS32Setup10c.exe" export bottle="bg" @@ -1073,6 +1095,22 @@ case "${game}" in wine "${cache}/${bgInstaller}" /silent add_launcher "c:\Program Files\Games\PenguinB\PenguinB.exe" ;; + "BG Poker Solitaire") + bgInstaller="BPS32Setup10.exe" + export bottle="bg" + get_installer "$bgInstaller" "http://www.spoonbillsoftware.com.au/bggames.htm" + install_wine_bottle speechsdk + wine "${cache}/${bgInstaller}" /silent + add_launcher "c:\Program Files\Games\PokerSolB\PokerSolB.exe" + ;; + "BG Pyramid Solitaire") + bgInstaller="PSB32Setup10a.exe" + export bottle="bg" + get_installer "$bgInstaller" "http://www.spoonbillsoftware.com.au/bggames.htm" + install_wine_bottle speechsdk + wine "${cache}/${bgInstaller}" /silent + add_launcher "c:\Program Files\Games\PyramidB\PyramidB.exe" + ;; "BG Scorpion Solitaire") bgInstaller="BSS32Setup10.exe" export bottle="bg" @@ -1081,6 +1119,14 @@ case "${game}" in wine "${cache}/${bgInstaller}" /silent add_launcher "c:\Program Files\Games\ScorpionB\ScorpionB.exe" ;; + "BG Spider Solitaire") + bgInstaller="SPB32Setup10b.exe" + export bottle="bg" + get_installer "$bgInstaller" "http://www.spoonbillsoftware.com.au/bggames.htm" + install_wine_bottle speechsdk + wine "${cache}/${bgInstaller}" /silent + add_launcher "c:\Program Files\Games\SpiderB\SpiderB.exe" + ;; "BG Scrabble") bgInstaller="BGS32Setup20.exe" export bottle="bg" @@ -1105,6 +1151,14 @@ case "${game}" in wine "${cache}/${bgInstaller}" /silent add_launcher "c:\Program Files\Games\UnoB\UnoB.exe" ;; + "BG Word Jumble") + bgInstaller="BWJ32Setup10.exe" + export bottle="bg" + get_installer "${bgInstaller}" "http://www.spoonbillsoftware.com.au/bggames.htm" + install_wine_bottle speechsdk + wine "${cache}/${bgInstaller}" /silent + add_launcher "c:\Program Files\Games\WordJumbleB\WordJumbleB.exe" + ;; "BG Word Target") bgInstaller="WTB32Setup10a.exe" export bottle="bg"