Tomb Raider (2013)

Informations

Créateur Messages
GNU_Raziel

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 32301
Wine: 3.0.3

Retours d'expérience

Description

French :
Dans ce renouvellement de la série, on retrouve une Lara très jeune, vulnérable. Elle part pour sa première expédition avec un groupe d'amis et collègues (Liam, Steph, Grim, Victor, Conrad Roth, Samantha Nishimura, Reyes, Dr. Whitman, Jonah et Alex) à bord de l'Endurance, un navire d'exploration moderne. Persuadée que le Royaume perdu de Yamatai, autrefois gouverné par la légendaire Reine-Soleil Himiko, se trouve quelque part dans le Triangle du Dragon, un archipel reculé au sud du Japon connu pour ses violentes tempêtes, Lara convainct le capitaine du navire d'en prendre le cap. Mais pris dans une tempête, le bateau s'échoue sur une île. Lara doit alors retrouver ses compagnons et organiser sa survie dans un environnement hostile et inquiétant.

English:
The player takes on the role of Lara Croft, a young and ambitious archaeology graduate whose theories on the location of the lost kingdom of Yamatai have convinced the Nishimura family—descendants from the people of Yamatai themselves—to fund an expedition in search of the kingdom. The expedition is led by Dr. James Whitman, a celebrity archaeologist who has fallen on hard times and is desperate to avoid bankruptcy and divorce, and is accompanied by Conrad Roth, a Royal Marine turned adventurer and close friend of the Croft family who serves as mentor to Lara; Samantha "Sam" Nishimura, Lara's best friend and a representative of the Nishimura family who films the expedition for a documentary; Joslyn Reyes, a skeptical and temperamental mechanic and single mother; Jonah Maiava, an imposing and placid fisherman who is willing to believe in the existence of the paranormal and esoteric; Angus "Grim" Grimaldi, the gruff Glasweigan helmsman of the Endurance; and Alex, a goofy and bespectacled electronics specialist.

Captures d'écran

MiniatureMiniature

Code source

#!/bin/bash
# Date : (2013-04-14 21:00)
# Last revision : N/A
# Wine version used : 1.5.19
# Distribution used to test : Linux Mint Debian Edition x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
# wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken

# CHANGELOG
# [GNU_Raziel] (2013-04-14 21:00)
#   First script.
# [Dadu042] (2020-03-28)
#   Wine "1.7.46-staging" (outdated) -> 3.0.3 . Not tested.

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

TITLE="Tomb Raider (2013)"
SHORTCUT_NAME="Tomb Raider (2013)"
SHORTCUT_NAME2="Tomb Raider 2013"
PREFIX="Tomb_Raider_2013"
EDITOR="Square Enix"
GAME_URL="http://tombraider.com"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="1024"
STEAM_ID="203160"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1657

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup # Fix some game crash

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Fix for this game
POL_Wine_X11Drv "GrabFullscreen" "Y"

# Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time
POL_Wine_DetectCard
if [ "$DRVID" = "NVIDIA" ]; then
        POL_Wine_Direct3D "UseGLSL" "disabled"
fi

# Fix Flickering screen
POL_Wine_Direct3D "StrictDrawOrdering" "enabled"

# Mandatory pre-install fix for steam
POL_Call POL_Install_steam_flags "$STEAM_ID"

# Shortcut done before install for steam version
POL_Shortcut "steam.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;"
POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;"

# Fix mouse control when using StrickDrawOrdering - Thx to petch
## Begin Fix ##
cd "$POL_USER_ROOT/tmp"
POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf"
POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe"

POL_Wine_reboot

# Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack
POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&'
echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME"
## End Fix ##

# Begin game installation
# Steam install
POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
POL_Wine_WaitExit "$TITLE"

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Samedi 28 Mars 2020 à 23:38
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -8,6 +8,12 @@
 # Only For : http://www.playonlinux.com
 # wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken
 
+# CHANGELOG
+# [GNU_Raziel] (2013-04-14 21:00)
+#   First script.
+# [Dadu042] (2020-03-28)
+#   Wine "1.7.46-staging" (outdated) -> 3.0.3 . Not tested.
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 
@@ -18,7 +24,7 @@
 EDITOR="Square Enix"
 GAME_URL="http://tombraider.com"
 AUTHOR="GNU_Raziel"
