Wii U Emulator For MAC Archives

Wii U Emulator For MAC Archives

Wii U Emulator For MAC Archives

Wii U Emulator For MAC Archives

Login

Informations

CreatorMessage
vlad34

Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 1993
Wine:

Feedbacks

Description

Source code

#!/bin/bash # Date : (2019-12-31) # Last revision : see the changelog below # Wine version used : see the changelog below # Distribution used to test : XUbuntu 18.04 x64 # Author : Dadu042 # Licence : Retail # Only For : http://www.playonlinux.com # # TESTED Editions: DDV # # Middlewares used by this software : . # # CHANGELOG # [vlad34] (2017-07-19) # First script. # [Dadu042] (2019-12-31) # This software now need vcrun2017... (function not yet OK on POL/POM). # Remove download feature. # # # KNOWN ISSUES: # - Wine x86 4.0.3: X # Ideas to improve this script: select archive, then decide if extension is RAR or ZIP or 7Z... [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cemu" PREFIX="Cemu" EDITOR="?" GAME_URL="http://cemu.info/" AUTHOR="Dadu042" STEAM_ID="" WORKING_WINE_VERSION="" GAME_VMS="256" SHORTCUT_FILENAME="cemu.exe" SOFTWARE_CATEGORIES="Emulator;" # http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_9:_Standardization#Advanced_Standardization DOCUMENT_FILE="info.txt" # 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_SetupWindow_message "$(eval_gettext 'WARNING: this software does exist in Linux native version.\n\nThis script only allow to run the Windows version on Linux, please prefer the Linux edition for better 3D speed.')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'This game requires a fast 3D GPU (ie: Intel HD Graphics 4440 is not enough).')" "$TITLE" POL_RequiredVersion "4.0." "$TITLE" # 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 POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" # 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 start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "DVD" ]; then POL_SetupWindow_cdrom # POL_Call POL_Function_NoCDWarning POL_SetupWindow_check_cdrom "setup.exe" POL_Wine start /unix "$CDROM/setup.exe" "/SILENT" POL_Wine_WaitExit "setup.exe" # Restore screen resolution (game's default is 800x600 ?) # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" elif [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then cd "$WINEPREFIX/drive_c" POL_Download "http://cemu.info/releases/cemu_1.16.0.zip" # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" POL_Wine "godoflight_setup.exe" # "/SILENT" POL_Wine_WaitBefore "$TITLE" # POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" # Restore screen resolution (game's default is 1024x768) # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" POL_Shortcut "engine.exe" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" 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')" "~" POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.ZIP')~$(eval_gettext '.EXE')" "~" # APP_ANSWER=".ZIP" if [ "$APP_ANSWER" == ".EXE" ]; then # Asking then installing local files 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" # Restore screen resolution (game's default is 1024x768) # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" 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" "" "" "$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_Debug_Fatal "unrar is required to unarchive $TITLE (unrar package is not installed on the OS)." POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" fi fi ################ # Patch update # ################ # POL_SetupWindow_menu "$(eval_gettext 'Do you want to install a official patch-update ?\n (to download by yourself).')" "$TITLE" "$(eval_gettext 'Yes')~$(eval_gettext 'No')" "~" if [ "$APP_ANSWER" == "$(eval_gettext 'Yes')" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the file to run')" "$TITLE" PATCH_EXE="$APP_ANSWER" POL_Wine start /unix "$PATCH_EXE" POL_Wine_WaitExit "$PATCH_EXE" fi # POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to have huge log file, you should type \ninto Debug flags : fixme-all')" "$TITLE" POL_SetupWindow_Close exit 0

Contributions

MemberMessage
Dadu042 Tuesday 31 December 2019 at 13:24
Dadu042

Information

This update has been approved by the team.

Differences

