Angry Birds Rio

Informations

Créateur Messages
Dadu042

Information

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

Informations

Plate-formes :
Téléchargements : 28242
Wine: 4.0

Retours d'expérience

Description

Puzzle video game in the Angry Birds series. 2011.

Note: If you own the CD-ROM, you may have to change the filename of the installer, because there was several versions.

Wikipedia.

Code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-03-13 15-30)
# Last revision : (2019-03-13 15-30)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Game installer used: v2.1.0 (2011 ?), it works only from Wine v4.0.
 
[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Angry Birds Rio"
PREFIX="angrybirdsrio"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="Rovio"
GAME_URL="https://en.wikipedia.org/wiki/Angry_Birds_Rio"
 
Set_OS "win7"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Minimum version to have access to Wine 4.x
POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
###############
# Go          #
###############
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "ABR.ico"
        POL_Wine start /unix "$CDROM/AngryBirdsRioInstaller_2.0.0.exe"
        POL_Wine_WaitExit "AngryBirdsRioInstaller.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "AngryBirdsRio.exe" "$TITLE" ""
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Lundi 3 Février 2020 à 21:31
Dadu042

Information

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

Differences

@@ -26,6 +26,9 @@
 POL_Debug_Init
  
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+# Minimum version to have access to Wine 4.x
+POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
  
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "amd64"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-03-13 15-30)
# Last revision : (2019-03-13 15-30)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Game installer used: v2.1.0 (2011 ?), it works only from Wine v4.0.
 
[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Angry Birds Rio"
PREFIX="angrybirdsrio"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="Rovio"
GAME_URL="https://en.wikipedia.org/wiki/Angry_Birds_Rio"
 
Set_OS "win7"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Minimum version to have access to Wine 4.x
POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
###############
# Go          #
###############
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "ABR.ico"
        POL_Wine start /unix "$CDROM/AngryBirdsRioInstaller_2.0.0.exe"
        POL_Wine_WaitExit "AngryBirdsRioInstaller.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "AngryBirdsRio.exe" "$TITLE" ""
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Vendredi 10 Mai 2019 à 9:46
Dadu042

Warning

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

Messages

# Date : (2019-03-13 15-30)
# Last revision : (2019-03-13 15-30)

Differences

@@ -10,7 +10,7 @@
 #
 # Game installer used: v2.1.0 (2011 ?), it works only from Wine v4.0.
  
-[ -z "$PLAYONLINUX" ] && exit 0
+[ "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
 TITLE="Angry Birds Rio"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-03-13 15-30)
# Last revision : (2019-03-13 15-30)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Game installer used: v2.1.0 (2011 ?), it works only from Wine v4.0.
 
[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Angry Birds Rio"
PREFIX="angrybirdsrio"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="Rovio"
GAME_URL="https://en.wikipedia.org/wiki/Angry_Birds_Rio"
 
Set_OS "win7"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
###############
# Go          #
###############
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "ABR.ico"
        POL_Wine start /unix "$CDROM/AngryBirdsRioInstaller_2.0.0.exe"
        POL_Wine_WaitExit "AngryBirdsRioInstaller.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "AngryBirdsRio.exe" "$TITLE" ""
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Edité par Dadu042

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