Mafia II
Informations
| Creator | Wiadmości | 
|---|---|
| GNU_Raziel   
 | InformationThis installer has been approved by the team. InformationsPlatforms:   Feedbacks0 0 DescriptionEnglish : Français : ScreenshotsSource code#!/bin/bash
# Date : (2010-18-10 21-00)
# Last revision : (2019-08-09)
# Wine version used : 1.3.2, 1.3.15, 1.3.23
# Distribution used to test : Xubuntu 18.04 x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
#
#
# CHANGELOG:
# [GNU_Raziel] (2010-10-18)
#   First script.
# [Dadu042] (2019-08-09)
#   (I try to install the 1.0 DVD-ROM retail, but fail because of POL and Steam broken feature)
#   Wine 1.3.23 -> 2.22 (installing with 1.9.24 does fail because POL's 4.3.4 GUI don't appear fully on Xubuntu 18.04 x64).
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Mafia II"
PREFIX="mafia_II"
WORKING_WINE_VERSION="2.22"
  
if [ "$POL_LANG" == "fr" ]; then
LNG_CHOOSE_MEDIA="Quelle version possédez-vous?"
LNG_DVD="Version DVD"
LNG_STEAM="Version Steam Store"
LNG_DDV="Version Digital Download"
LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE"
LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait."
LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation."
LNG_CHOOSE_EDITION="Quelle edition possédez-vous ?"
LNG_NORMAL="Version normale"
LNG_DELUXE="Version Digital Deluxe"
LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera 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 ?"
LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 256 Mo de mémoire."
LNG_SUCCES="$TITLE a été installé avec succès."
else
LNG_CHOOSE_MEDIA="Which version do you have?"
LNG_DVD="DVD Version"
LNG_STEAM="Steam Store Version"
LNG_DDV="Digital Download Version"
LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable"
LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done."
LNG_WAIT_END="Click on \"Forward\" ONLY when the game installation is finished\nor you will have to redo the installation."
LNG_CHOOSE_EDITION="Which edition do you have?"
LNG_NORMAL="Normal version"
LNG_DELUXE="Digital Deluxe version"
LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation."
LNG_INSTALL_ON="Installation in progress..."
LNG_GAME_VMS="How much memory does your graphics board have?"
LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 256 MB of memory."
LNG_SUCCES="$TITLE has been installed successfully."
fi
  
# Starting the script
rm "$POL_USER_ROOT/tmp/*.jpg"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mafia2/top.jpg" "http://files.playonlinux.com/resources/setups/mafia2/left.jpg" "$TITLE"
POL_SetupWindow_InitWithImages
 
POL_SetupWindow_presentation "$TITLE" "2K Games" "http://www.mafia2game.com/" "GNU_Raziel" "$PREFIX"
  
select_prefix "$POL_USER_ROOT/wineprefix/$PREFIX"
 
# 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"
 
# Creating prefix 
POL_SetupWindow_prefixcreate
 
# Choose between DVD and Digital Download version
POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "$TITLE" "$LNG_DVD~$LNG_STEAM~$LNG_DDV" "~"
  
if [ "$APP_ANSWER" == "$LNG_DVD" ]; then
        GAME_MEDIAVERSION="DVD"
elif [ "$APP_ANSWER" == "$LNG_STEAM" ]; then
        GAME_MEDIAVERSION="STEAM"
else
        GAME_MEDIAVERSION="DD"
fi
 
# Installing mandatory dependencies
if [ "$GAME_MEDIAVERSION" == "DVD" ]; then
        POL_Call POL_Install_vcrun2005
        POL_Call POL_Install_gecko
        fonts_to_prefix
elif [ "$GAME_MEDIAVERSION" == "STEAM" ]; then
        POL_Call POL_Install_steam
else
        POL_Call POL_Install_vcrun2005
fi
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_physx
  
