Echoes plus

Informations

Creator Message
Dadu042

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 3016
Wine: 4.0.1

Feedbacks

Description

2015 game, inspired by Asteroids.

Editor.

Screenshots

Miniature

Source code

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-28)
# Last revision : See changelog
# Wine version used : see below
# Distribution used to test : XUbuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux version used : 4.3.4
#
# Software version used to write this script: v8
# Software based on: AppGameKit
#
# CHANGELOG
# [Dadu042] (2019-05-28 09-03)
#   Initial writting.
#
# Known issues:
# - 3D is a bit slow on Intel GPU.
# - Log : errors about Quartz (sound)

  
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
TITLE="Echoes plus"
PREFIX="echoes_plus"
WORKING_WINE_VERSION="4.0.1"
AUTHOR="Dadu042"
EDITOR="Binary Zoo"
GAME_URL="http://www.binaryzoo.com"
   
POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
  
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
  
Set_OS "win7"
  
# POL_Call POL_Install_d3dx9_43
# POL_Call POL_Install_d3dcompiler_43
# POL_Call POL_Install_d3dx10
# POL_Call POL_Install_d3dx11
  
# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia).
# POL_Call POL_Install_VideoDriver
#
# Asking about memory size of graphic card
# POL_SetupWindow_VMS $GAME_VMS
  
###############
# Go          #
###############
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the .RAR archive file')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        # POL_Wine start /unix "$SETUP_EXE"
        # POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
 
    # TARGET_DIR="$WINEPREFIX/drive_c/$PREFIX"
    # mkdir -p "$TARGET_DIR"
    # cd "$TARGET_DIR"
  
    POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"

# Debug
#    POL_SetupWindow_message "File: $APP_ANSWER\n\nPath:$WINEPREFIX/drive_c/" "$TITLE"
#    POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/"

# 'POL_System_unrar failed with error 7!'
#    POL_System_unrar "$APP_ANSWER"  "$WINEPREFIX/drive_c/"

    unrar x "$APP_ANSWER"  "$WINEPREFIX/drive_c/"
     
elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
    cd "$WINEPREFIX/drive_c"
    POL_Download "http://www.binaryzoo.com/games/echoesplus/echoes_plus.rar"
#    POL_System_unzip "echoes_plus.zip"
#    POL_System_unrar "echoes_plus.rar"
    unrar x "echoes_plus.rar"  "$WINEPREFIX/drive_c/"
    POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
 
fi
 
POL_Shortcut "echoes+.exe" "$TITLE" ""
    
POL_Shortcut_Document "$TITLE" "release PC.txt"
  
  
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Tuesday 28 May 2019 at 10:10
Dadu042

Information

This update has been approved by the team.

Message

Read the changelog and known issues.

Differences

