Ruckingenur CE

Informatie

Creator Bericht
casept Anonymous

Information

This installer has been approved by the team.

Informatie

Platforms:
Downloads: 3065
Wine: 2.22

Feedbacks

Omschrijving

A game by zachtronics in which you reverse engineer electronic circuits. This version contains levels created by the community.

Note: download automatically.

The editor (Zachtronics) on Wikipedia.

Schermafdrukken

MiniatureMiniature

Broncode

#!/bin/bash
# Date : (2017-04-18 09-31)
# Last revision : (2019-05-23)
# Wine version used : see below
# Distribution used to test : XUbuntu 19.04
# Author : casept
# PlayOnLinux : 4.5.4
#
# CHANGELOG
# [dadu042] (2019-05-23)
#   Make this software work again (under POL 4.5.4). Upgrade Wine 2.7 to 2.22 (on Wine 3.0, MIDI music fail).
# [casept] (2017-04-19 12-20)
#  Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables. POL 4.2.10
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Ruckingenur CE"
PREFIX="RuckingenurCE"
WORKING_WINE_VERSION="2.22"
GAME_URL="http://www.zachtronics.com/ruckingenur-ii/"
PUBLISHER="Zachtronics"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "Casept" "RuckingenurCE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"

POL_System_SetArch "x86"

POL_Call POL_Install_dotnet20

POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"
    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"
    POL_Wine start /unix "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"
    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"
    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"
    POL_Wine_WaitExit "$TITLE"
fi
 
POL_System_TmpDelete
POL_Shortcut "RuckingenurCE.exe" "$TITLE" "Game;LogicGame;"
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Bericht
Dadu042 Donderdag 23 Mei 2019 om 19:36
Dadu042

Information

This update has been approved by the team.

Bericht

Work. Game seems hard, they recommend to play 'Ruckingenur II' first.

Differences

@@ -17,7 +17,7 @@
  
 TITLE="Ruckingenur CE"
 PREFIX="RuckingenurCE"
-WORKING_WINE_VERSION="3.0"
+WORKING_WINE_VERSION="2.22"
 GAME_URL="http://www.zachtronics.com/ruckingenur-ii/"
 PUBLISHER="Zachtronics"
  

New source code

#!/bin/bash
# Date : (2017-04-18 09-31)
# Last revision : (2019-05-23)
# Wine version used : see below
# Distribution used to test : XUbuntu 19.04
# Author : casept
# PlayOnLinux : 4.5.4
#
# CHANGELOG
# [dadu042] (2019-05-23)
#   Make this software work again (under POL 4.5.4). Upgrade Wine 2.7 to 2.22 (on Wine 3.0, MIDI music fail).
# [casept] (2017-04-19 12-20)
#  Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables. POL 4.2.10
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Ruckingenur CE"
PREFIX="RuckingenurCE"
WORKING_WINE_VERSION="2.22"
GAME_URL="http://www.zachtronics.com/ruckingenur-ii/"
PUBLISHER="Zachtronics"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "Casept" "RuckingenurCE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"

POL_System_SetArch "x86"

POL_Call POL_Install_dotnet20

POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"
    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"
    POL_Wine start /unix "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"
    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"
    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"
    POL_Wine_WaitExit "$TITLE"
fi
 
POL_System_TmpDelete
POL_Shortcut "RuckingenurCE.exe" "$TITLE" "Game;LogicGame;"
POL_SetupWindow_Close
exit 0

Antwoorden

Aangepast door Dadu042

casept Woensdag 19 April 2017 om 12:27
casept Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Clean up and use more variables

Differences

@@ -0,0 +1,50 @@
+#!/bin/bash
+# Date : (2017-04-18 09-31)
+# Last revision : (2017-04-18 09-31)
+# Wine version used : 2.6
+# Distribution used to test : Ubuntu 16.04 LTS
+# Author : casept
+# PlayOnLinux : playonlinux-4.2.10
+
+#CHANGELOG
+#[casept] (2017-04-19 12-20)
+# Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Ruckingenur CE"
+PREFIX="RuckingenurCE"
+WORKING_WINE_VERSION="2.6"
+GAME_URL="http://www.zachtronics.com/ruckingenur-ii/"
+PUBLISHER="Zachtronics"
+
+POL_SetupWindow_Init
+POL_Debug_Init
+
+POL_System_SetArch "x86"
+
+POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "casept" "RuckingenurCE"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_System_TmpCreate "$PREFIX"
+POL_Call POL_Install_dotnet20
+POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"
+    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"
+    POL_Wine start /unix "$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+    cd "$POL_System_TmpDir"
+    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"
+    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"
+    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"
+    POL_Wine_WaitExit "$TITLE"
+fi
+
+POL_System_TmpDelete
+POL_Shortcut "Ruckingenur CE.lnk" "$TITLE"
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2017-04-18 09-31)
# Last revision : (2017-04-18 09-31)
# Wine version used : 2.6
# Distribution used to test : Ubuntu 16.04 LTS
# Author : casept
# PlayOnLinux : playonlinux-4.2.10