@@ -0,0 +1,213 @@ +#!/bin/bash +# Date : (2019-12-31) +# Last revision : see the changelog below +# Wine version used : see the changelog below +# Distribution used to test : XUbuntu 18.04 x64 +# Author : Dadu042 +# Licence : Retail +# Only For : http://www.playonlinux.com +# +# TESTED Editions: DDV +# +# Middlewares used by this software : . +# +# CHANGELOG +# [vlad34] (2017-07-19) +# First script. +# [Dadu042] (2019-12-31) +# This software now need vcrun2017... (function not yet OK on POL/POM). +# Remove download feature. +# +# +# KNOWN ISSUES: +# - Wine x86 4.0.3: X + +# Ideas to improve this script: select archive, then decide if extension is RAR or ZIP or 7Z... + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Cemu" +PREFIX="Cemu" +EDITOR="?" +GAME_URL="http://cemu.info/" +AUTHOR="Dadu042" +STEAM_ID="" +WORKING_WINE_VERSION="" +GAME_VMS="256" +SHORTCUT_FILENAME="cemu.exe" +SOFTWARE_CATEGORIES="Emulator;" +# http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_9:_Standardization#Advanced_Standardization +DOCUMENT_FILE="info.txt" + +# 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_SetupWindow_message "$(eval_gettext 'WARNING: this software does exist in Linux native version.\n\nThis script only allow to run the Windows version on Linux, please prefer the Linux edition for better 3D speed.')" "$TITLE" + +# POL_SetupWindow_message "$(eval_gettext 'This game requires a fast 3D GPU (ie: Intel HD Graphics 4440 is not enough).')" "$TITLE" + +POL_RequiredVersion "4.0." "$TITLE" + +# 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 + POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" + # 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 start /unix "steam.exe" steam://install/$STEAM_ID + POL_Wine_WaitExit "$TITLE" + +elif [ "$INSTALL_METHOD" == "DVD" ]; then + POL_SetupWindow_cdrom + + # POL_Call POL_Function_NoCDWarning + + POL_SetupWindow_check_cdrom "setup.exe" + POL_Wine start /unix "$CDROM/setup.exe" "/SILENT" + POL_Wine_WaitExit "setup.exe" + + # Restore screen resolution (game's default is 800x600 ?) + # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" + + POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" + POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" + +elif [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then + cd "$WINEPREFIX/drive_c" + POL_Download "http://cemu.info/releases/cemu_1.16.0.zip" + # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" + POL_Wine "godoflight_setup.exe" # "/SILENT" + POL_Wine_WaitBefore "$TITLE" + # POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" + + # Restore screen resolution (game's default is 1024x768) + # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" + + POL_Shortcut "engine.exe" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" + POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" + +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')" "~" + POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.ZIP')~$(eval_gettext '.EXE')" "~" + # APP_ANSWER=".ZIP" + +if [ "$APP_ANSWER" == ".EXE" ]; then + # Asking then installing local files 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" + + # Restore screen resolution (game's default is 1024x768) + # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" + + POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" + POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" + +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" "" "" "$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_Debug_Fatal "unrar is required to unarchive $TITLE (unrar package is not installed on the OS)." + POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" +fi +fi + +################ +# Patch update # +################ + +# POL_SetupWindow_menu "$(eval_gettext 'Do you want to install a official patch-update ?\n (to download by yourself).')" "$TITLE" "$(eval_gettext 'Yes')~$(eval_gettext 'No')" "~" + +if [ "$APP_ANSWER" == "$(eval_gettext 'Yes')" ]; then + POL_SetupWindow_browse "$(eval_gettext 'Please select the file to run')" "$TITLE" + PATCH_EXE="$APP_ANSWER" + POL_Wine start /unix "$PATCH_EXE" + POL_Wine_WaitExit "$PATCH_EXE" +fi + + +# POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" + +# POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to have huge log file, you should type \ninto Debug flags : fixme-all')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file

New source code