-WORKING_WINE_VERSION="1.7.46-staging"
+WORKING_WINE_VERSION="3.0.3"
 GAME_VMS="1024"
 STEAM_ID="203160"
 

Nouveau code source

#!/bin/bash
# Date : (2013-04-14 21:00)
# Last revision : N/A
# Wine version used : 1.5.19
# Distribution used to test : Linux Mint Debian Edition x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
# wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken

# CHANGELOG
# [GNU_Raziel] (2013-04-14 21:00)
#   First script.
# [Dadu042] (2020-03-28)
#   Wine "1.7.46-staging" (outdated) -> 3.0.3 . Not tested.

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

TITLE="Tomb Raider (2013)"
SHORTCUT_NAME="Tomb Raider (2013)"
SHORTCUT_NAME2="Tomb Raider 2013"
PREFIX="Tomb_Raider_2013"
EDITOR="Square Enix"
GAME_URL="http://tombraider.com"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="1024"
STEAM_ID="203160"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1657

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup # Fix some game crash

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Fix for this game
POL_Wine_X11Drv "GrabFullscreen" "Y"

# Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time
POL_Wine_DetectCard
if [ "$DRVID" = "NVIDIA" ]; then
        POL_Wine_Direct3D "UseGLSL" "disabled"
fi

# Fix Flickering screen
POL_Wine_Direct3D "StrictDrawOrdering" "enabled"

# Mandatory pre-install fix for steam
POL_Call POL_Install_steam_flags "$STEAM_ID"

# Shortcut done before install for steam version
POL_Shortcut "steam.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;"
POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;"

# Fix mouse control when using StrickDrawOrdering - Thx to petch
## Begin Fix ##
cd "$POL_USER_ROOT/tmp"
POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf"
POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe"

POL_Wine_reboot

# Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack
POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&'
echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME"
## End Fix ##

# Begin game installation
# Steam install
POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
POL_Wine_WaitExit "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

deri82 Vendredi 10 Juillet 2015 à 14:08
deri82 Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -85,7 +85,7 @@
 # Steam install
 POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
-POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
+POL_Wine start /unix "steam.exe -no-dwrite" steam://install/$STEAM_ID
 POL_Wine_WaitExit "$TITLE"
 
 POL_SetupWindow_Close

Nouveau code source

#!/bin/bash
# Date : (2013-04-14 21:00)
# Last revision : N/A
# Wine version used : 1.5.19
# Distribution used to test : Linux Mint Debian Edition x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
# wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken

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

TITLE="Tomb Raider (2013)"
SHORTCUT_NAME="Tomb Raider (2013)"
SHORTCUT_NAME2="Tomb Raider 2013"
PREFIX="Tomb_Raider_2013"
EDITOR="Square Enix"
GAME_URL="http://tombraider.com"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.7.46-staging"
GAME_VMS="1024"
STEAM_ID="203160"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1657

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup # Fix some game crash

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Fix for this game
POL_Wine_X11Drv "GrabFullscreen" "Y"

# Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time
POL_Wine_DetectCard
if [ "$DRVID" = "NVIDIA" ]; then
        POL_Wine_Direct3D "UseGLSL" "disabled"
fi

# Fix Flickering screen
POL_Wine_Direct3D "StrictDrawOrdering" "enabled"

# Mandatory pre-install fix for steam
POL_Call POL_Install_steam_flags "$STEAM_ID"

# Shortcut done before install for steam version
POL_Shortcut "steam.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;"
POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;"

# Fix mouse control when using StrickDrawOrdering - Thx to petch
## Begin Fix ##
cd "$POL_USER_ROOT/tmp"
POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf"
POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe"

POL_Wine_reboot

# Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack
POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&'
echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME"
## End Fix ##

# Begin game installation
# Steam install
POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
POL_Wine start /unix "steam.exe -no-dwrite" steam://install/$STEAM_ID
POL_Wine_WaitExit "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Vendredi 10 Juillet 2015 à 14:14
This doesnt work like I wanted it to work. Still an issue with dwrite
deri82 Vendredi 10 Juillet 2015 à 13:44
deri82 Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -6,6 +6,7 @@
 # Author : GNU_Raziel
 # Licence : Retail
 # Only For : http://www.playonlinux.com
+# wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -17,7 +18,7 @@
 EDITOR="Square Enix"
 GAME_URL="http://tombraider.com"
 AUTHOR="GNU_Raziel"
-WORKING_WINE_VERSION="1.5.19"
+WORKING_WINE_VERSION="1.7.46-staging"
 GAME_VMS="1024"
 STEAM_ID="203160"
 

Nouveau code source

#!/bin/bash
# Date : (2013-04-14 21:00)
# Last revision : N/A
# Wine version used : 1.5.19
# Distribution used to test : Linux Mint Debian Edition x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
# wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken

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

TITLE="Tomb Raider (2013)"
SHORTCUT_NAME="Tomb Raider (2013)"
SHORTCUT_NAME2="Tomb Raider 2013"
PREFIX="Tomb_Raider_2013"
EDITOR="Square Enix"
GAME_URL="http://tombraider.com"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.7.46-staging"
GAME_VMS="1024"
STEAM_ID="203160"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1657

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup # Fix some game crash

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Fix for this game
POL_Wine_X11Drv "GrabFullscreen" "Y"

# Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time
POL_Wine_DetectCard
if [ "$DRVID" = "NVIDIA" ]; then
        POL_Wine_Direct3D "UseGLSL" "disabled"
fi

# Fix Flickering screen
POL_Wine_Direct3D "StrictDrawOrdering" "enabled"

# Mandatory pre-install fix for steam
POL_Call POL_Install_steam_flags "$STEAM_ID"

# Shortcut done before install for steam version
POL_Shortcut "steam.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;"
POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;"

# Fix mouse control when using StrickDrawOrdering - Thx to petch
## Begin Fix ##
cd "$POL_USER_ROOT/tmp"
POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf"
POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe"

POL_Wine_reboot

# Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack
POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&'
echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME"
## End Fix ##

# Begin game installation
# Steam install
POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
POL_Wine_WaitExit "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Pingouache Vendredi 12 September 2014 à 20:27
Pingouache Anonymous

Messages

Bonjour,

 

Je suis sous Linux Mint 17 (x64) et j'utilise la dernière version de POL (4.2.5). Je tente d'installer le jeu Tomb Raider 2013, présent dans la liste de jeux de POL.

