Applications

Choose a category

accessories
Accessories
development
Development
education
Education
functions
Functions
games
Games
graphics
Graphics
internet
Internet
multimedia
Multimedia
office
Office
other
Other
patches
Patches
testing
Testing

Fable : The Lost Chapters

Magic number : 15

#!/bin/bash
# Date : (2010-01-09 22-00)
# Last revision : (2010-01-09 22-00)
# Wine version used : 1.2
# Distribution used to test : Debian Squeeze (Testing)
# Author : GNU_Raziel
# Licence : Retail
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Fable : The Lost Chapters"
PREFIX="FableTheLostChapters"
 
if [ "$POL_LANG" == "fr" ]; then
LNG_CHOOSE_MEDIA="Quelle version possédez-vous?"
LNG_CD="Version CD"
LNG_DDV="Version Digital Download"
LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE"
LNG_WAIT_CP="Patientez pendant la préparation de l'installation..."
LNG_MFC42_DL="Téléchargement de mfc42..."
LNG_INSERT_MEDIA_1="Veuillez insérer le disque 1 dans votre lecteur\nsi ce n'est pas déja fait."
LNG_INSERT_MEDIA_2="Veuillez insérer le disque 2 dans votre lecteur\nsi ce n'est pas déja fait."
LNG_INSERT_MEDIA_3="Veuillez insérer le disque 3 dans votre lecteur\nsi ce n'est pas déja fait."
LNG_INSERT_MEDIA_4="Veuillez insérer le disque 4 dans votre lecteur\nsi ce n'est pas déja fait."
LNG_INSTALL_ON="Installation en cours..."
LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 64)"
LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 64Mo de mémoire."
LNG_SUCCES="$TITLE a été installé avec succès."
else
LNG_CHOOSE_MEDIA="What version do you have?"
LNG_CD="CD Version"
LNG_DDV="Digital Download Version"
LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable"
NG_WAIT_CP="Wait while the installation is prepared..."
LNG_MFC42_DL="Downloading mfc42..."
LNG_INSERT_MEDIA_1="Please insert disk 1 into your disk drive\nif not already done."
LNG_INSERT_MEDIA_2="Please insert disk 2 into your disk drive\nif not already done."
LNG_INSERT_MEDIA_3="Please insert disk 3 into your disk drive\nif not already done."
LNG_INSERT_MEDIA_4="Please insert disk 4 into your disk drive\nif not already done."
LNG_INSTALL_ON="Installation in progress..."
LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 64)"
LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 64Mo of memory."
LNG_SUCCES="$TITLE has been installed successfully."
fi
 
cd $REPERTOIRE/tmp
rm *.jpg
POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/ftlc/left.jpg" "$TITLE"
# Compatibility command for POL > 3.8, wil be replaced soon !!
POL_SetupWindow_Init "" "$POL_SetupWindow_LeftImage"
POL_SetupWindow_presentation "$TITLE" "Microsoft Games" "http://www.microsoft.com/games/fable/default.asp" "GNU_Raziel" "$PREFIX"
 
select_prefix "$REPERTOIRE/wineprefix/$PREFIX"
 
#Choose between CD and Digital Download version
POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_CD~$LNG_DDV" "~"
 
if [ "$APP_ANSWER" == "$LNG_CD" ]; then
GAME_MEDIAVERSION="CD"
else
GAME_MEDIAVERSION="DD"
fi
 
#fetching PROGRAMFILES environmental variable
PROGRAMFILES="Program Files"
POL_LoadVar_PROGRAMFILES
 
#Installing requiered dll
cd $REPERTOIRE/ressources/
if [ ! -e $REPERTOIRE/ressources/mfc42.dll.zip ]; then
POL_SetupWindow_download "$LNG_MFC42_DL" "$TITLE" "http://files.playonlinux.com/mfc42.dll.zip"
fi
cd $WINEPREFIX/drive_c/windows/system32/
unzip $REPERTOIRE/ressources/mfc42.dll.zip
regsvr32 mfc42.dll
 
