Cars 2

Informations

Creator Message
GNU_Raziel

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 90310
Wine: System

Feedbacks

Description

Racing game 3D, 2011. Wikipedia.

Screenshots

MiniatureMiniature

Source code

#!/bin/bash
# Date : (2011-16-07 21-00)
# Last revision : see changelog
# Wine version used : 
# Distribution used to test : Linux Mint 11 x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [GNU_Raziel] (2011-16-07 21-00)
#   Initial script.
# [Dadu042] (2020-02-23 23:41)
#   Wine 1.3.23 -> system's wine.
#   Standardize.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Cars 2"
PREFIX="cars2"
GAME_VMS="256"

# Starting the script
POL_SetupWindow_Init

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Avalanche Software" "http://www.avalanchesoftware.com/" "GNU_Raziel" "$PREFIX" 

# Game protection warning
POL_Call POL_Function_NoCDWarning

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate

# Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,LOCAL"

# Installing mandatory dependencies
POL_Call POL_Install_vcrun2008

# Begin game installation
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$(eval_gettext 'Please insert game media into your disk drive\nif not already done.')"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "icons/cars2.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        #Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run:')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
fi

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

## Fix for this game
# Sound problem fix - pulseaudio related
POL_Wine_OverrideDLL "" "mmdevapi" # Only if wine < 1.3.25
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix

## PlayOnMac Section
[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
## End Section

# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
        rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
fi

# Making shortcut
POL_Shortcut "Game-Cars.exe" "$TITLE" "$TITLE.png" "" "Game;"

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Sunday 23 February 2020 at 8:59
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,23 +1,27 @@
 #!/bin/bash
 # Date : (2011-16-07 21-00)
-# Last revision : (2011-08-12 17:10)
-# Wine version used : 1.3.23
+# Last revision : see changelog
+# Wine version used : 
 # Distribution used to test : Linux Mint 11 x64
 # Author : GNU_Raziel
 # Licence : Retail
 # Only For : http://www.playonlinux.com
+#
+# CHANGELOG
+# [GNU_Raziel] (2011-16-07 21-00)
+#   Initial script.
+# [Dadu042] (2020-02-23 23:41)
+#   Wine 1.3.23 -> system's wine.
+#   Standardize.
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Cars 2"
 PREFIX="cars2"
-WORKING_WINE_VERSION="1.3.23"
 GAME_VMS="256"
 
 # Starting the script
-rm "$POL_USER_ROOT/tmp/*.jpg"
-POL_GetSetupImages "http://files.playonlinux.com/resources/setups/cars2/top.jpg" "http://files.playonlinux.com/resources/setups/cars2/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 
 # Starting debugging API
@@ -25,12 +29,15 @@
 
 POL_SetupWindow_presentation "$TITLE" "Avalanche Software" "http://www.avalanchesoftware.com/" "GNU_Raziel" "$PREFIX" 
 
+# Game protection warning
+POL_Call POL_Function_NoCDWarning
+
 # Setting prefix path
 POL_Wine_SelectPrefix "$PREFIX"
 
 # Downloading wine if necessary and creating prefix
-POL_System_SetArch "auto"
-POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate
 
 # Choose between DVD and Digital Download version
 POL_SetupWindow_InstallMethod "DVD,LOCAL"
@@ -72,15 +79,10 @@
 # Cleaning temp
 if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
 	rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
-	chmod -R 777 "$POL_USER_ROOT/tmp/"
-	rm -rf "$POL_USER_ROOT/tmp/*"
 fi
 
 # Making shortcut
-POL_Shortcut "Game-Cars.exe" "$TITLE" "$TITLE.png" ""
-
-# Game protection warning
-POL_SetupWindow_message "$(eval_gettext 'You must disable anti-piracy protections of this game\nif you want to play it with wine.')" "$TITLE"
+POL_Shortcut "Game-Cars.exe" "$TITLE" "$TITLE.png" "" "Game;"
 
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2011-16-07 21-00)
# Last revision : see changelog
# Wine version used : 
# Distribution used to test : Linux Mint 11 x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [GNU_Raziel] (2011-16-07 21-00)
#   Initial script.
# [Dadu042] (2020-02-23 23:41)
#   Wine 1.3.23 -> system's wine.
#   Standardize.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Cars 2"
PREFIX="cars2"
GAME_VMS="256"

# Starting the script
POL_SetupWindow_Init

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Avalanche Software" "http://www.avalanchesoftware.com/" "GNU_Raziel" "$PREFIX" 

# Game protection warning
POL_Call POL_Function_NoCDWarning

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate

# Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,LOCAL"

# Installing mandatory dependencies
POL_Call POL_Install_vcrun2008

# Begin game installation
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$(eval_gettext 'Please insert game media into your disk drive\nif not already done.')"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "icons/cars2.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        #Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run:')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
fi

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

## Fix for this game
# Sound problem fix - pulseaudio related
POL_Wine_OverrideDLL "" "mmdevapi" # Only if wine < 1.3.25
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix

## PlayOnMac Section
[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
## End Section

# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
        rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
fi

# Making shortcut
POL_Shortcut "Game-Cars.exe" "$TITLE" "$TITLE.png" "" "Game;"

POL_SetupWindow_Close
exit 0

Replies