if [ "$GAME_MEDIAVERSION" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$LNG_INSERT_MEDIA" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "Setup.exe"
        # Useless. To try: wininet, winhttp, repair POL's script for Steam. (Dadu042, 2019).
        # POL_Call POL_Install_steam
        wine start /unix "$CDROM/Setup.exe"
        POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
elif [ "$GAME_MEDIAVERSION" == "STEAM" ]; then
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_SetupWindow_menu "$LNG_CHOOSE_EDITION" "$TITLE" "$LNG_NORMAL~$LNG_DELUXE" "~"
        if [ "$APP_ANSWER" == "$LNG_NORMAL" ]; then
                wine "Steam.exe" -applaunch 50130
        else
                wine "Steam.exe" -applaunch 50460
        fi
        POL_SetupWindow_message "$LNG_WAIT_STEAM_END" "$TITLE"
else
        # Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
        wine start /unix "$SETUP_EXE"
        wineserver -w
        POL_SetupWindow_detect_exit
fi
 
# Asking about memory size of graphic card
POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "64-128-256-320-384-512-640-768-896-1024-1536-1792-2048-3072-4096" "-" "256"
VMS="$APP_ANSWER"
  
cd "$WINEPREFIX/drive_c/windows/temp/"
cat << EOF > vms.reg
[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
"VideoMemorySize"="$VMS"
EOF
regedit vms.reg
if [ "$VMS" -lt "256" ]; then
        POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE"
fi
 
## Fix for this game
if [ "$GAME_MEDIAVERSION" != "STEAM" ]; then
        #Fix for Steam - Empty value = disabled
        POL_Call POL_Function_OverrideDLL "" "gameoverlayrenderer"
fi
cat << EOF > "$POL_USER_ROOT/tmp/tweak.reg"
[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
"UseGLSL"="disabled"
"OffscreenRenderingMode"="fbo"
"DirectDrawRenderer"="opengl"
"RenderTargetLockMode"="readtex"
"Multisampling"="enabled"
EOF
regedit "$POL_USER_ROOT/tmp/tweak.reg"
# Fix for first start crash
WINE_USER=`id -un`
WIDTH=`xrandr -q | grep "current" | awk '{ print $8 }'`
HEIGHT=`xrandr -q | grep "current" | awk '{ print $10 }' | tr -d ","`
mkdir -p "$WINEPREFIX/drive_c/users/$WINE_USER/Local Settings/Application Data/2K Games/Mafia II/Saves/"
echo "0 0 $WIDTH $HEIGHT 1 0 0 1" > "$WINEPREFIX/drive_c/users/$WINE_USER/Local Settings/Application Data/2K Games/Mafia II/Saves/videoconfig.cfg"
## Begin GNU/Linux fix ##
# don't work with OSX since 'lspci' command do not exist
if [ "$PLAYONMAC" == "" ]; then
        VGA_ID1=`lspci | grep VGA | awk '{ print $1 }' | head -n 1`
        VGA_ID2=`lspci -n | grep $VGA_ID1 | awk '{ print $3 }'`
        VendorID=`echo $VGA_ID2 | awk -F: '{ print $1 }'`
        DeviceID=`echo $VGA_ID2 | awk -F: '{ print $2 }'`
        cd "$WINEPREFIX/drive_c/windows/temp/"
        if [ "$VendorID" == "10de" ]; then
                drvID="nv4_disp.dll"
        elif [ "$VendorID" == "1002" ]; then
                drvID="ati2dvag.dll"
        elif [ "$VendorID" == "8086" ]; then
                drvID="ig4icd32.dll"
        else
                drvID="vga.dll"
        fi
cat << EOF > "$POL_USER_ROOT/tmp/VGA_ID_fix.reg"
[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
"VideoPCIVendorID"="dword:0000$VendorID"
"VideoPCIDeviceID"="dword:0000$DeviceID"
"VideoDriver"="$drvID"
EOF
        regedit "$POL_USER_ROOT/tmp/VGA_ID_fix.reg"
fi
## End GNU/Linux fix ##
POL_Call POL_Function_OverrideDLL "" "mmdevapi"
 
# Sound problem fix - pulseaudio related
[ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa"
[ "$PLAYONMAC" == "" ] && Set_SoundEmulDriver "Y"
## End Fix
  
## PlayOnMac Section
[ "$PLAYONMAC" == "" ] || Set_Managed "Off"
## End Section
 
# 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_SetupWindow_auto_shortcut "$PREFIX" "launcher.exe" "$TITLE" "$TITLE.png" ""
Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"
  
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
  
POL_SetupWindow_Close
exit | 
Contributions
Filters:
Contribute| Member | Wiadmości | 
| Dadu042 | Friday 9 August 2019 at 23:36 | 
| Dadu042   
 | InformationThis update has been approved by the team. Differences@@ -1,19 +1,27 @@
 #!/bin/bash
 # Date : (2010-18-10 21-00)
-# Last revision : (2011-18-07 21-00)
+# Last revision : (2019-08-09)
 # Wine version used : 1.3.2, 1.3.15, 1.3.23
-# Distribution used to test : Debian Testing x64
+# Distribution used to test : Xubuntu 18.04 x64
 # Author : GNU_Raziel
 # Licence : Retail
 # Only For : http://www.playonlinux.com
- 
+#
+#
+# CHANGELOG:
+# [GNU_Raziel] (2010-10-18)
+#   First script.
+# [Dadu042] (2019-08-09)
+#   (I try to install the 1.0 DVD-ROM retail, but fail because of POL and Steam broken feature)
+#   Wine 1.3.23 -> 2.22 (installing with 1.9.24 does fail because POL's 4.3.4 GUI don't appear fully on Xubuntu 18.04 x64).
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
+  
 TITLE="Mafia II"
-PREFIX="mafia2"
-WORKING_WINE_VERSION="1.3.23"
- 
+PREFIX="mafia_II"
+WORKING_WINE_VERSION="2.22"
+  
 if [ "$POL_LANG" == "fr" ]; then
 LNG_CHOOSE_MEDIA="Quelle version possédez-vous?"
 LNG_DVD="Version DVD"
@@ -27,8 +35,8 @@
 LNG_DELUXE="Version Digital Deluxe"
 LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera 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 ?" 
-LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 256Mo de mémoire."
+LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?"
+LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 256 Mo de mémoire."
 LNG_SUCCES="$TITLE a été installé avec succès."
 else
 LNG_CHOOSE_MEDIA="Which version do you have?"
@@ -43,86 +51,91 @@
 LNG_DELUXE="Digital Deluxe version"
 LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation."
 LNG_INSTALL_ON="Installation in progress..."
-LNG_GAME_VMS="How much memory does your graphics board have?" 
-LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 256Mo of memory."
+LNG_GAME_VMS="How much memory does your graphics board have?"
+LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 256 MB of memory."
 LNG_SUCCES="$TITLE has been installed successfully."
 fi
- 
+  
 # Starting the script
 rm "$POL_USER_ROOT/tmp/*.jpg"
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mafia2/top.jpg" "http://files.playonlinux.com/resources/setups/mafia2/left.jpg" "$TITLE"
 POL_SetupWindow_InitWithImages
-
-POL_SetupWindow_presentation "$TITLE" "2K Games" "http://www.mafia2game.com/" "GNU_Raziel" "$PREFIX" 
  
+POL_SetupWindow_presentation "$TITLE" "2K Games" "http://www.mafia2game.com/" "GNU_Raziel" "$PREFIX"
+  
 select_prefix "$POL_USER_ROOT/wineprefix/$PREFIX"
-
+ 
 # 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"
-
+ 
 # Creating prefix 
 POL_SetupWindow_prefixcreate
-
+ 
 # Choose between DVD and Digital Download version
 POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "$TITLE" "$LNG_DVD~$LNG_STEAM~$LNG_DDV" "~"
- 
+  
 if [ "$APP_ANSWER" == "$LNG_DVD" ]; then
-	GAME_MEDIAVERSION="DVD"
+        GAME_MEDIAVERSION="DVD"
 elif [ "$APP_ANSWER" == "$LNG_STEAM" ]; then
-	GAME_MEDIAVERSION="STEAM"
+        GAME_MEDIAVERSION="STEAM"
 else
-	GAME_MEDIAVERSION="DD"
+        GAME_MEDIAVERSION="DD"
 fi
-
+ 
 # Installing mandatory dependencies
 if [ "$GAME_MEDIAVERSION" == "DVD" ]; then
-	POL_Call POL_Install_vcrun2005
-	POL_Call POL_Install_gecko
-	fonts_to_prefix
+        POL_Call POL_Install_vcrun2005
+        POL_Call POL_Install_gecko
+        fonts_to_prefix
 elif [ "$GAME_MEDIAVERSION" == "STEAM" ]; then
-	POL_Call POL_Install_steam
+        POL_Call POL_Install_steam
 else
-	POL_Call POL_Install_vcrun2005
+        POL_Call POL_Install_vcrun2005
 fi
+
 POL_Call POL_Install_dxfullsetup
 POL_Call POL_Install_physx
- 
+  
 if [ "$GAME_MEDIAVERSION" == "DVD" ]; then
-	# Asking for CDROM and checking if it's correct one
-	POL_SetupWindow_message "$LNG_INSERT_MEDIA" "$TITLE"
-	POL_SetupWindow_cdrom
-	POL_SetupWindow_check_cdrom "Setup.exe"
-	wine start /unix "$CDROM/Setup.exe"
-	POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
+        # Asking for CDROM and checking if it's correct one
+        POL_SetupWindow_message "$LNG_INSERT_MEDIA" "$TITLE"
+        POL_SetupWindow_cdrom
+        POL_SetupWindow_check_cdrom "Setup.exe"
+
+	# Useless. To try: wininet, winhttp, repair POL's script for Steam. (Dadu042, 2019).
+	# POL_Call POL_Install_steam
+
+        wine start /unix "$CDROM/Setup.exe"
+        POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
 elif [ "$GAME_MEDIAVERSION" == "STEAM" ]; then
-	cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
-	POL_SetupWindow_menu "$LNG_CHOOSE_EDITION" "$TITLE" "$LNG_NORMAL~$LNG_DELUXE" "~"
-	if [ "$APP_ANSWER" == "$LNG_NORMAL" ]; then
-		wine "Steam.exe" -applaunch 50130
-	else
-		wine "Steam.exe" -applaunch 50460
-	fi
-	POL_SetupWindow_message "$LNG_WAIT_STEAM_END" "$TITLE"
+        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+        POL_SetupWindow_menu "$LNG_CHOOSE_EDITION" "$TITLE" "$LNG_NORMAL~$LNG_DELUXE" "~"
+        if [ "$APP_ANSWER" == "$LNG_NORMAL" ]; then
+                wine "Steam.exe" -applaunch 50130
+        else
+                wine "Steam.exe" -applaunch 50460
+        fi
+        POL_SetupWindow_message "$LNG_WAIT_STEAM_END" "$TITLE"
 else
-	# Asking then installing DDV of the game
-	cd "$HOME"
-	POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
-	SETUP_EXE="$APP_ANSWER"
-	POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
-	wine start /unix "$SETUP_EXE"
-	wineserver -w
-	POL_SetupWindow_detect_exit
+        # Asking then installing DDV of the game
+        cd "$HOME"
+        POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
+        SETUP_EXE="$APP_ANSWER"
+        POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
+        wine start /unix "$SETUP_EXE"
+        wineserver -w
+        POL_SetupWindow_detect_exit
 fi
-
+ 
 # Asking about memory size of graphic card
 POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "64-128-256-320-384-512-640-768-896-1024-1536-1792-2048-3072-4096" "-" "256"
 VMS="$APP_ANSWER"
- 
+  
 cd "$WINEPREFIX/drive_c/windows/temp/"
 cat << EOF > vms.reg
 [HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
@@ -130,13 +143,13 @@
 EOF
 regedit vms.reg
 if [ "$VMS" -lt "256" ]; then
-	POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE"
+        POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE"
 fi
-
+ 
 ## Fix for this game
 if [ "$GAME_MEDIAVERSION" != "STEAM" ]; then
-	#Fix for Steam - Empty value = disabled
-	POL_Call POL_Function_OverrideDLL "" "gameoverlayrenderer"
+        #Fix for Steam - Empty value = disabled
+        POL_Call POL_Function_OverrideDLL "" "gameoverlayrenderer"
 fi
 cat << EOF > "$POL_USER_ROOT/tmp/tweak.reg"
 [HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
@@ -156,52 +169,52 @@
 ## Begin GNU/Linux fix ##
 # don't work with OSX since 'lspci' command do not exist
 if [ "$PLAYONMAC" == "" ]; then
-	VGA_ID1=`lspci | grep VGA | awk '{ print $1 }' | head -n 1`
-	VGA_ID2=`lspci -n | grep $VGA_ID1 | awk '{ print $3 }'`
-	VendorID=`echo $VGA_ID2 | awk -F: '{ print $1 }'`
-	DeviceID=`echo $VGA_ID2 | awk -F: '{ print $2 }'`
-	cd "$WINEPREFIX/drive_c/windows/temp/"
-	if [ "$VendorID" == "10de" ]; then
-		drvID="nv4_disp.dll"
-	elif [ "$VendorID" == "1002" ]; then
-		drvID="ati2dvag.dll"
-	elif [ "$VendorID" == "8086" ]; then
-		drvID="ig4icd32.dll"
-	else
-		drvID="vga.dll"
-	fi
+        VGA_ID1=`lspci | grep VGA | awk '{ print $1 }' | head -n 1`
+        VGA_ID2=`lspci -n | grep $VGA_ID1 | awk '{ print $3 }'`
+        VendorID=`echo $VGA_ID2 | awk -F: '{ print $1 }'`
+        DeviceID=`echo $VGA_ID2 | awk -F: '{ print $2 }'`
+        cd "$WINEPREFIX/drive_c/windows/temp/"
+        if [ "$VendorID" == "10de" ]; then
+                drvID="nv4_disp.dll"
+        elif [ "$VendorID" == "1002" ]; then
+                drvID="ati2dvag.dll"
+        elif [ "$VendorID" == "8086" ]; then
+                drvID="ig4icd32.dll"
+        else
+                drvID="vga.dll"
+        fi
 cat << EOF > "$POL_USER_ROOT/tmp/VGA_ID_fix.reg"
 [HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
 "VideoPCIVendorID"="dword:0000$VendorID"
 "VideoPCIDeviceID"="dword:0000$DeviceID"
 "VideoDriver"="$drvID"
 EOF
-	regedit "$POL_USER_ROOT/tmp/VGA_ID_fix.reg"
+        regedit "$POL_USER_ROOT/tmp/VGA_ID_fix.reg"
 fi
 ## End GNU/Linux fix ##
 POL_Call POL_Function_OverrideDLL "" "mmdevapi"
-
+ 
 # Sound problem fix - pulseaudio related
 [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa"
 [ "$PLAYONMAC" == "" ] && Set_SoundEmulDriver "Y"
 ## End Fix
- 
+  
 ## PlayOnMac Section
 [ "$PLAYONMAC" == "" ] || Set_Managed "Off"
 ## End Section
-
+ 
 # 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/*"
+        rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
+        chmod -R 777 "$POL_USER_ROOT/tmp/"
+        rm -rf "$POL_USER_ROOT/tmp/*"
 fi
- 
+  
 # Making shortcut
 POL_SetupWindow_auto_shortcut "$PREFIX" "launcher.exe" "$TITLE" "$TITLE.png" ""
 Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"
- 
+  
 POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
- 
+  
 POL_SetupWindow_Close
 exit
\ No newline at end of file
New source code#!/bin/bash
# Date : (2010-18-10 21-00)
# Last revision : (2019-08-09)
# Wine version used : 1.3.2, 1.3.15, 1.3.23
# Distribution used to test : Xubuntu 18.04 x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
#
#
# CHANGELOG:
# [GNU_Raziel] (2010-10-18)
#   First script.
# [Dadu042] (2019-08-09)
#   (I try to install the 1.0 DVD-ROM retail, but fail because of POL and Steam broken feature)
#   Wine 1.3.23 -> 2.22 (installing with 1.9.24 does fail because POL's 4.3.4 GUI don't appear fully on Xubuntu 18.04 x64).
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Mafia II"
PREFIX="mafia_II"
WORKING_WINE_VERSION="2.22"
  
if [ "$POL_LANG" == "fr" ]; then
LNG_CHOOSE_MEDIA="Quelle version possédez-vous?"
LNG_DVD="Version DVD"
LNG_STEAM="Version Steam Store"
LNG_DDV="Version Digital Download"
LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE"
LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait."
LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation."
LNG_CHOOSE_EDITION="Quelle edition possédez-vous ?"
LNG_NORMAL="Version normale"
LNG_DELUXE="Version Digital Deluxe"
LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera 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 ?"
LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 256 Mo de mémoire."
LNG_SUCCES="$TITLE a été installé avec succès."
else
LNG_CHOOSE_MEDIA="Which version do you have?"
LNG_DVD="DVD Version"
LNG_STEAM="Steam Store Version"
LNG_DDV="Digital Download Version"
LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable"
LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done."
LNG_WAIT_END="Click on \"Forward\" ONLY when the game installation is finished\nor you will have to redo the installation."
LNG_CHOOSE_EDITION="Which edition do you have?"
LNG_NORMAL="Normal version"
LNG_DELUXE="Digital Deluxe version"
LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation."
LNG_INSTALL_ON="Installation in progress..."
LNG_GAME_VMS="How much memory does your graphics board have?"
LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 256 MB of memory."
LNG_SUCCES="$TITLE has been installed successfully."
fi
  
# Starting the script
rm "$POL_USER_ROOT/tmp/*.jpg"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mafia2/top.jpg" "http://files.playonlinux.com/resources/setups/mafia2/left.jpg" "$TITLE"
POL_SetupWindow_InitWithImages
 
POL_SetupWindow_presentation "$TITLE" "2K Games" "http://www.mafia2game.com/" "GNU_Raziel" "$PREFIX"
  
select_prefix "$POL_USER_ROOT/wineprefix/$PREFIX"
 
# 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"
 
# Creating prefix 
POL_SetupWindow_prefixcreate
 
# Choose between DVD and Digital Download version
POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "$TITLE" "$LNG_DVD~$LNG_STEAM~$LNG_DDV" "~"
  
if [ "$APP_ANSWER" == "$LNG_DVD" ]; then
        GAME_MEDIAVERSION="DVD"
elif [ "$APP_ANSWER" == "$LNG_STEAM" ]; then
        GAME_MEDIAVERSION="STEAM"
else
        GAME_MEDIAVERSION="DD"
fi
 
# Installing mandatory dependencies
if [ "$GAME_MEDIAVERSION" == "DVD" ]; then
        POL_Call POL_Install_vcrun2005
        POL_Call POL_Install_gecko
        fonts_to_prefix
elif [ "$GAME_MEDIAVERSION" == "STEAM" ]; then
        POL_Call POL_Install_steam
else
        POL_Call POL_Install_vcrun2005
fi
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_physx
  
if [ "$GAME_MEDIAVERSION" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$LNG_INSERT_MEDIA" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "Setup.exe"
        # Useless. To try: wininet, winhttp, repair POL's script for Steam. (Dadu042, 2019).
        # POL_Call POL_Install_steam
        wine start /unix "$CDROM/Setup.exe"
        POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
elif [ "$GAME_MEDIAVERSION" == "STEAM" ]; then
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_SetupWindow_menu "$LNG_CHOOSE_EDITION" "$TITLE" "$LNG_NORMAL~$LNG_DELUXE" "~"
        if [ "$APP_ANSWER" == "$LNG_NORMAL" ]; then
                wine "Steam.exe" -applaunch 50130
        else
                wine "Steam.exe" -applaunch 50460
        fi
        POL_SetupWindow_message "$LNG_WAIT_STEAM_END" "$TITLE"
else
        # Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
        wine start /unix "$SETUP_EXE"
        wineserver -w
        POL_SetupWindow_detect_exit
fi
 
# Asking about memory size of graphic card
POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "64-128-256-320-384-512-640-768-896-1024-1536-1792-2048-3072-4096" "-" "256"
VMS="$APP_ANSWER"
  
cd "$WINEPREFIX/drive_c/windows/temp/"
cat << EOF > vms.reg
[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
"VideoMemorySize"="$VMS"
EOF
regedit vms.reg
if [ "$VMS" -lt "256" ]; then
        POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE"
fi
 
## Fix for this game
if [ "$GAME_MEDIAVERSION" != "STEAM" ]; then
        #Fix for Steam - Empty value = disabled
        POL_Call POL_Function_OverrideDLL "" "gameoverlayrenderer"
fi
cat << EOF > "$POL_USER_ROOT/tmp/tweak.reg"
[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
"UseGLSL"="disabled"
"OffscreenRenderingMode"="fbo"
"DirectDrawRenderer"="opengl"
"RenderTargetLockMode"="readtex"
"Multisampling"="enabled"
EOF
regedit "$POL_USER_ROOT/tmp/tweak.reg"
# Fix for first start crash
WINE_USER=`id -un`
WIDTH=`xrandr -q | grep "current" | awk '{ print $8 }'`
HEIGHT=`xrandr -q | grep "current" | awk '{ print $10 }' | tr -d ","`
mkdir -p "$WINEPREFIX/drive_c/users/$WINE_USER/Local Settings/Application Data/2K Games/Mafia II/Saves/"
echo "0 0 $WIDTH $HEIGHT 1 0 0 1" > "$WINEPREFIX/drive_c/users/$WINE_USER/Local Settings/Application Data/2K Games/Mafia II/Saves/videoconfig.cfg"
## Begin GNU/Linux fix ##
# don't work with OSX since 'lspci' command do not exist
if [ "$PLAYONMAC" == "" ]; then
        VGA_ID1=`lspci | grep VGA | awk '{ print $1 }' | head -n 1`
        VGA_ID2=`lspci -n | grep $VGA_ID1 | awk '{ print $3 }'`
        VendorID=`echo $VGA_ID2 | awk -F: '{ print $1 }'`
        DeviceID=`echo $VGA_ID2 | awk -F: '{ print $2 }'`
        cd "$WINEPREFIX/drive_c/windows/temp/"
        if [ "$VendorID" == "10de" ]; then
                drvID="nv4_disp.dll"
        elif [ "$VendorID" == "1002" ]; then
                drvID="ati2dvag.dll"
        elif [ "$VendorID" == "8086" ]; then
                drvID="ig4icd32.dll"
        else
                drvID="vga.dll"
        fi
cat << EOF > "$POL_USER_ROOT/tmp/VGA_ID_fix.reg"
[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
"VideoPCIVendorID"="dword:0000$VendorID"
"VideoPCIDeviceID"="dword:0000$DeviceID"
"VideoDriver"="$drvID"
EOF
        regedit "$POL_USER_ROOT/tmp/VGA_ID_fix.reg"
fi
## End GNU/Linux fix ##
POL_Call POL_Function_OverrideDLL "" "mmdevapi"
 
# Sound problem fix - pulseaudio related
[ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa"
[ "$PLAYONMAC" == "" ] && Set_SoundEmulDriver "Y"
## End Fix
  
## PlayOnMac Section
[ "$PLAYONMAC" == "" ] || Set_Managed "Off"
## End Section
 
# 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_SetupWindow_auto_shortcut "$PREFIX" "launcher.exe" "$TITLE" "$TITLE.png" ""
Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"
  
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
  
POL_SetupWindow_Close
exitOdpowiedzi | 
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
 Install this program
 Install this program                        