L'installeur passe par Steam : un Steam est installé sur le DD virtuel, le jeu est téléchargé via Steam, etc. Aucun souci pour l'installation du jeu (modulo le fait que j'ai du utiliser Wine 1.7.26 pour que cela fonctionne, et non la 1.7.3 comme proposé par défaut par POL, qui ne supporte pas bien Steam). J'ai par contre un souci pour lancer le jeu : l'écran de démarrage du jeu s'affiche bien, mais lorsque j'ai cliqué sur "Jouer", je suis resté bloqué sur un écran noir.

Après avoir consulté le log, j'ai vu cette erreur :

XIO:  fatal IO error 11 (Ressource temporairement non disponible) on X server ":0"
      after 61 requests (61 known processed) with 1 events remaining.
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier deSetting breakpad minidump AppID = 203160
Steam_SetMinidumpSteamID:  Caching Steam ID:  76561198142631290 [API loaded no]
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de[0912/185956:ERROR:renderer_main.cc(227)] Running without renderer sandbox

Après une recherche sur Internet, il semblait que le souci pouvait être résolu en désinstallant le package p11-kit et en le remplaçant par p11-kit-i386. J'ai donc fait l'opération, et désormais je n'ai certes plus d'écran noir... mais plus rien ne se passe. Le nouveau message d'erreur que j'obtiens est désormais le suivant :

Running wine-1.7.26 nircmd.exe win hideshow title  (Working directory : /home/alain-nadine/.PlayOnLinux/wineprefix/Tomb_Raider_2013/drive_c/Program Files (x86)/Steam)
X Error of failed request:  BadWindow (invalid Window parameter)
  Major opcode of failed request:  10 (X_UnmapWindow)
  Resource id in failed request:  0x2800001
  Serial number of failed request:  138
  Current serial number in output stream:  142

C'est assez étrange et je ne sais pas comment m'en sortir...

 

Pour info, j'ai un APU AMD A6-6400K et j'utilise le pilote libre xserver-xorg-video-ati.

Réponses

Vendredi 12 September 2014 à 20:42
ça ressemble furieusement à des crashes de pilote vidéo (le message concernant p11-kit n'a rien à voir).
"Pour info, j'ai un APU AMD A6-6400K et j'utilise le pilote libre xserver-xorg-video-ati."
xserver-xorg-video-ati ne fournit pas d'accélération 3D.
Anonymous
Vendredi 12 September 2014 à 21:22
Merci pour ta réponse. Malheureusement, en utilisant le pilote fglrx (pilote AMD/ATI propriétaire), j'obtiens un message similaire :
Anonymous
Vendredi 12 September 2014 à 21:22
X Error of failed request: GLXBadRenderRequest
Major opcode of failed request: 156 (GLX)
Minor opcode of failed request: 1 (X_GLXRender)
Serial number of failed request: 269
Current serial number in output stream: 270

Et de plus, de nombreux autres jeux que j'utilise avec POL ne se lancent même pas avec le pilote fglrx, alors qu'ils fonctionnent nickel avec le pilote libre...
Anonymous
Vendredi 12 September 2014 à 21:27
Ah tiens, chose intéressante, en utilisant le pilote fglrx j'obtiens une erreur plus détaillée avec un autre jeu :
err:winediag:X11DRV_WineGL_InitOpenglInfo Direct rendering is disabled, most likely your OpenGL drivers haven't been installed correctly (using GL renderer "Gallium 0.4 on AMD ARUBA", version "1.4 (3.X Error of failed request: GLXBadRenderRequest

(Sorry pour le flood.)
Vendredi 12 September 2014 à 21:54
Gallium 0.4 est un pilote libre, donc le pilote propriétaire n'est pas bien installé
Anonymous
Vendredi 12 September 2014 à 22:43
Okay, merci. Après réinstallation des pilotes, le jeu se lance enfin. Les cinématiques du début se lancent sans souci, mais arrivé dans le "vrai jeu", le jeu freeze et crashe dès qu'on presse une touche du clavier. N'importe laquelle. L'erreur suivante est renvoyée : Je pense que mes problèmes n'ont rien à voir avec ton installeur qui est très probablement excellent, mais j'abandonne quand même. ^^ Je crois qu'il y a une vraie incompatibilité matérielle.
Anonymous
Vendredi 12 September 2014 à 22:43
Pardon, l'erreur est : "err:setupapi:do_file_copyW Unsupported style(s) 0x144"
Merci pour ton aide et tout ton boulot néanmoins, à plus ! ;-)
Vendredi 12 September 2014 à 22:49
Le script devrait être mis à jour, il utilise Wine 1.5.19, et Steam n'est plus compatible avec aucune version antérieure à Wine 1.7.8.
Anonymous
Vendredi 12 September 2014 à 23:11
En effet. :) Pourtant j'étais passé par Configurer > Version de Wine > 1.7.28 (que j'avais précédemment installée) ; et j'ai également testé avec Configurer > Version de Wine > System. Aucune amélioration.
De toute façon j'ai une flopée d'erreurs un peu plus haut qui sont je pense sans rapport avec ça :
[0912/230912:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8
[0912/230912:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment.
err:wbemprox:wql_error syntax error, unexpected TK_NOT
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
etc.

Mon cas est un peu désespéré. :-D Mais la màj de script peut être utile pour d'autres utilisateurs, oui, au cas où !
Anonymous
Vendredi 12 September 2014 à 23:30
Argh, bon, fin du flood et finalement grande nouvelle : ce topic donne la solution : http://www.playonlinux.com/en/topic-11442-Farming_Simulator_2013_has_crashed.html
La solution est archi-débile : désactiver le "Steam Overlay" dans les menus Steam avant de lancer le jeu... et tout marche à merveille. Tout ça pour ça... ^^"
Du coup, le mot de la fin : utilisez Wine en version supérieure à 1.7.8 et désactivez le Steam Overlay. Et ça marchera ! Ouf !
Grand merci à toi pour ton aide et ton installeur ! ;)