Volvo - The Game

Informations

Creator Message
thib25 Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 12486
Wine: System

Feedbacks

Description

Car racing game (3D), 2009. Wikipedia (developer). Appdb.winehq.org

Downloadable from www.megagames.com and from Gamepressure.com

Screenshots

Miniature

Source code

#!/bin/bash
# Date : (2011-02-01 21-20)
# Last revision : see changelog
# Wine version used : 1.3.12, 3.0.3
# Distribution used to test : Ubuntu 18.04
# Author : thib25
# Licence : Retail

# CHANGELOG
# [thib25] (2011-02-01 21-20)
#   First script.
# [Dadu042] (2019-11-10)
#   Wine 1.3.12 -> 3.0.3
#   Standardize GAME_VMS
#   Warn about log file size.
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Volvo - The Game"
PREFIX="Volvo_Game"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="256"
 
URL="ftp://ftp.i3d.net/SimBin/volvo_thegame_1.0_setup.exe"
 
if [ "$POL_LANG" == "fr" ]; then
LNG_ABOUT="Ce jeu est gratuit et va être téléchargé par Playonlinux (environ 600 Mo).\nCela va durer un certain temps.\n\nVous pouvez, si vous disposez déjà du fichier, choisir d'installer le jeu avec ce fichier."
LNG_CHOOSE_MEDIA="Quelle souhaitez-vous faire?"
LNG_DOWNLOAD="Télécharger automatiquement le fichier"
LNG_CHOOSE="Choisir le fichier"
LNG_CHOOSE_QUESTION="Veuillez selectionner votre executable de $TITLE"
LNG_DOWNLOAD_PROGRESS="Téléchargement en cours..."
LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation."
LNG_INSTALL_ON="Installation en cours..."
LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 64)"
LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 64Mo de mémoire."
LNG_SUCCES="$TITLE a été installé avec succès."
else
LNG_ABOUT="This game is free et is going to be downloaded by Playonlinux (around 600 Mo).\nThis may take some time.\n\nYou can, if you already have the file, choose to install the game with this file."
LNG_CHOOSE_MEDIA="What version do you have?"
LNG_DOWNLOAD="Download automatically the file"
LNG_CHOOSE="Select the file"
LNG_CHOOSE_QUESTION="Please select your $TITLE executable"
LNG_DOWNLOAD_PROGRESS="Download in progress..."
LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation."
LNG_INSTALL_ON="Installation in progress..."
LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 64)"
LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 64Mo of memory."
LNG_SUCCES="$TITLE has been installed successfully."
fi
 
#starting the script
cd $REPERTOIRE/tmp
rm *.jpg
POL_SetupWindow_Init
  
POL_SetupWindow_presentation "$TITLE" "SimBin" "http://www.simbin.se/games/volvogame.htm" "thib25" "$PREFIX"

POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

select_prefix "$REPERTOIRE/wineprefix/$PREFIX"
POL_SetupWindow_prefixcreate
 
POL_SetupWindow_message "$LNG_ABOUT" "$TITLE"
 
#Choose to download the file or select it
POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_DOWNLOAD~$LNG_CHOOSE" "~"
  
if [ "$APP_ANSWER" == "$LNG_DOWNLOAD" ]; then
        GAME_MEDIAVERSION="DOWNLOAD"       
else
        GAME_MEDIAVERSION="SELECT"
fi
 
#downloading specific Wine
if [ "$MACHTYPE" == "x86_64-pc-linux-gnu" ]; then
        POL_Call POL_Install_wine64b
else
        POL_SetupWindow_install_wine "$WORKING_WINE_VERSION"
fi
Use_WineVersion "$WORKING_WINE_VERSION"
 
#fetching PROGRAMFILES environmental variable
POL_LoadVar_PROGRAMFILES
 
if [ "$GAME_MEDIAVERSION" == "DOWNLOAD" ]; then
    cd  $REPERTOIRE/tmp/
    POL_SetupWindow_download "$LNG_DOWNLOAD_PROGRESS" "$TITLE" "$URL"
    wine "volvo_thegame_1.0_setup.exe"
    POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
    rm *.exe
else
    #Asking for selecting the file
    cd $HOME
    POL_SetupWindow_browse "$LNG_CHOOSE_QUESTION" "$TITLE"
    SETUP_EXE="$APP_ANSWER"
    wine "$SETUP_EXE"
    POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
fi
 
#asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
   
#making shortcut
POL_SetupWindow_auto_shortcut "$PREFIX" "Volvo.exe" "$TITLE" "" "Game;"
Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to have huge log file, you should type \ninto Debug flags : fixme-all')" "$TITLE"

POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message
Dadu042 Sunday 10 November 2019 at 15:35
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,20 +1,29 @@
 #!/bin/bash
 # Date : (2011-02-01 21-20)
-# Last revision : (2011-02-01 21-20)
-# Wine version used : 1.3.12
-# Distribution used to test : Ubuntu 10.10
+# Last revision : see changelog
+# Wine version used : 1.3.12, 3.0.3
+# Distribution used to test : Ubuntu 18.04
 # Author : thib25
 # Licence : Retail