#CHANGELOG
#[casept] (2017-04-19 12-20)
# Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables

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

TITLE="Ruckingenur CE"
PREFIX="RuckingenurCE"
WORKING_WINE_VERSION="2.6"
GAME_URL="http://www.zachtronics.com/ruckingenur-ii/"
PUBLISHER="Zachtronics"

POL_SetupWindow_Init
POL_Debug_Init

POL_System_SetArch "x86"

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "casept" "RuckingenurCE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
POL_Call POL_Install_dotnet20
POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"
    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"
    POL_Wine start /unix "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"
    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"
    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"
    POL_Wine_WaitExit "$TITLE"
fi

POL_System_TmpDelete
POL_Shortcut "Ruckingenur CE.lnk" "$TITLE"
POL_SetupWindow_Close
exit 0

Antwoorden

casept Woensdag 19 April 2017 om 12:07
casept Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Bump wine version to 2.6 and do not allow the user to force kill the installer.

Differences

@@ -0,0 +1,41 @@
+#!/bin/bash                                                                                                                           
+# Date : (2017-04-18 09-31)                                                                                                           
+# Last revision : (2017-04-18 09-31)                                                                                                  
+# Wine version used : 2.6                                                                                                             
+# Distribution used to test : Ubuntu 16.04 LTS                                                                                        
+# Author : casept                                                                                                                     
+[ "$PLAYONLINUX" = "" ] && exit 0                                                                                                     
+source "$PLAYONLINUX/lib/sources"                                                                                                     
+                                                                                                                                      
+TITLE="Ruckingenur CE"                                                                                                                
+PREFIX="RuckingenurCE"                                                                                                                
+                                                                                                                                      
+POL_SetupWindow_Init                                                                                                                  
+POL_Debug_Init                                                                                                                        
+                                                                                                                                      
+POL_System_SetArch "x86"                                                                                                              
+                                                                                                                                      
+POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE"             
+POL_Wine_SelectPrefix "$PREFIX"                                                                                                       
+POL_Wine_PrefixCreate "2.6"                                                                                                           
+POL_System_TmpCreate "$PREFIX"                                                                                                        
+POL_Call POL_Install_dotnet20                                                                                                         
+POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"                                                                                       
+if [ "$INSTALL_METHOD" = "LOCAL" ]                                                                                                    
+then                                                                                                                                  
+    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"                                                            
+    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"                                                           
+    POL_Wine start /unix "$APP_ANSWER"                                                                                                
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]                                                                                               
+then                                                                                                                                  
+    cd "$POL_System_TmpDir"                                                                                                           
+    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"                  
+    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"                                                            
+    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"                                                            
+    POL_Wine_WaitExit "$TITLE"                                                                                                        
+fi                                                                                                                                    
+                                                                                                                                      
+POL_System_TmpDelete                                                                                                                  
+POL_Shortcut "Ruckingenur CE.lnk" "$TITLE"                                                                                            
+POL_SetupWindow_Close                                                                                                                 
+exit 0
\ No newline at end of file

New source code

#!/bin/bash                                                                                                                           
# Date : (2017-04-18 09-31)                                                                                                           
# Last revision : (2017-04-18 09-31)                                                                                                  
# Wine version used : 2.6                                                                                                             
# Distribution used to test : Ubuntu 16.04 LTS                                                                                        
# Author : casept                                                                                                                     
[ "$PLAYONLINUX" = "" ] && exit 0                                                                                                     
source "$PLAYONLINUX/lib/sources"                                                                                                     
                                                                                                                                      
TITLE="Ruckingenur CE"                                                                                                                
PREFIX="RuckingenurCE"                                                                                                                
                                                                                                                                      
POL_SetupWindow_Init                                                                                                                  
POL_Debug_Init                                                                                                                        
                                                                                                                                      
POL_System_SetArch "x86"                                                                                                              
                                                                                                                                      
POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE"             
POL_Wine_SelectPrefix "$PREFIX"                                                                                                       
POL_Wine_PrefixCreate "2.6"                                                                                                           
POL_System_TmpCreate "$PREFIX"                                                                                                        
POL_Call POL_Install_dotnet20                                                                                                         
POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"                                                                                       
if [ "$INSTALL_METHOD" = "LOCAL" ]                                                                                                    
then                                                                                                                                  
    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"                                                            
    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"                                                           
    POL_Wine start /unix "$APP_ANSWER"                                                                                                
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]                                                                                               
then                                                                                                                                  
    cd "$POL_System_TmpDir"                                                                                                           
    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"                  
    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"                                                            
    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"                                                            
    POL_Wine_WaitExit "$TITLE"                                                                                                        
