Vous êtes ici
Rocksmith 2014 (Steam)
Informations
Créateur | Messages |
---|---|
plata
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionCode source#!/bin/bash # Date : (2016-05-07 ??-??) # Last revision : (2016-05-07 ??-??) # Wine version used : 1.9.5 # Distribution used to test : Linux Mint 17.3 x64 # Author : plata [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Rocksmith 2014 (Steam)" PREFIX="Rocksmith_2014" WORKING_WINE_VERSION="1.9.5" EDITOR="Ubisoft" GAME_URL="http://rocksmith.ubi.com/rocksmith/en-US/home/index.aspx" AUTHOR="plata" # start the script 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" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # set prefix path POL_Wine_SelectPrefix "$PREFIX" # download wine if necessary and create prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # use Windows 7 Set_OS "win7" # make sure that audio works Set_SoundDriver "alsa" # install dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_steam # begin game installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/221680 POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" POL_Wine_WaitExit "$TITLE" # fix Rocksmith.ini cd "$WINEPREFIX/drive_c/Program Files/Steam/steamapps/common/Rocksmith2014" # set Win32UltraLowLatencyMode=0 sed -i 's/^\(Win32UltraLowLatencyMode=\).*/\10/' Rocksmith.ini # set display resolution read width height <<<$(xrandr | fgrep '*' | egrep -o '[0-9]+x[0-9]+' | egrep -o '[0-9]+') sed -i "s/^\(ScreenWidth=\).*/\1$width/" Rocksmith.ini sed -i "s/^\(ScreenHeight=\).*/\1$height/" Rocksmith.ini # create shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/221680" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
plata | Vendredi 20 Mai 2016 à 18:22 |
plata
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -0,0 +1,60 @@ +#!/bin/bash +# Date : (2016-05-07 ??-??) +# Last revision : (2016-05-07 ??-??) +# Wine version used : 1.9.5 +# Distribution used to test : Linux Mint 17.3 x64 +# Author : plata + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Rocksmith 2014 (Steam)" +PREFIX="Rocksmith_2014" +WORKING_WINE_VERSION="1.9.5" +EDITOR="Ubisoft" +GAME_URL="http://rocksmith.ubi.com/rocksmith/en-US/home/index.aspx" +AUTHOR="plata" + +# start the script +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" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# set prefix path +POL_Wine_SelectPrefix "$PREFIX" + +# download wine if necessary and create prefix +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +# use Windows 7 +Set_OS "win7" + +# make sure that audio works +Set_SoundDriver "alsa" + +# install dependencies +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_steam + +# begin game installation +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" +POL_Wine "steam.exe" steam://install/221680 +POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" +POL_Wine_WaitExit "$TITLE" + +# fix Rocksmith.ini +cd "$WINEPREFIX/drive_c/Program Files/Steam/steamapps/common/Rocksmith2014" +# set Win32UltraLowLatencyMode=0 +sed -i 's/^\(Win32UltraLowLatencyMode=\).*/\10/' Rocksmith.ini +# set display resolution +read width height <<<$(xrandr | fgrep '*' | egrep -o '[0-9]+x[0-9]+' | egrep -o '[0-9]+') +sed -i "s/^\(ScreenWidth=\).*/\1$width/" Rocksmith.ini +sed -i "s/^\(ScreenHeight=\).*/\1$height/" Rocksmith.ini + +# create shortcut +POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/221680" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2016-05-07 ??-??) # Last revision : (2016-05-07 ??-??) # Wine version used : 1.9.5 # Distribution used to test : Linux Mint 17.3 x64 # Author : plata [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Rocksmith 2014 (Steam)" PREFIX="Rocksmith_2014" WORKING_WINE_VERSION="1.9.5" EDITOR="Ubisoft" GAME_URL="http://rocksmith.ubi.com/rocksmith/en-US/home/index.aspx" AUTHOR="plata" # start the script 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" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # set prefix path POL_Wine_SelectPrefix "$PREFIX" # download wine if necessary and create prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # use Windows 7 Set_OS "win7" # make sure that audio works Set_SoundDriver "alsa" # install dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_steam # begin game installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/221680 POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" POL_Wine_WaitExit "$TITLE" # fix Rocksmith.ini cd "$WINEPREFIX/drive_c/Program Files/Steam/steamapps/common/Rocksmith2014" # set Win32UltraLowLatencyMode=0 sed -i 's/^\(Win32UltraLowLatencyMode=\).*/\10/' Rocksmith.ini # set display resolution read width height <<<$(xrandr | fgrep '*' | egrep -o '[0-9]+x[0-9]+' | egrep -o '[0-9]+') sed -i "s/^\(ScreenWidth=\).*/\1$width/" Rocksmith.ini sed -i "s/^\(ScreenHeight=\).*/\1$height/" Rocksmith.ini # create shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/221680" POL_SetupWindow_Close exit 0 RéponsesVendredi 2 Aoüt 2019 à 20:35
|
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