GOG.com - RollerCoaster Tycoon: Deluxe
Informations
Creator | Message |
---|---|
Yepoleb
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 2 DescriptionFirst part of the RollerCoaster Tycoon series, created by Chris Sawyer. Source code#!/usr/bin/env playonlinux-bash # Date : (2015-12-07 06-36) # Last revision : (2015-12-23 04-52) # Wine version used : 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Gabriel Huber huberg18@gmail.com # Script licence : GPL v.2 # Program licence : Retail # Depend : [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="rollercoaster_tycoon_deluxe" PREFIX="RollerCoasterTycoon_gog" WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" # Manually set the install location because we're not using the installer # Has to match with the one in the registry patch for the DRM to work INSTALL_LOCATION="drive_c/GOG Games/RollerCoaster Tycoon Deluxe/" #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_SetupWindow_SetID 2683 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Chris Sawyer Productions / Atari" \ "http://www.gog.com/game/$GOGID" "Gabriel Huber" "$PREFIX" # Get setup path POL_Call POL_GoG_setup "$GOGID" "c6516a80d361a70fd5866fdd18004c46" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" INSTALL_PATH="${WINEPREFIX}/${INSTALL_LOCATION}" # Extract the game files POL_Call POL_innoextract "$POL_GoG_location" "$POL_System_TmpDir" "$INSTALL_PATH" # Apply the registry patch cat > "$POL_System_TmpDir/rct1.reg" << EOF REGEDIT4 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Title"="Roll" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Path"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "SetupPath"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Executable"="RCT.EXE" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontPointSize"=dword:0000000c [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Language"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CDKey"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CharSet"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontFaceName"="MS Sans Serif" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "OKPrompt"="OK" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CancelPrompt"="Cancel" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "AddOn"=dword:00000001 EOF POL_Wine regedit "$POL_System_TmpDir/rct1.reg" POL_System_TmpDelete # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Monday 27 September 2021 at 15:33 |
Dadu042
|
InformationThis update has been approved by the team. MessageWine 1.6.2 -> 3.0.3 Differences@@ -13,7 +13,7 @@ GOGID="rollercoaster_tycoon_deluxe" PREFIX="RollerCoasterTycoon_gog" -WORKING_WINE_VERSION="1.6.2" +WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" New source code#!/usr/bin/env playonlinux-bash # Date : (2015-12-07 06-36) # Last revision : (2015-12-23 04-52) # Wine version used : 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Gabriel Huber huberg18@gmail.com # Script licence : GPL v.2 # Program licence : Retail # Depend : [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="rollercoaster_tycoon_deluxe" PREFIX="RollerCoasterTycoon_gog" WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" # Manually set the install location because we're not using the installer # Has to match with the one in the registry patch for the DRM to work INSTALL_LOCATION="drive_c/GOG Games/RollerCoaster Tycoon Deluxe/" #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_SetupWindow_SetID 2683 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Chris Sawyer Productions / Atari" \ "http://www.gog.com/game/$GOGID" "Gabriel Huber" "$PREFIX" # Get setup path POL_Call POL_GoG_setup "$GOGID" "c6516a80d361a70fd5866fdd18004c46" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" INSTALL_PATH="${WINEPREFIX}/${INSTALL_LOCATION}" # Extract the game files POL_Call POL_innoextract "$POL_GoG_location" "$POL_System_TmpDir" "$INSTALL_PATH" # Apply the registry patch cat > "$POL_System_TmpDir/rct1.reg" << EOF REGEDIT4 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Title"="Roll" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Path"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "SetupPath"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Executable"="RCT.EXE" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontPointSize"=dword:0000000c [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Language"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CDKey"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CharSet"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontFaceName"="MS Sans Serif" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "OKPrompt"="OK" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CancelPrompt"="Cancel" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "AddOn"=dword:00000001 EOF POL_Wine regedit "$POL_System_TmpDir/rct1.reg" POL_System_TmpDelete # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
floleg | Sunday 26 September 2021 at 21:24 |
floleg
|
MessageHi guys! First of all, thanks for the great work on the installer. Overall, the game runs pretty well on my Arch Linux installation and seems pretty stable. Replies |
biga | Sunday 29 May 2016 at 22:13 |
biga
|
MessageGame runs perfect except saving and loading. When you save or load a game colours become wrong. It requires a trick. You need to set wine to run game in a window. Then you can change resolution in game options menu. When colours become messed up after save or load, you have to change resolution in game menu. Then colours are normal again. You have to change ingame resolution after every save or load but it is very quick. Next good hint for this game is to set up your linux desktop resolution to 1024x768 and wine window also to 1024x768. If you do that and then set your ingame resolution also to 1024x768 you play fullscreen which is fine for mouse scrolling.
RepliesWednesday 1 June 2016 at 16:19
|
feli-srael | Saturday 6 February 2016 at 4:56 |
feli-srael
|
MessageHello, I want to report a bug, installation went smoothly, and the game works great, just like I remember from childhood. But the option to save a game or load game keeps malfunctioning, any attempt to save a game or load a saved game, causes disruption of the graphics of the game, so that in fact is not possible to save or load saved game. Attaching a link to a screenshot of the problem. Loading game Sorry in advance that I would not join any technical details, I'm not a technical one, just a simple end user. I use Ubuntu 14.04 and playnolinux version 4.2.10, Hope it useful detail. And I will be happy to provide additional information if requested. Thank you for reading and joyful day. Feli ^^ Replies |
petch | Sunday 27 December 2015 at 12:29 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd localization support to final message Differences@@ -102,7 +102,7 @@ POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" -POL_SetupWindow_message "$TITLE has been successfully installed." "$TITLE" +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close New source code#!/usr/bin/env playonlinux-bash # Date : (2015-12-07 06-36) # Last revision : (2015-12-23 04-52) # Wine version used : 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Gabriel Huber huberg18@gmail.com # Script licence : GPL v.2 # Program licence : Retail # Depend : [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="rollercoaster_tycoon_deluxe" PREFIX="RollerCoasterTycoon_gog" WORKING_WINE_VERSION="1.6.2" TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" # Manually set the install location because we're not using the installer # Has to match with the one in the registry patch for the DRM to work INSTALL_LOCATION="drive_c/GOG Games/RollerCoaster Tycoon Deluxe/" #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_SetupWindow_SetID 2683 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Chris Sawyer Productions / Atari" \ "http://www.gog.com/game/$GOGID" "Gabriel Huber" "$PREFIX" # Get setup path POL_Call POL_GoG_setup "$GOGID" "c6516a80d361a70fd5866fdd18004c46" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" INSTALL_PATH="${WINEPREFIX}/${INSTALL_LOCATION}" # Extract the game files POL_Call POL_innoextract "$POL_GoG_location" "$POL_System_TmpDir" "$INSTALL_PATH" # Apply the registry patch cat > "$POL_System_TmpDir/rct1.reg" << EOF REGEDIT4 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Title"="Roll" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Path"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "SetupPath"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Executable"="RCT.EXE" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontPointSize"=dword:0000000c [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Language"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CDKey"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CharSet"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontFaceName"="MS Sans Serif" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "OKPrompt"="OK" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CancelPrompt"="Cancel" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "AddOn"=dword:00000001 EOF POL_Wine regedit "$POL_System_TmpDir/rct1.reg" POL_System_TmpDelete # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Yepoleb | Wednesday 23 December 2015 at 4:54 |
Yepoleb
|
WarningThis update has not been approved yet by the team. MessageChanged the finished message to the recommended one. Differences@@ -0,0 +1,109 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2015-12-07 06-36) +# Last revision : (2015-12-23 04-52) +# Wine version used : 1.6.2 +# Distribution used to test : Debian Sid (Unstable) +# Author : Gabriel Huber huberg18@gmail.com +# Script licence : GPL v.2 +# Program licence : Retail +# Depend : + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +GOGID="rollercoaster_tycoon_deluxe" +PREFIX="RollerCoasterTycoon_gog" +WORKING_WINE_VERSION="1.6.2" + +TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" +SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" + +# Manually set the install location because we're not using the installer +# Has to match with the one in the registry patch for the DRM to work +INSTALL_LOCATION="drive_c/GOG Games/RollerCoaster Tycoon Deluxe/" + +#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_SetupWindow_SetID 2683 +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Chris Sawyer Productions / Atari" \ + "http://www.gog.com/game/$GOGID" "Gabriel Huber" "$PREFIX" + +# Get setup path +POL_Call POL_GoG_setup "$GOGID" "c6516a80d361a70fd5866fdd18004c46" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +POL_System_TmpCreate "$PREFIX" + +INSTALL_PATH="${WINEPREFIX}/${INSTALL_LOCATION}" + +# Extract the game files +POL_Call POL_innoextract "$POL_GoG_location" "$POL_System_TmpDir" "$INSTALL_PATH" + +# Apply the registry patch +cat > "$POL_System_TmpDir/rct1.reg" << EOF +REGEDIT4 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group] + + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] + + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Title"="Roll" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Path"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"SetupPath"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Executable"="RCT.EXE" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"FontPointSize"=dword:0000000c + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Language"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"CDKey"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"CharSet"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"FontFaceName"="MS Sans Serif" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"OKPrompt"="OK" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"CancelPrompt"="Cancel" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"AddOn"=dword:00000001 + +EOF + +POL_Wine regedit "$POL_System_TmpDir/rct1.reg" + +POL_System_TmpDelete + +# Doesn't hurt ;) +POL_Wine_reboot + +POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" +POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" + +POL_SetupWindow_message "$TITLE has been successfully installed." "$TITLE" + +POL_SetupWindow_Close + +exit 0 New source code#!/usr/bin/env playonlinux-bash # Date : (2015-12-07 06-36) # Last revision : (2015-12-23 04-52) # Wine version used : 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Gabriel Huber huberg18@gmail.com # Script licence : GPL v.2 # Program licence : Retail # Depend : [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="rollercoaster_tycoon_deluxe" PREFIX="RollerCoasterTycoon_gog" WORKING_WINE_VERSION="1.6.2" TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" # Manually set the install location because we're not using the installer # Has to match with the one in the registry patch for the DRM to work INSTALL_LOCATION="drive_c/GOG Games/RollerCoaster Tycoon Deluxe/" #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_SetupWindow_SetID 2683 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Chris Sawyer Productions / Atari" \ "http://www.gog.com/game/$GOGID" "Gabriel Huber" "$PREFIX" # Get setup path POL_Call POL_GoG_setup "$GOGID" "c6516a80d361a70fd5866fdd18004c46" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" INSTALL_PATH="${WINEPREFIX}/${INSTALL_LOCATION}" # Extract the game files POL_Call POL_innoextract "$POL_GoG_location" "$POL_System_TmpDir" "$INSTALL_PATH" # Apply the registry patch cat > "$POL_System_TmpDir/rct1.reg" << EOF REGEDIT4 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Title"="Roll" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Path"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "SetupPath"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Executable"="RCT.EXE" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontPointSize"=dword:0000000c [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Language"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CDKey"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CharSet"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontFaceName"="MS Sans Serif" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "OKPrompt"="OK" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CancelPrompt"="Cancel" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "AddOn"=dword:00000001 EOF POL_Wine regedit "$POL_System_TmpDir/rct1.reg" POL_System_TmpDelete # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" POL_SetupWindow_message "$TITLE has been successfully installed." "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Yepoleb | Monday 21 December 2015 at 5:53 |
Yepoleb
|
WarningThis update has not been approved yet by the team. MessageDepends on POL_innoextract, has to be approved first. Differences@@ -0,0 +1,109 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2015-12-07 06-36) +# Last revision : (2015-12-21 03-50) +# Wine version used : 1.6.2 +# Distribution used to test : Debian Sid (Unstable) +# Author : Gabriel Huber huberg18@gmail.com +# Script licence : GPL v.2 +# Program licence : Retail +# Depend : + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +GOGID="rollercoaster_tycoon_deluxe" +PREFIX="RollerCoasterTycoon_gog" +WORKING_WINE_VERSION="1.6.2" + +TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" +SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" + +# Manually set the install location because we're not using the installer +# Has to match with the one in the registry patch for the DRM to work +INSTALL_LOCATION="drive_c/GOG Games/RollerCoaster Tycoon Deluxe/" + +#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_SetupWindow_SetID 2683 +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Chris Sawyer Productions / Atari" \ + "http://www.gog.com/game/$GOGID" "Gabriel Huber" "$PREFIX" + +# Get setup path +POL_Call POL_GoG_setup "$GOGID" "c6516a80d361a70fd5866fdd18004c46" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +POL_System_TmpCreate "$PREFIX" + +INSTALL_PATH="${WINEPREFIX}/${INSTALL_LOCATION}" + +# Extract the game files +POL_Call POL_innoextract "$POL_GoG_location" "$POL_System_TmpDir" "$INSTALL_PATH" + +# Apply the registry patch +cat > "$POL_System_TmpDir/rct1.reg" << EOF +REGEDIT4 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group] + + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] + + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Title"="Roll" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Path"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"SetupPath"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Executable"="RCT.EXE" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"FontPointSize"=dword:0000000c + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"Language"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"CDKey"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"CharSet"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"FontFaceName"="MS Sans Serif" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"OKPrompt"="OK" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"CancelPrompt"="Cancel" + +[HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] +"AddOn"=dword:00000001 + +EOF + +POL_Wine regedit "$POL_System_TmpDir/rct1.reg" + +POL_System_TmpDelete + +# Doesn't hurt ;) +POL_Wine_reboot + +POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" +POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" + +POL_SetupWindow_message "Installation complete." "$TITLE" + +POL_SetupWindow_Close + +exit 0 New source code#!/usr/bin/env playonlinux-bash # Date : (2015-12-07 06-36) # Last revision : (2015-12-21 03-50) # Wine version used : 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Gabriel Huber huberg18@gmail.com # Script licence : GPL v.2 # Program licence : Retail # Depend : [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="rollercoaster_tycoon_deluxe" PREFIX="RollerCoasterTycoon_gog" WORKING_WINE_VERSION="1.6.2" TITLE="GOG.com - RollerCoaster Tycoon: Deluxe" SHORTCUT_NAME="RollerCoaster Tycoon: Deluxe" # Manually set the install location because we're not using the installer # Has to match with the one in the registry patch for the DRM to work INSTALL_LOCATION="drive_c/GOG Games/RollerCoaster Tycoon Deluxe/" #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_SetupWindow_SetID 2683 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Chris Sawyer Productions / Atari" \ "http://www.gog.com/game/$GOGID" "Gabriel Huber" "$PREFIX" # Get setup path POL_Call POL_GoG_setup "$GOGID" "c6516a80d361a70fd5866fdd18004c46" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" INSTALL_PATH="${WINEPREFIX}/${INSTALL_LOCATION}" # Extract the game files POL_Call POL_innoextract "$POL_GoG_location" "$POL_System_TmpDir" "$INSTALL_PATH" # Apply the registry patch cat > "$POL_System_TmpDir/rct1.reg" << EOF REGEDIT4 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Title"="Roll" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Path"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "SetupPath"="C:\\\\GOG Games\\\\RollerCoaster Tycoon Deluxe" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Executable"="RCT.EXE" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontPointSize"=dword:0000000c [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "Language"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CDKey"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CharSet"=dword:00000000 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "FontFaceName"="MS Sans Serif" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "OKPrompt"="OK" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "CancelPrompt"="Cancel" [HKEY_LOCAL_MACHINE\\SOFTWARE\\Fish Technology Group\\RollerCoaster Tycoon Setup] "AddOn"=dword:00000001 EOF POL_Wine regedit "$POL_System_TmpDir/rct1.reg" POL_System_TmpDelete # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "RCT.EXE" "$SHORTCUT_NAME" "" "" "Game;Simulation;" POL_Shortcut_Document "$SHORTCUT_NAME" "${INSTALL_PATH}manual.pdf" POL_SetupWindow_message "Installation complete." "$TITLE" POL_SetupWindow_Close exit 0 Replies |
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