Ruckingenur CE

Informations

Créateur Messages
casept Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 3079
Wine: 2.22

Retours d'expérience

Description

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.

Captures d'écran

MiniatureMiniature

Code source

#!/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:

Contribuer
Membre Messages
Dadu042 Jeudi 23 Mai 2019 à 19:36
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Messages

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"
  

Nouveau code source

#!/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

Réponses

Edité par Dadu042

casept Mercredi 19 Avril 2017 à 12:27
casept Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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

Nouveau code source

#!/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

Réponses

casept Mercredi 19 Avril 2017 à 12:07
casept Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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

Nouveau code source

#!/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

Réponses

casept Mercredi 19 Avril 2017 à 9:28
casept Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

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

Nouveau code source

#!/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

Réponses

Anonymous
Mercredi 19 Avril 2017 à 9:34
I forgot to attach the script to the original, sorry!