GOG.com - Startopia
Informations
Creator | Message |
---|---|
petch
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 1 DescriptionEnglish: Simply put, it's Theme Hospital in space! Build rooms, enroll aliens, to keep a space station functional and complete missions.
ScreenshotsSource code#!/bin/bash # Date : (2013-01-03 20-04) # Last revision : see changelog # Wine version used : 3.0.3 # Distribution used to test : Debian Sid (Unstable), Ubuntu 17.04 x64 # Script licence : GPL v.2 # Program licence : Retail # CHANGELOG # [Pierre Etchemaite] (2013-01-03 20-04) # First script. Wine 1.5.15 # [LinuxScripter] (2018-01-15 20-19) # I've moded this script to allow installing this game via Steam. # [Dadu042] (2019-12-30) # Wine 2.0.3 -> 3.0.3 # KNOWN ISSUES: # - Wine 1.4.1, 1.5.7: "Something very funny about your videocard" # - Wine 1.5.9: stopped responding when leaving game # - Wine 1.5.10, 1.5.11, 1.5.15: ok [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Startopia" PREFIX="Startopia" WORKING_WINE_VERSION="3.0.3" AUTHOR="Pierre Etchemaite (pe-pol@concept-micro.com) and LinuxScripter" EDITOR="Mucky Foot Productions" GAME_URL="http://www.gog.com/gamecard/Startopia" #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 1527 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM" if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then POL_Call POL_GoG_setup "Startopia" "4fe8d194afc1012e136ed3e82f1de171" POL_Call POL_GoG_install else POL_Call POL_Install_steam cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/243040 POL_Wine_WaitBefore "$TITLE" fi # POL_SetupWindow_VMS "32" # Screen can be scrolled by moving the mouse to the borders # POL_Wine_X11Drv "GrabFullScreen" "Y" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/243040" else POL_Shortcut "startopia.exe" "$TITLE" "" "Game;StrategyGame;" fi POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
sjalmond | Wednesday 10 May 2023 at 16:48 |
sjalmond
|
MessageError ! Files mismatch Replies |
Dadu042 | Tuesday 31 December 2019 at 11:43 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,21 +1,30 @@ #!/bin/bash # Date : (2013-01-03 20-04) -# Last revision : (2018-01-15 20-19) -# Wine version used : 1.5.15 (the original script), 2.0.3 (latest version of the script) +# Last revision : see changelog +# Wine version used : 3.0.3 # Distribution used to test : Debian Sid (Unstable), Ubuntu 17.04 x64 # Script licence : GPL v.2 # Program licence : Retail - -# Wine 1.4.1, 1.5.7: "Something very funny about your videocard" -# Wine 1.5.9: stopped responding when leaving game -# Wine 1.5.10, 1.5.11, 1.5.15: ok + +# CHANGELOG +# [Pierre Etchemaite] (2013-01-03 20-04) +# First script. Wine 1.5.15 +# [LinuxScripter] (2018-01-15 20-19) +# I've moded this script to allow installing this game via Steam. +# [Dadu042] (2019-12-30) +# Wine 2.0.3 -> 3.0.3 + +# KNOWN ISSUES: +# - Wine 1.4.1, 1.5.7: "Something very funny about your videocard" +# - Wine 1.5.9: stopped responding when leaving game +# - Wine 1.5.10, 1.5.11, 1.5.15: ok [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Startopia" PREFIX="Startopia" -WORKING_WINE_VERSION="2.0.3" +WORKING_WINE_VERSION="3.0.3" AUTHOR="Pierre Etchemaite (pe-pol@concept-micro.com) and LinuxScripter" EDITOR="Mucky Foot Productions" GAME_URL="http://www.gog.com/gamecard/Startopia" @@ -43,10 +52,10 @@ POL_Wine_WaitBefore "$TITLE" fi -#POL_SetupWindow_VMS "32" +# POL_SetupWindow_VMS "32" # Screen can be scrolled by moving the mouse to the borders -#POL_Wine_X11Drv "GrabFullScreen" "Y" +# POL_Wine_X11Drv "GrabFullScreen" "Y" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/243040" @@ -55,4 +64,4 @@ fi POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2013-01-03 20-04) # Last revision : see changelog # Wine version used : 3.0.3 # Distribution used to test : Debian Sid (Unstable), Ubuntu 17.04 x64 # Script licence : GPL v.2 # Program licence : Retail # CHANGELOG # [Pierre Etchemaite] (2013-01-03 20-04) # First script. Wine 1.5.15 # [LinuxScripter] (2018-01-15 20-19) # I've moded this script to allow installing this game via Steam. # [Dadu042] (2019-12-30) # Wine 2.0.3 -> 3.0.3 # KNOWN ISSUES: # - Wine 1.4.1, 1.5.7: "Something very funny about your videocard" # - Wine 1.5.9: stopped responding when leaving game # - Wine 1.5.10, 1.5.11, 1.5.15: ok [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Startopia" PREFIX="Startopia" WORKING_WINE_VERSION="3.0.3" AUTHOR="Pierre Etchemaite (pe-pol@concept-micro.com) and LinuxScripter" EDITOR="Mucky Foot Productions" GAME_URL="http://www.gog.com/gamecard/Startopia" #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 1527 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM" if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then POL_Call POL_GoG_setup "Startopia" "4fe8d194afc1012e136ed3e82f1de171" POL_Call POL_GoG_install else POL_Call POL_Install_steam cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/243040 POL_Wine_WaitBefore "$TITLE" fi # POL_SetupWindow_VMS "32" # Screen can be scrolled by moving the mouse to the borders # POL_Wine_X11Drv "GrabFullScreen" "Y" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/243040" else POL_Shortcut "startopia.exe" "$TITLE" "" "Game;StrategyGame;" fi POL_SetupWindow_Close exit 0 Replies |
LinuxScripter | Thursday 18 January 2018 at 14:28 |
LinuxScripter
|
WarningThis update has not been approved yet by the team. MessageI've moded this script to allow installing this game via Steam. Differences@@ -1,57 +1,58 @@ #!/bin/bash # Date : (2013-01-03 20-04) -# Last revision : (2013-07-15 20-19) -# Wine version used : 1.5.15 -# Distribution used to test : Debian Sid (Unstable) -# Author : Pierre Etchemaite pe-pol@concept-micro.com +# Last revision : (2018-01-15 20-19) +# Wine version used : 1.5.15 (the original script), 2.0.3 (latest version of the script) +# Distribution used to test : Debian Sid (Unstable), Ubuntu 17.04 x64 # Script licence : GPL v.2 # Program licence : Retail -# Depend : - + # Wine 1.4.1, 1.5.7: "Something very funny about your videocard" # Wine 1.5.9: stopped responding when leaving game # Wine 1.5.10, 1.5.11, 1.5.15: ok - + [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" -GOGID="startopia" -PREFIX="Startopia_gog" -WORKING_WINE_VERSION="1.5.15" - -TITLE="GOG.com - Startopia" -SHORTCUT_NAME="Startopia" - -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" - +TITLE="Startopia" +PREFIX="Startopia" +WORKING_WINE_VERSION="2.0.3" +AUTHOR="Pierre Etchemaite (pe-pol@concept-micro.com) and LinuxScripter" +EDITOR="Mucky Foot Productions" +GAME_URL="http://www.gog.com/gamecard/Startopia" + +#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 1527 POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "Mucky Foot Productions / Square Enix" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" - -POL_Call POL_GoG_setup "$GOGID" "4fe8d194afc1012e136ed3e82f1de171" + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" -POL_Call POL_GoG_install - - -# GoG work! -Set_OS winxp - -POL_SetupWindow_VMS "32" - +POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM" +if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then + POL_Call POL_GoG_setup "Startopia" "4fe8d194afc1012e136ed3e82f1de171" + POL_Call POL_GoG_install +else + POL_Call POL_Install_steam + cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" + POL_Wine "steam.exe" steam://install/243040 + POL_Wine_WaitBefore "$TITLE" +fi + +#POL_SetupWindow_VMS "32" + # Screen can be scrolled by moving the mouse to the borders -POL_Wine_X11Drv "GrabFullScreen" "Y" - -# Doesn't hurt ;) -POL_Wine_reboot - -POL_Shortcut "startopia.exe" "$SHORTCUT_NAME" "" "" "Game;StrategyGame;" # "$SHORTCUT_NAME.png" -POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/StarTopia/Manual.pdf" +#POL_Wine_X11Drv "GrabFullScreen" "Y" +if [ "$INSTALL_METHOD" == "STEAM" ]; then + POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/243040" +else + POL_Shortcut "startopia.exe" "$TITLE" "" "Game;StrategyGame;" +fi + POL_SetupWindow_Close - exit 0 New source code#!/bin/bash # Date : (2013-01-03 20-04) # Last revision : (2018-01-15 20-19) # Wine version used : 1.5.15 (the original script), 2.0.3 (latest version of the script) # Distribution used to test : Debian Sid (Unstable), Ubuntu 17.04 x64 # Script licence : GPL v.2 # Program licence : Retail # Wine 1.4.1, 1.5.7: "Something very funny about your videocard" # Wine 1.5.9: stopped responding when leaving game # Wine 1.5.10, 1.5.11, 1.5.15: ok [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Startopia" PREFIX="Startopia" WORKING_WINE_VERSION="2.0.3" AUTHOR="Pierre Etchemaite (pe-pol@concept-micro.com) and LinuxScripter" EDITOR="Mucky Foot Productions" GAME_URL="http://www.gog.com/gamecard/Startopia" #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 1527 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM" if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then POL_Call POL_GoG_setup "Startopia" "4fe8d194afc1012e136ed3e82f1de171" POL_Call POL_GoG_install else POL_Call POL_Install_steam cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/243040 POL_Wine_WaitBefore "$TITLE" fi #POL_SetupWindow_VMS "32" # Screen can be scrolled by moving the mouse to the borders #POL_Wine_X11Drv "GrabFullScreen" "Y" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/243040" else POL_Shortcut "startopia.exe" "$TITLE" "" "Game;StrategyGame;" fi POL_SetupWindow_Close exit 0 RepliesTuesday 31 December 2019 at 11:38
|
xlours | Tuesday 2 January 2018 at 14:31 |
xlours
|
MessageBonjour, une simple installation (Installer un programme non listé) en choisissant le wine 2.20 (sur mon UBUNTU 16.04, 32bit), windows XP et POL_Install_d3dx9 m'a permis de jouer sans problème à partir du CD originel. cordialement RepliesFriday 5 January 2018 at 9:24
|
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