#!/bin/bash # Date : (2019-12-31) # Last revision : see the changelog below # Wine version used : see the changelog below # Distribution used to test : XUbuntu 18.04 x64 # Author : Dadu042 # Licence : Retail # Only For : http://www.playonlinux.com # # TESTED Editions: DDV # # Middlewares used by this software : . # # CHANGELOG # [vlad34] (2017-07-19) # First script. # [Dadu042] (2019-12-31) # This software now need vcrun2017... (function not yet OK on POL/POM). # Remove download feature. # # # KNOWN ISSUES: # - Wine x86 4.0.3: X # Ideas to improve this script: select archive, then decide if extension is RAR or ZIP or 7Z... [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cemu" PREFIX="Cemu" EDITOR="?" GAME_URL="http://cemu.info/" AUTHOR="Dadu042" STEAM_ID="" WORKING_WINE_VERSION="" GAME_VMS="256" SHORTCUT_FILENAME="cemu.exe" SOFTWARE_CATEGORIES="Emulator;" # http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_9:_Standardization#Advanced_Standardization DOCUMENT_FILE="info.txt" # 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_SetupWindow_message "$(eval_gettext 'WARNING: this software does exist in Linux native version.\n\nThis script only allow to run the Windows version on Linux, please prefer the Linux edition for better 3D speed.')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'This game requires a fast 3D GPU (ie: Intel HD Graphics 4440 is not enough).')" "$TITLE" POL_RequiredVersion "4.0." "$TITLE" # 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 POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" # 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 start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "DVD" ]; then POL_SetupWindow_cdrom # POL_Call POL_Function_NoCDWarning POL_SetupWindow_check_cdrom "setup.exe" POL_Wine start /unix "$CDROM/setup.exe" "/SILENT" POL_Wine_WaitExit "setup.exe" # Restore screen resolution (game's default is 800x600 ?) # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" elif [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then cd "$WINEPREFIX/drive_c" POL_Download "http://cemu.info/releases/cemu_1.16.0.zip" # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" POL_Wine "godoflight_setup.exe" # "/SILENT" POL_Wine_WaitBefore "$TITLE" # POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" # Restore screen resolution (game's default is 1024x768) # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" POL_Shortcut "engine.exe" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" 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')" "~" POL_SetupWindow_menu "$(eval_gettext 'What is the type of the file?.')" "$TITLE" "$(eval_gettext '.ZIP')~$(eval_gettext '.EXE')" "~" # APP_ANSWER=".ZIP" if [ "$APP_ANSWER" == ".EXE" ]; then # Asking then installing local files 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" # Restore screen resolution (game's default is 1024x768) # POL_Shortcut_InsertBeforeWine "$SHORTCUT" "trap 'xrandr -s 0' EXIT" POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" POL_Shortcut_Document "$TITLE" "$DOCUMENT_FILE" 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" "" "" "$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_Debug_Fatal "unrar is required to unarchive $TITLE (unrar package is not installed on the OS)." POL_Shortcut "$SHORTCUT_FILENAME" "$TITLE" "" "" "$SOFTWARE_CATEGORIES" fi fi ################ # Patch update # ################ # POL_SetupWindow_menu "$(eval_gettext 'Do you want to install a official patch-update ?\n (to download by yourself).')" "$TITLE" "$(eval_gettext 'Yes')~$(eval_gettext 'No')" "~" if [ "$APP_ANSWER" == "$(eval_gettext 'Yes')" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the file to run')" "$TITLE" PATCH_EXE="$APP_ANSWER" POL_Wine start /unix "$PATCH_EXE" POL_Wine_WaitExit "$PATCH_EXE" fi # POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to have huge log file, you should type \ninto Debug flags : fixme-all')" "$TITLE" POL_SetupWindow_Close exit 0

Replies

vlad34 Wednesday 19 July 2017 at 14:53
vlad34

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

je veux bien un coup de mains pour finir l'installateur ^^ , c'est mon 1er :p 

tout et dit dans le script , mais c'est un .zip avec les fichiers de conf de l'émulateur a l'intérieur qu'il faudrait mettre dans c:/ProgramsFiles/CEMU et crée un raccourci mais je vois pas comment optimiser la tache ^^

chez moi sa fonctionne très bien ;) , merci de compléter les pro des scripts :) , et de corriger si besoin ;) .

et en dependances:

VideoDriver

physx

dxfullsetup

Microsoft Core Fonts

vcrun2008

vcrun2010

vcrun2015

Gecko

sur du wine 64bits .

merci de l'aide ;) 

Differences

@@ -0,0 +1,40 @@ +#!/bin/bash +#Date : (2017-07-19) +#Distribution used to test : Ubuntu 16.04 LTS 64bits +#Author : vlad34 +#Playonlinux 4.2.12 + +[ "$PLAYONLINUX" = " " ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="CEMU" +WINEVERSION="2.12-staging" +TITLE="Cemu-Emulator +EDITOR="*" +GAME_URL="http://cemu.info/index.html" +AUTHOR="vlad34" +DOWNLOAD_URL="http://cemu.info/releases/cemu_1.8.1.zip" + +# Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "win8.1" + +# Installation + +# Create Shortcut + +# Cleanup + +exit 0 \ No newline at end of file

New source code

#!/bin/bash #Date : (2017-07-19) #Distribution used to test : Ubuntu 16.04 LTS 64bits #Author : vlad34 #Playonlinux 4.2.12 [ "$PLAYONLINUX" = " " ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CEMU" WINEVERSION="2.12-staging" TITLE="Cemu-Emulator EDITOR="*" GAME_URL="http://cemu.info/index.html" AUTHOR="vlad34" DOWNLOAD_URL="http://cemu.info/releases/cemu_1.8.1.zip" # Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win8.1" # Installation # Create Shortcut # Cleanup exit 0

Replies