@@ -0,0 +1,103 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2019-05-28)
+# Last revision : See changelog
+# Wine version used : see below
+# Distribution used to test : XUbuntu 19.04 x64
+# Script licence : GPL3
+# Program licence : Retail
+# Playonlinux version used : 4.3.4
+#
+# Software version used to write this script: v8
+# Software based on: AppGameKit
+#
+# CHANGELOG
+# [Dadu042] (2019-05-28 09-03)
+#   Initial writting.
+#
+# Known issues:
+# - 3D is a bit slow on Intel GPU.
+# - Log : errors about Quartz (sound)
+
+  
+[ -z "$PLAYONLINUX" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+      
+TITLE="Echoes plus"
+PREFIX="echoes_plus"
+WORKING_WINE_VERSION="4.0.1"
+AUTHOR="Dadu042"
+EDITOR="Binary Zoo"
+GAME_URL="http://www.binaryzoo.com"
+   
+POL_SetupWindow_Init
+POL_Debug_Init
+  
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+  
+POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
+  
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_System_TmpCreate "$TITLE"
+  
+Set_OS "win7"
+  
+# POL_Call POL_Install_d3dx9_43
+# POL_Call POL_Install_d3dcompiler_43
+# POL_Call POL_Install_d3dx10
+# POL_Call POL_Install_d3dx11
+  
+# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia).
+# POL_Call POL_Install_VideoDriver
+#
+# Asking about memory size of graphic card
+# POL_SetupWindow_VMS $GAME_VMS
+  
+###############
+# Go          #
+###############
+ 
+POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
+ 
+if [ "$INSTALL_METHOD" == "LOCAL" ]; then
+        cd "$HOME"
+        POL_SetupWindow_browse "$(eval_gettext 'Please select the .RAR archive file')" "$TITLE"
+        SETUP_EXE="$APP_ANSWER"
+        # POL_Wine start /unix "$SETUP_EXE"
+        # POL_Wine_WaitExit "$TITLE"
+        cd "$POL_System_TmpDir"
+ 
+    # TARGET_DIR="$WINEPREFIX/drive_c/$PREFIX"
+    # mkdir -p "$TARGET_DIR"
+    # cd "$TARGET_DIR"
+  
+    POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
+
+# Debug
+#    POL_SetupWindow_message "File: $APP_ANSWER\n\nPath:$WINEPREFIX/drive_c/" "$TITLE"
+#    POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/"
+
+# 'POL_System_unrar failed with error 7!'
+#    POL_System_unrar "$APP_ANSWER"  "$WINEPREFIX/drive_c/"
+
+    unrar x "$APP_ANSWER"  "$WINEPREFIX/drive_c/"
+     
+elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
+    cd "$WINEPREFIX/drive_c"
+    POL_Download "http://www.binaryzoo.com/games/echoesplus/echoes_plus.rar"
+#    POL_System_unzip "echoes_plus.zip"
+#    POL_System_unrar "echoes_plus.rar"
+    unrar x "echoes_plus.rar"  "$WINEPREFIX/drive_c/"
+    POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
+ 
+fi
+ 
+POL_Shortcut "echoes+.exe" "$TITLE" ""
+    
+POL_Shortcut_Document "$TITLE" "release PC.txt"
+  
+  
+POL_System_TmpDelete
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-28)
# Last revision : See changelog
# Wine version used : see below
# Distribution used to test : XUbuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux version used : 4.3.4
#
# Software version used to write this script: v8
# Software based on: AppGameKit
#
# CHANGELOG
# [Dadu042] (2019-05-28 09-03)
#   Initial writting.
#
# Known issues:
# - 3D is a bit slow on Intel GPU.
# - Log : errors about Quartz (sound)

  
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
      
TITLE="Echoes plus"
PREFIX="echoes_plus"
WORKING_WINE_VERSION="4.0.1"
AUTHOR="Dadu042"
EDITOR="Binary Zoo"
GAME_URL="http://www.binaryzoo.com"
   
POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
  
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
  
Set_OS "win7"
  
# POL_Call POL_Install_d3dx9_43
# POL_Call POL_Install_d3dcompiler_43
# POL_Call POL_Install_d3dx10
# POL_Call POL_Install_d3dx11
  
# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia).
# POL_Call POL_Install_VideoDriver
#
# Asking about memory size of graphic card
# POL_SetupWindow_VMS $GAME_VMS
  
###############
# Go          #
###############
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the .RAR archive file')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        # POL_Wine start /unix "$SETUP_EXE"
        # POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
 
    # TARGET_DIR="$WINEPREFIX/drive_c/$PREFIX"
    # mkdir -p "$TARGET_DIR"
    # cd "$TARGET_DIR"
  
    POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"

# Debug
#    POL_SetupWindow_message "File: $APP_ANSWER\n\nPath:$WINEPREFIX/drive_c/" "$TITLE"
#    POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/"

# 'POL_System_unrar failed with error 7!'
#    POL_System_unrar "$APP_ANSWER"  "$WINEPREFIX/drive_c/"

    unrar x "$APP_ANSWER"  "$WINEPREFIX/drive_c/"
     
elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
    cd "$WINEPREFIX/drive_c"
    POL_Download "http://www.binaryzoo.com/games/echoesplus/echoes_plus.rar"
#    POL_System_unzip "echoes_plus.zip"
#    POL_System_unrar "echoes_plus.rar"
    unrar x "echoes_plus.rar"  "$WINEPREFIX/drive_c/"
    POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
 
fi
 
POL_Shortcut "echoes+.exe" "$TITLE" ""
    
POL_Shortcut_Document "$TITLE" "release PC.txt"
  
  
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies