Hi
I have written a script for The Matrix: Path of Neo. It is the third Matrix game, made in 2005, where you follow Neo through the three movies and play through many scenes from the movies, and many additional scenes. Full of cool fighting, gunplay and slow motion badassery.
The game works, and works well. There's a bug on Nvidia cards where your screen gets a blue tinge when firing bullets in slow motion; this is fixed by disabling GLSL. I ask the user in the script which brand of card he has. Not sure if there's a function for picking it up automatically.
[code language=playonlinux]
#!/bin/bash
# Date : (2014-04-04 18:56)
# Last revision : (2014-04-05 11:27)
# Wine version used : 1.7.10-CSMT-a632585
# Distribution used to test : Arch Linux
# Author : Alexander Borysov
# Script licence : GPLv3
# Program licence: Proprietary
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="The Matrix: Path of Neo"
PREFIX="MatrixPathOfNeo"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Atari" "http://atari.com" "Alexander Borysov" "$PREFIX"
POL_Call POL_Function_NoCDWarning
POL_Wine_SelectPrefix "$PREFIX"
POL_SetupWindow_wait "$(eval_gettext "Please wait while the wine prefix is created.")" "$TITLE"
POL_Wine_PrefixCreate "1.7.10-CSMT-a632585"
POL_SetupWindow_InstallMethod "LOCAL,DVD"
if [ "$INSTALL_METHOD" = "DVD" ]; then
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "PoN.ico"
POL_Wine "$CDROM/setup.exe"
POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
POL_SetupWindow_browse "$(eval_gettext "Please select the setup file to run.")" "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
fi
# fix a bug on Nvidia where the screen becomes bluer and bluer with each bullet fired in slow motion
POL_Wine_DetectCard
[ "$DRVID" = "NVIDIA" ] && POL_Wine_Direct3D "UseGLSL" "disabled"
POL_Wine_Direct3D "CSMT" "enabled"
POL_SetupWindow_VMS "128"
POL_Shortcut "Matrix3.exe" "$TITLE" "The Matrix: Path of Neo.png"
POL_SetupWindow_Close
exit
[/code]
Screenshots:
Icons/images:
48x48:
22x22:
top:
left:
Edité par Xenos5