- 
+
+# CHANGELOG
+# [thib25] (2011-02-01 21-20)
+#   First script.
+# [Dadu042] (2019-11-10)
+#   Wine 1.3.12 -> 3.0.3
+#   Standardize GAME_VMS
+#   Warn about log file size.
+  
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
+  
 TITLE="Volvo - The Game"
 PREFIX="Volvo_Game"
-WORKING_WINE_VERSION="1.3.12"
-
+WORKING_WINE_VERSION="3.0.3"
+GAME_VMS="256"
+ 
 URL="ftp://ftp.i3d.net/SimBin/volvo_thegame_1.0_setup.exe"
-
+ 
 if [ "$POL_LANG" == "fr" ]; then
 LNG_ABOUT="Ce jeu est gratuit et va être téléchargé par Playonlinux (environ 600 Mo).\nCela va durer un certain temps.\n\nVous pouvez, si vous disposez déjà du fichier, choisir d'installer le jeu avec ce fichier."
 LNG_CHOOSE_MEDIA="Quelle souhaitez-vous faire?"
@@ -24,7 +33,7 @@
 LNG_DOWNLOAD_PROGRESS="Téléchargement en cours..."
 LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation."
 LNG_INSTALL_ON="Installation en cours..."
-LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 64)" 
+LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 64)"
 LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 64Mo de mémoire."
 LNG_SUCCES="$TITLE a été installé avec succès."
 else
@@ -36,74 +45,69 @@
 LNG_DOWNLOAD_PROGRESS="Download in progress..."
 LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation."
 LNG_INSTALL_ON="Installation in progress..."
-LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 64)" 
+LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 64)"
 LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 64Mo of memory."
 LNG_SUCCES="$TITLE has been installed successfully."
 fi
-
+ 
 #starting the script
 cd $REPERTOIRE/tmp
 rm *.jpg
 POL_SetupWindow_Init
- 
+  
 POL_SetupWindow_presentation "$TITLE" "SimBin" "http://www.simbin.se/games/volvogame.htm" "thib25" "$PREFIX"
- 
+
+POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 select_prefix "$REPERTOIRE/wineprefix/$PREFIX"
 POL_SetupWindow_prefixcreate
-
+ 
 POL_SetupWindow_message "$LNG_ABOUT" "$TITLE"
-
+ 
 #Choose to download the file or select it
 POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_DOWNLOAD~$LNG_CHOOSE" "~"
- 
+  
 if [ "$APP_ANSWER" == "$LNG_DOWNLOAD" ]; then
-	GAME_MEDIAVERSION="DOWNLOAD"	
+        GAME_MEDIAVERSION="DOWNLOAD"       
 else
-	GAME_MEDIAVERSION="SELECT"
+        GAME_MEDIAVERSION="SELECT"
 fi
-
+ 
 #downloading specific Wine
 if [ "$MACHTYPE" == "x86_64-pc-linux-gnu" ]; then
-	POL_Call POL_Install_wine64b
+        POL_Call POL_Install_wine64b
 else
-	POL_SetupWindow_install_wine "$WORKING_WINE_VERSION"
+        POL_SetupWindow_install_wine "$WORKING_WINE_VERSION"
 fi
 Use_WineVersion "$WORKING_WINE_VERSION"
-
+ 
 #fetching PROGRAMFILES environmental variable
 POL_LoadVar_PROGRAMFILES
-
+ 
 if [ "$GAME_MEDIAVERSION" == "DOWNLOAD" ]; then
-cd  $REPERTOIRE/tmp/
-POL_SetupWindow_download "$LNG_DOWNLOAD_PROGRESS" "$TITLE" "$URL"
-wine "volvo_thegame_1.0_setup.exe"
-POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
-rm *.exe
+    cd  $REPERTOIRE/tmp/
+    POL_SetupWindow_download "$LNG_DOWNLOAD_PROGRESS" "$TITLE" "$URL"
+    wine "volvo_thegame_1.0_setup.exe"
+    POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
+    rm *.exe
 else
-#Asking for selecting the file
-cd $HOME
-POL_SetupWindow_browse "$LNG_CHOOSE_QUESTION" "$TITLE"
-SETUP_EXE="$APP_ANSWER"
-wine "$SETUP_EXE"
-POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
+    #Asking for selecting the file
+    cd $HOME
+    POL_SetupWindow_browse "$LNG_CHOOSE_QUESTION" "$TITLE"
+    SETUP_EXE="$APP_ANSWER"
+    wine "$SETUP_EXE"
+    POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
 fi
-
-#asking about memory size of graphic card
-POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "128-256-320-384-512-640-768-896-1024-1792-2048" "-" "64"
-VMS="$APP_ANSWER"
  
-cd "$WINEPREFIX/drive_c/windows/temp/"
-echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > vms.reg
-echo "\"VideoMemorySize\"=\"$VMS\"" >> vms.reg
-regedit vms.reg
-if [ "$VMS" -lt "64" ]; then
-POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE"
-fi
-
+#asking about memory size of graphic card
+POL_SetupWindow_VMS $GAME_VMS
+   
 #making shortcut