if [ "$GAME_MEDIAVERSION" == "CD" ]; then
#Copy content of CDs to HDD
TEMP="$REPERTOIRE/tmp/$PREFIX"
chmod -R 777 $TEMP
rm -R $TEMP
mkdir -p $TEMP
cd $WINEPREFIX/dosdevices
rm ./*
ln -s ../drive_c c:
ln -s / z:
ln -s $TEMP d:
#asking for CDROM and checking if it's correct one
#CD-ROM 1
POL_SetupWindow_message "$LNG_INSERT_MEDIA_1"
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "manuals/fablepc_manual.pdf"
POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE"
cp -r $CDROM/* $TEMP
chmod 777 $TEMP -R
mv $TEMP/autorun.inf $TEMP/autorun-cd1.inf
#CD-ROM 2
POL_SetupWindow_message "$LNG_INSERT_MEDIA_2"
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "disk2c~1.cab"
POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE"
cp -r $CDROM/* $TEMP
chmod 777 $TEMP -R
mv $TEMP/autorun.inf $TEMP/autorun-cd2.inf
#CD-ROM 3
POL_SetupWindow_message "$LNG_INSERT_MEDIA_3"
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "disk3c~1.cab"
POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE"
cp -r $CDROM/* $TEMP
chmod 777 $TEMP -R
mv $TEMP/autorun.inf $TEMP/autorun-cd3.inf
#CD-ROM 4
POL_SetupWindow_message "$LNG_INSERT_MEDIA_4"
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "disk4c~1.cab"
POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE"
cp -r $CDROM/*.cab $TEMP
chmod 777 $TEMP -R
mv $TEMP/autorun.inf $TEMP/autorun-cd4.inf
mv $TEMP/autorun-cd1.inf $TEMP/autorun.inf
 
POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
wine "d:\\install.exe"
INSTALL_ON="1"
until [ "$INSTALL_ON" == "" ]; do
sleep 5
INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"`
done
POL_SetupWindow_detect_exit
 
#Relinking d: to $CDROM
cd $WINEPREFIX/dosdevices
rm ./d:
ln -s $CDROM ./d:
else
#Asking then installing DDV of the game
cd $HOME
POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
SETUP_EXE="$APP_ANSWER"
POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
wine start /unix "$SETUP_EXE"
INSTALL_ON="1"
until [ "$INSTALL_ON" == "" ]; do
sleep 5
INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"`
done
POL_SetupWindow_detect_exit
fi
 
POL_Call POL_Install_d3dx9
POL_Call POL_Install_wmp9
POL_Call POL_Install_wmpcodecs
 
Set_OS "winxp"
 
#asking about memory size of graphic card
POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "128-256-320-384-512-640-768-896-1024-1792-2048" "-" "64"
VMS="$APP_ANSWER"
 
cd "$WINEPREFIX/drive_c/windows/temp/"
echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > vms.reg
echo "\"VideoMemorySize\"=\"$VMS\"" >> vms.reg
regedit vms.reg
if [ "$VMS" -lt "64" ]; then
POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE"
fi
 
## PlayOnMac Section
[ "$PLAYONMAC" == "" ] && Set_Managed "On"
[ "$PLAYONMAC" == "" ] || Set_Managed "Off"
## End Section
Set_DXGrab "On"
 
#cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
chmod -R 777 "$REPERTOIRE/tmp/"
rm -rf "$REPERTOIRE/tmp/*"
fi
 
#cd "$WINEPREFIX/drive_c/windows/temp/"
#echo "[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]" > dlloverrides.reg
#echo "\"quartz\"=\"native,builtin\"" >> dlloverrides.reg
#regedit dlloverrides.reg
 
POL_SetupWindow_auto_shortcut "$PREFIX" "Fable.exe" "FableTheLostChapter.xpm" "$TITLE" ""
 
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
 
POL_SetupWindow_Close
exit
Il n'y a rien à voir ici