@@ -0,0 +1,151 @@
+#!/bin/bash
+# Date : (2019-08-15)
+# Last revision : see Changelog
+# Wine version used : see Changelog
+# Distribution used to test : KUbuntu 18.04
+# Author : Dadu042
+# Licence : Retail
+#
+# TESTED (with succcess): v0.7-rc1 (2010. Version number found into /bin/NEWS.TXT).
+#
+# Game based on : .
+#
+# CHANGELOG
+# [Dadu042] (2019-08-15)
+# First script.
+#
+# KNOWN ISSUES
+# - Wine 4.0.1 + screen 1368x768 : game does not appear full screen, only a part of the game. Workardound: set screen resolution in the script.
+# - Wine 4.0.1, 4.11: game is not full screen even if resolution is set (running 'opengl.bat' instead of the .EXE does not help).
+# - Wine 4.0.1, 4.11: music does not play, because it is not provided with the game package, it must be downloaded separately.
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Doom64: The Absolution"
+PREFIX="Doom64_Absolution"
+EDITOR="Midway Games"
+AUTHOR="Dadu042"
+STEAM_ID=""
+WORKING_WINE_VERSION="4.0.1"
+GAME_VMS="512"
+SHORTCUT_FILENAME="Absolution.exe"
+SOFTWARE_CATEGORIES="Game;Shooter"
+
+# Starting the script
+POL_SetupWindow_Init
+
+# Starting debugging API
+POL_Debug_Init
+
+# Open dialogue box
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
+# Setting prefix path
+POL_Wine_SelectPrefix "$PREFIX"
+
+# Determine Architecture
+POL_System_SetArch "amd64"
+
+# Downloading wine if necessary and creating prefix
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+# Installing mandatory dependencies
+# POL_Call POL_Install_d3dx11
+# POL_Call POL_Install_physx
+
+# POL_Call POL_Install_xact
+
+# Choose between Steam and other Digital Download versions
+POL_SetupWindow_InstallMethod "LOCAL"
+
+# Disable Steam In Game Overlay
+# POL_Wine_OverrideDLL "" "gameoverlayrenderer" # To disable the DLL
+
+# Begin game installation
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+ POL_Call POL_Install_steam
+ # Mandatory pre-install fix for steam
+ POL_Call POL_Install_steam_flags "$STEAM_ID"
+ # Shortcut done before install for steam version
+ # Steam install
+ POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
+ cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+ POL_Wine_WaitExit "$TITLE"
+
+elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
+ POL_Wine_WaitBefore "$TITLE"
+ POL_Wine "VHSetup.exe" "/SILENT"
+
+ POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "$TITLE.png" "" "$SOFTWARE_CATEGORIES"
+
+elif [ "$INSTALL_METHOD" == "LOCAL" ]; then
+
+ POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.EXE')~$(eval_gettext '.ZIP')~$(eval_gettext '.RAR')" "~"
+
+if [ "$APP_ANSWER" == ".EXE" ]; then
+
+ # Asking then installing local copy of the game
+ 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"
+
+ POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "$TITLE.png" "" "$SOFTWARE_CATEGORIES"
+
+elif [ "$APP_ANSWER" == "$(eval_gettext '.ZIP')" ]; then
+ cd "$HOME"
+ POL_SetupWindow_browse "$(eval_gettext 'Please select the .ZIP file')" "$TITLE"
+ SETUP_EXE="$APP_ANSWER"
+ cd "$POL_System_TmpDir"
+
+ POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
+ POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/"
+
+ POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "$TITLE.png" "" "$SOFTWARE_CATEGORIES"
+
+elif [ "$APP_ANSWER" == "$(eval_gettext '.RAR')" ]; then
+ cd "$HOME"
+ POL_SetupWindow_browse "$(eval_gettext 'Please select the .RAR file')" "$TITLE"
+ SETUP_EXE="$APP_ANSWER"
+ cd "$POL_System_TmpDir"
+
+ POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
+ POL_System_unrar x "$APP_ANSWER" "$WINEPREFIX/drive_c/"
+
+ POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "$TITLE.png" "" "$SOFTWARE_CATEGORIES"
+fi
+fi
+
+# Set Graphic Card information keys for wine
+POL_Wine_SetVideoDriver
+
+# Asking about memory size of graphic card
+POL_SetupWindow_VMS $GAME_VMS
+
+#######################################
+# Create a 'virtual desktop' (window) #
+#######################################
+
+# Workaround to fix the "No mouse nor keyboard on main menu":
+
+POL_SetupWindow_menu_list "$(eval_gettext "Choose the game resolution")" "$TITLE" "800x600-1152x864-1024x768-1280x720-1280x800-1280x900-1280x1024-1360x768-1368x768-1440x900-1400x1050-1600x900-1600x1024-1680x1050-1920x1080" "-" "800x600"
+
+resolution="$APP_ANSWER"
+WIDTH="$(echo $resolution | cut -d"x" -f1)"
+HEIGHT="$(echo $resolution | cut -d"x" -f2)"
+
+Set_Desktop "On" "$WIDTH" "$HEIGHT"
+
+Set_WineWindowTitle "$TITLE"
+
+POL_SetupWindow_Close
+exit 0