fi                                                                                                                                    
                                                                                                                                      
POL_System_TmpDelete                                                                                                                  
POL_Shortcut "Ruckingenur CE.lnk" "$TITLE"                                                                                            
POL_SetupWindow_Close                                                                                                                 
exit 0

Antwoorden

casept Woensdag 19 April 2017 om 9:28
casept Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -0,0 +1,41 @@
+#!/bin/bash                                                                                                                           
+# Date : (2017-04-18 09-31)                                                                                                           
+# Last revision : (2017-04-18 09-31)                                                                                                  
+# Wine version used : 1.6.2                                                                                                           
+# Distribution used to test : Ubuntu 16.04 LTS                                                                                        
+# Author : casept                                                                                                                     
+[ "$PLAYONLINUX" = "" ] && exit 0                                                                                                     
+source "$PLAYONLINUX/lib/sources"                                                                                                     
+                                                                                                                                      
+TITLE="Ruckingenur CE"                                                                                                                
+PREFIX="RuckingenurCE"                                                                                                                
+                                                                                                                                      
+POL_SetupWindow_Init                                                                                                                  
+POL_Debug_Init                                                                                                                        
+                                                                                                                                      
+POL_System_SetArch "x86"                                                                                                              
+                                                                                                                                      
+POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE"             
+POL_Wine_SelectPrefix "$PREFIX"                                                                                                       
+POL_Wine_PrefixCreate "1.6.2"                                                                                                         
+POL_System_TmpCreate "$PREFIX"                                                                                                        
+POL_Call POL_Install_dotnet20                                                                                                         
+POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"                                                                                       
+if [ "$INSTALL_METHOD" = "LOCAL" ]                                                                                                    
+then                                                                                                                                  
+    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"                                                            
+    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"                                                           
+    POL_Wine start /unix "$APP_ANSWER"                                                                                                
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]                                                                                               
+then                                                                                                                                  
+    cd "$POL_System_TmpDir"                                                                                                           
+    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"                  
+    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"                                                            
+    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"                                                            
+    POL_Wine_WaitExit "$TITLE" --allow-kill                                                                                           
+fi                                                                                                                                    
+                                                                                                                                      
+POL_System_TmpDelete                                                                                                                  
+POL_Shortcut "Ruckingenur CE.lnk" "$TITLE"                                                                                            
+POL_SetupWindow_Close                                                                                                                 
+exit 0
\ No newline at end of file

New source code

#!/bin/bash                                                                                                                           
# Date : (2017-04-18 09-31)                                                                                                           
# Last revision : (2017-04-18 09-31)                                                                                                  
# Wine version used : 1.6.2                                                                                                           
# Distribution used to test : Ubuntu 16.04 LTS                                                                                        
# Author : casept                                                                                                                     
[ "$PLAYONLINUX" = "" ] && exit 0                                                                                                     
source "$PLAYONLINUX/lib/sources"                                                                                                     
                                                                                                                                      
TITLE="Ruckingenur CE"                                                                                                                
PREFIX="RuckingenurCE"                                                                                                                
                                                                                                                                      
POL_SetupWindow_Init                                                                                                                  
POL_Debug_Init                                                                                                                        
                                                                                                                                      
POL_System_SetArch "x86"                                                                                                              
                                                                                                                                      
POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE"             
POL_Wine_SelectPrefix "$PREFIX"                                                                                                       
POL_Wine_PrefixCreate "1.6.2"                                                                                                         
POL_System_TmpCreate "$PREFIX"                                                                                                        
POL_Call POL_Install_dotnet20                                                                                                         
POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD"                                                                                       
if [ "$INSTALL_METHOD" = "LOCAL" ]                                                                                                    
then                                                                                                                                  
    POL_SetupWindow_browse "Please select the setup file to run." "$TITLE"                                                            
    POL_SetupWindow_wait  "Please wait while $TITLE is installed." "$TITLE"                                                           
    POL_Wine start /unix "$APP_ANSWER"                                                                                                
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]                                                                                               
then                                                                                                                                  
    cd "$POL_System_TmpDir"                                                                                                           
    POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c"                  
    POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE"                                                            
    POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe"                                                            
    POL_Wine_WaitExit "$TITLE" --allow-kill                                                                                           
fi                                                                                                                                    
                                                                                                                                      
POL_System_TmpDelete                                                                                                                  
POL_Shortcut "Ruckingenur CE.lnk" "$TITLE"                                                                                            
POL_SetupWindow_Close                                                                                                                 
exit 0

Antwoorden

Anonymous
Woensdag 19 April 2017 om 9:34
I forgot to attach the script to the original, sorry!