Источник: [https://torrent-igruha.org/3551-portal.html]
, Wii U Emulator For MAC Archives

Wii U Emulator Mac Os X Download



Notifii Track is a cloud-based package tracking software for apartment offices, university mailrooms, and corporate mailrooms. Quickly and easily log packages as you receive them.

Automatically alert the recipient via email and text message. Capture signature proof-of-pickup/delivery. Notifii Track saves you time (literally, just a few seconds to scan a package) and increases package accountability. Use Notifii Track through your web browser, or on any iOS/Android device. 30-day free trial available.

Exzap✔ See URL below ↓▌Cemu - Wii U emulator. I just said screw it and downloaded the CEMU 1.8.0b on its own and copied it over to the cemu folder the Wii U. This new version really. Cemu Wii New Posts. Building a Decent Gaming Entertainment Center. (Text Version) Blog Post: PlayerUnknown"s Battlegrounds" Desert Map Gets Detailed And Shown Off; Download Latest Version of Cemu - Wii U emulator for Free!

Works with all Windows(10,7,8/8.1,Vista) versions. New 1.11.1 zip fujitsu for Windows CEMU 1.7.4 Preview (Wii U Emulator) - The Legend of Zelda: Breath of The Wild. Reddit: the front page of. Wii U emulator.

You can find and download the Cemu emulator by clicking here, or here. The official Patreon can be found here.

RULES Download Full Version On WinThe Cemu Wii U Emulator version 1.5.2 now runs most. Technology daily: Wii U emulator: Cemu 1.2.0 released Wii U emulator: Cemu 1.2.0 released - Wololo Cemu Emulator Cemu - Wii U emulator. New Super Luigi U New Super Mario Bros U Pikmin 3.

The latest version of Cemu 1.9.1 is out and it seems to work well. I present to you CEMU, world"s first Wii U emulator capable of running. Link for most recent version of Cemu is now on. I can"t wait to get my new laptop. Cemu 1.11.2 Improvements Wii U Emulation - ruclip Download Cemu Wii U emulator for Windows now from Softonic: 100% safe and virus free. More than 27 downloads this month.

Download Cemu Wii U emulator latest version 2017::Cemu, the Wii U emulator. r/cemu - redditEmuNation is today covering the Nintendo Wii U Emulator, Cemu and its current build of 1.6.4. I am looking at how its performing with various games such as.Cemu, the popular (if highly experimental) Wii U emulator for Windows by developer Exzap has just been updated to version 1.2.0. This new version brings.Cemu Wii - wii u emulatorTo install CEMU - Wii U emulator. The maintainers of this Chocolatey Package will be notified about new comments.The Wii U CEMU Emulator version 1.4.0c is now available.DownloadCemuWiiUEmulator (@DownloadCemuWiiU."

Cemu" Wii U emulator released - HackinformerChocolatey Gallery CEMU - Wii U emulator 1.11.0Wii U Emulator Cemu Receives New 1.9.0c Update; New Video.


Источник: [https://torrent-igruha.org/3551-portal.html]
Wii U Emulator For MAC Archives

How to Play Wii U Games on Your PC With Cemu

Cemu—the Nintendo Wii U emulator—is now a mature program with good performance on most systems. If you’d like to play Wii U games on your PC with all the benefits of an emulator, Cemu is the way to go.

RELATED:How to Play Wii and GameCube Games on your PC with Dolphin

Why Bother with Emulators?

There are plenty of reasons for emulating a game rather than playing it on official hardware.

  • Better Graphics: Emulated games can push the limits of your gaming PC, offering much higher graphics quality and in some cases even increased performance. While The Legend of Zelda: Breath of the Wild runs at 720p at around 30fps on a Nintendo Wii U, Cemu can very easily manage 4K@60fps on high-end systems, with texture and graphics mods to boot.
  • Ease of use: A normal Wii U requires you to have an additional device plugged into your TV, which you would have to switch to and then slot in the game disc. With Cemu, you can have all of your games digitally on your PC, which will also load much faster than stock hardware.
  • Controller flexibility: You can play with official Wii Remotes, but you don’t have to. If you prefer to use a PS4 controller, you can connect that to Cemu as well.

Cemu can’t easily take the place of a home console in your living room, but it does a very good (and arguably better) job of playing Wii U games on PC.

How to Get Wii U Games Legally

Even though emulators are commonly used to run pirated games, it’s entirely legal to run games you’ve ripped from a real disc. To rip games, you’ll need an actual Nintendo Wii U console you can homebrew. The homebrew process is a little complicated, but it’s worth doing anyway as a homebrewed Wii U is handy in its own right as a retro gaming console.

Once you’ve got your Wii U homebrewed, you can rip games using a program called ddd Title Dumper. Transfer them to your computer, and store them all in one place on your hard drive for Cemu to access easily. Most Wii U games are fairly small, around 2-10 GB, so they won’t take up too much space.

RELATED:Is Downloading Retro Video Game ROMs Ever Legal?

Setting Up Cemu

Cemu isn’t the most user-friendly of emulators. The setup process is a little involved, and you’ll have to download some files that are usually bundled with programs like this. This may change in the future, but for now, most of this will be manual.

Download the latest release of Cemu from its website and unzip the folder. The folder will be named something like “cemu_1.15.3,” but you can rename this to whatever you’d like, and store it anywhere easy to access (like your Desktop or Documents folders). The contents will look something like this:

Don’t run Cemu just yet; there’s still some configuring to do. There’s a mod called Cemuhook that you’ll want for specific graphics packs and performance options. Download the release matching your Cemu version, and open the zipped Cemuhook folder. You can drag everything in here into your Cemu install folder.

Next comes the graphics packs. Graphics packs in Cemu serve lots of roles, from essential fixes for bugs on specific hardware, to making the game look or run better, to full-on mods for Wii U games. You can download all the most important ones from this tracker on Github.

Open up the zipped folder, press Ctrl+A to select everything, and drag them all into the folder in your Cemu install. You don’t have to copy all of them if you are only playing one game, but they’re just text files and small enough that it doesn’t matter much.

The last thing you’ll need to install is shader caches. With the way Cemu works, every time it has to calculate a new shader, your game will lag quite a bit while it figures it out. Luckily after you’ve done it once, the answer is stored in a cache and used for all calculations in the future, so if you play long enough, it will be very smooth. Since you probably don’t want to sit through hours of constant stutters, you can download someone else’s cache and use it instead. You can find a list of complete caches for various games on the CemuCaches subreddit.

Download the caches for the games you’ll be playing, and open up the .rar folder. The actual cache file is a .bin file which you’ll want to transfer to in your Cemu folder.

After all of this, you can finally open Cemu.exe to run the emulator. If you can’t open Cemu, make sure you have the latest C++ libraries installed.

RELATED:Why Are There So Many "Microsoft Visual C++ Redistributables" Installed on My PC?

Using Cemu

Cemu has a lot of options to configure, so we’ll stick to the most important ones.

Graphics Packs

You can enable different graphics packs under Options > Graphics Packs. They’ll be sorted by game, and have different categories within each game.

Resolution is an important option to configure, both for performance and visuals. You’ll find it along with shadow resolution and antialiasing quality under the “Graphics” category for most games. You’ll find mods and fixes for games in the graphics packs as well. Most graphics packs can be applied while the game is running, so mess around with the options and find what works best for you.

Connecting Controllers

A significant benefit of emulators is that you can play with any controller you prefer. Cemu still supports real Wii Remotes, so long as you connect them over Bluetooth, but you can use Xbox and PlayStation controllers in the same fashion. You’ll have to set all the buttons up manually under Options > Input Settings, but you can save your configuration to a profile so you won’t have to do it twice.

Cemu will emulate a specific controller under the hood, and for compatibility, you should probably stick to emulating a “Wii U Pro Controller.” This is so that the game you’re playing will act as if you have your Wii U Gamepad turned off and won’t show anything on its screen. If you’re playing a game that uses the Gamepad’s screen, you’ll have to enable “Separate Gamepad View” under options.

Performance

The emulator’s performance will ultimately depend on your system, but there are some settings to enable to maximize yours. Under “Debug,” you’ll find two options for adjusting the game’s timer. Make sure they’re set as shown here, to QPC and 1ms respectively.

A major option is the CPU settings, found under CPU > Mode. If you have a quad-core or higher system, set this to Dual or Triple-core recompiler. This will make Cemu use more threads, and ease up on your CPU.

Under Options, set “GPU buffer cache accuracy” to Low.

That should be enough for Cemu run well on your CPU (assuming you’re not playing on a toaster). If you’re still having performance issues, it might be GPU related, so try reducing the game’s resolution and graphics in the graphics packs settings.

Once you’re all set, you’re ready to start playing. If you don’t see your games in the main window, you may have to add the path under Options > General Settings > Game Paths.

Anthony Heddings
Anthony Heddings is the resident cloud engineer for LifeSavvy Media, a technical writer, programmer, and an expert at Amazon's AWS platform. He's written hundreds of articles for How-To Geek and CloudSavvy IT that have been read millions of times.
Read Full Bio »
Источник: [https://torrent-igruha.org/3551-portal.html]
.

What’s New in the Wii U Emulator For MAC Archives?

Screen Shot

System Requirements for Wii U Emulator For MAC Archives

Add a Comment

Your email address will not be published. Required fields are marked *