-POL_SetupWindow_auto_shortcut "$PREFIX" "Volvo.exe" "$TITLE" "" ""
+POL_SetupWindow_auto_shortcut "$PREFIX" "Volvo.exe" "$TITLE" "" "Game;"
 Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"
- 
+
+POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to have huge log file, you should type \ninto Debug flags : fixme-all')" "$TITLE"
+
 POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
 POL_SetupWindow_Close
 exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2011-02-01 21-20)
# Last revision : see changelog
# Wine version used : 1.3.12, 3.0.3
# Distribution used to test : Ubuntu 18.04
# Author : thib25
# Licence : Retail

# CHANGELOG
# [thib25] (2011-02-01 21-20)
#   First script.
# [Dadu042] (2019-11-10)
#   Wine 1.3.12 -> 3.0.3
#   Standardize GAME_VMS
#   Warn about log file size.
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Volvo - The Game"
PREFIX="Volvo_Game"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="256"
 
URL="ftp://ftp.i3d.net/SimBin/volvo_thegame_1.0_setup.exe"
 
if [ "$POL_LANG" == "fr" ]; then
LNG_ABOUT="Ce jeu est gratuit et va être téléchargé par Playonlinux (environ 600 Mo).\nCela va durer un certain temps.\n\nVous pouvez, si vous disposez déjà du fichier, choisir d'installer le jeu avec ce fichier."
LNG_CHOOSE_MEDIA="Quelle souhaitez-vous faire?"
LNG_DOWNLOAD="Télécharger automatiquement le fichier"
LNG_CHOOSE="Choisir le fichier"
LNG_CHOOSE_QUESTION="Veuillez selectionner votre executable de $TITLE"
LNG_DOWNLOAD_PROGRESS="Téléchargement en cours..."
LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation."
LNG_INSTALL_ON="Installation en cours..."
LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 64)"
LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 64Mo de mémoire."
LNG_SUCCES="$TITLE a été installé avec succès."
else
LNG_ABOUT="This game is free et is going to be downloaded by Playonlinux (around 600 Mo).\nThis may take some time.\n\nYou can, if you already have the file, choose to install the game with this file."
LNG_CHOOSE_MEDIA="What version do you have?"
LNG_DOWNLOAD="Download automatically the file"
LNG_CHOOSE="Select the file"
LNG_CHOOSE_QUESTION="Please select your $TITLE executable"
LNG_DOWNLOAD_PROGRESS="Download in progress..."
LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation."
LNG_INSTALL_ON="Installation in progress..."
LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 64)"
LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 64Mo of memory."
LNG_SUCCES="$TITLE has been installed successfully."
fi
 
#starting the script
cd $REPERTOIRE/tmp
rm *.jpg
POL_SetupWindow_Init
  
POL_SetupWindow_presentation "$TITLE" "SimBin" "http://www.simbin.se/games/volvogame.htm" "thib25" "$PREFIX"

POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

select_prefix "$REPERTOIRE/wineprefix/$PREFIX"
POL_SetupWindow_prefixcreate
 
POL_SetupWindow_message "$LNG_ABOUT" "$TITLE"
 
#Choose to download the file or select it
POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_DOWNLOAD~$LNG_CHOOSE" "~"
  
if [ "$APP_ANSWER" == "$LNG_DOWNLOAD" ]; then
        GAME_MEDIAVERSION="DOWNLOAD"       
else
        GAME_MEDIAVERSION="SELECT"
fi
 
#downloading specific Wine
if [ "$MACHTYPE" == "x86_64-pc-linux-gnu" ]; then
        POL_Call POL_Install_wine64b
else
        POL_SetupWindow_install_wine "$WORKING_WINE_VERSION"
fi
Use_WineVersion "$WORKING_WINE_VERSION"
 
#fetching PROGRAMFILES environmental variable
POL_LoadVar_PROGRAMFILES
 
if [ "$GAME_MEDIAVERSION" == "DOWNLOAD" ]; then
    cd  $REPERTOIRE/tmp/
    POL_SetupWindow_download "$LNG_DOWNLOAD_PROGRESS" "$TITLE" "$URL"
    wine "volvo_thegame_1.0_setup.exe"
    POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
    rm *.exe
else
    #Asking for selecting the file
    cd $HOME
    POL_SetupWindow_browse "$LNG_CHOOSE_QUESTION" "$TITLE"
    SETUP_EXE="$APP_ANSWER"
    wine "$SETUP_EXE"
    POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
fi
 
#asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
   
#making shortcut
POL_SetupWindow_auto_shortcut "$PREFIX" "Volvo.exe" "$TITLE" "" "Game;"
Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to have huge log file, you should type \ninto Debug flags : fixme-all')" "$TITLE"

POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
POL_SetupWindow_Close
exit

Replies

Dadu042 Monday 3 June 2019 at 12:45
Dadu042

Message

Download URL is dead (note: File size < 600 MB).

Replies

Tuesday 17 September 2019 at 9:28
App switched to testing.