Files
Autodesk-Fusion-360-for-Linux/files/builds/development-branch/install.sh

918 lines
39 KiB
Bash
Raw Normal View History

2022-04-30 14:24:47 +02:00
#!/bin/bash
####################################################################################################
# Name: Autodesk Fusion 360 - Setup Wizard (Linux) #
# Description: With this file you can install Autodesk Fusion 360 on Linux. #
# Author: Steve Zabka #
# Author URI: https://cryinkfly.com #
# License: MIT #
# Copyright (c) 2020-2022 #
2022-05-06 06:16:13 +02:00
# Time/Date: 06:00/06.05.2022 #
2022-04-30 14:24:47 +02:00
# Version: 1.7.9 -> 1.8.0 #
####################################################################################################
# Path: /$HOME/.fusion360/bin/install.sh
###############################################################################################################################################################
# DESCRIPTION IN DETAIL #
###############################################################################################################################################################
# With the help of my setup wizard, you will be given a way to install Autodesk Fusion 360 with some extensions on #
# Linux so that you don't have to use Windows or macOS for this program in the future! #
# #
# Also, my setup wizard will guides you through the installation step by step and will install some required packages. #
# #
# The next one is you have the option of installing the program directly on your system or you can install it on an external storage medium. #
# #
# But it's important to know, you must to purchase the licenses directly from the manufacturer of Autodesk Fusion 360, when you will work with them on Linux! #
###############################################################################################################################################################
# Default-Path:
SP_PATH="$HOME/.fusion360"
# Reset the graphics driver value:
SP_DRIVER="DXVK"
###############################################################################################################################################################
# THE INITIALIZATION OF DEPENDENCIES STARTS HERE: #
###############################################################################################################################################################
function SP_STRUCTURE {
mkdir -p $SP_PATH/bin
mkdir -p $SP_PATH/logs
mkdir -p $SP_PATH/config
mkdir -p $SP_PATH/servers
mkdir -p $SP_PATH/graphics
2022-05-05 18:33:31 +02:00
mkdir -p $SP_PATH/downloads
2022-04-30 14:24:47 +02:00
mkdir -p $SP_PATH/locale/cs-CZ
mkdir -p $SP_PATH/locale/de-DE
mkdir -p $SP_PATH/locale/en-US
mkdir -p $SP_PATH/locale/es-ES
mkdir -p $SP_PATH/locale/fr-FR
mkdir -p $SP_PATH/locale/it-IT
mkdir -p $SP_PATH/locale/ja-JP
mkdir -p $SP_PATH/locale/ko-KR
mkdir -p $SP_PATH/locale/zh-CN
}
###############################################################################################################################################################
# Get all server connections (links):
2022-05-05 18:29:10 +02:00
function SP_SERVER_LIST {
2022-04-30 14:24:47 +02:00
# LIST
wget -N -P $SP_PATH/servers https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/raw/main/files/builds/stable-branch/servers/server-list.txt
# LANGUAGE FILES
SP_SERVER_1=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 8'`
SP_SERVER_2=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 10'`
SP_SERVER_3=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 11'`
SP_SERVER_4=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 13'`
SP_SERVER_5=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 14'`
SP_SERVER_6=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 16'`
SP_SERVER_7=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 17'`
SP_SERVER_8=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 19'`
SP_SERVER_9=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 20'`
SP_SERVER_10=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 22'`
SP_SERVER_11=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 23'`
SP_SERVER_12=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 25'`
SP_SERVER_13=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 26'`
SP_SERVER_14=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 28'`
SP_SERVER_15=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 29'`
SP_SERVER_16=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 31'`
SP_SERVER_17=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 32'`
SP_SERVER_18=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 34'`
SP_SERVER_19=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 35'`
# WINETRICKS
SP_SERVER_20=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 42'`
2022-05-05 18:29:10 +02:00
# AUTODESK FUSION 360 INSTALLER
SP_SERVER_21=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 49'`
# DXVK AND OPENGL:
SP_SERVER_22=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 56'`
SP_SERVER_23=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 57'`
SP_SERVER_24=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 58'`
# ICONS:
SP_SERVER_25=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 65'`
SP_SERVER_26=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 66'`
# EXTRA SCRIPTS:
SP_SERVER_27=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 73'`
SP_SERVER_28=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 74'`
SP_SERVER_29=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 75'`
SP_SERVER_30=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 76'`
# EXTENSIONS:
2022-05-05 18:53:53 +02:00
SP_SERVER_31=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 83'`
SP_SERVER_32=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 84'`
SP_SERVER_33=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 85'`
SP_SERVER_34=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 86'`
SP_SERVER_35=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 87'`
SP_SERVER_36=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 88'`
SP_SERVER_37=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 89'`
SP_SERVER_38=`cat $SP_PATH/servers/server-list.txt | awk 'NR == 90'`
2022-04-30 14:24:47 +02:00
}
###############################################################################################################################################################
# Load the index of locale files:
function SP_LOCALE_INDEX {
wget -N -P $SP_PATH/locale $SP_SERVER_1
chmod +x $SP_PATH/locale/locale.sh
. $SP_PATH/locale/locale.sh
SP_LOCALE_EN
}
# Czech:
function SP_LOCALE_CS {
SP_LOCALE="cs-CZ"
. $SP_PATH/locale/cs-CZ/locale-cs.sh
SP_LICENSE="$SP_PATH/locale/cs-CZ/license-cs.txt"
}
# German:
function SP_LOCALE_DE {
SP_LOCALE="de-DE"
. $SP_PATH/locale/de-DE/locale-de.sh
SP_LICENSE="$SP_PATH/locale/de-DE/license-de.txt"
}
# English:
function SP_LOCALE_EN {
SP_LOCALE="en-US"
. $SP_PATH/locale/en-US/locale-en.sh
SP_LICENSE="$SP_PATH/locale/en-US/license-en.txt"
}
# Spanish:
function SP_LOCALE_ES {
SP_LOCALE="es-ES"
. $SP_PATH0/locale/es-ES/locale-es.sh
SP_LICENSE="$SP_PATH/locale/es-ES/license-es.txt"
}
# French:
function SP_LOCALE_FR {
SP_LOCALE="fr-FR"
. $SP_PATH/locale/fr-FR/locale-fr.sh
SP_LICENSE="$SP_PATH/locale/fr-FR/license-fr.txt"
}
# Italian:
function SP_LOCALE_IT {
SP_LOCALE="it-IT"
. $SP_PATH/locale/it-IT/locale-it.sh
SP_LICENSE="$SP_PATH/locale/it-IT/license-it.txt"
}
# Japanese:
function SP_LOCALE_JA {
SP_LOCALE="ja-JP"
. $SP_PATH/locale/ja-JP/locale-ja.sh
SP_LICENSE="$SP_PATH/locale/ja-JP/license-ja.txt"
}
# Korean:
function SP_LOCALE_KO {
SP_LOCALE="ko-KR"
. $SP_PATH/locale/ko-KR/locale-ko.sh
SP_LICENSE="$SP_PATH/locale/ko-KR/license-ko.txt"
}
# Chinese:
function SP_LOCALE_ZH {
SP_LOCALE="zh-CN"
. $SP_PATH/locale/zh-CN/locale-zh.sh
SP_LICENSE="$SP_PATH/locale/zh-CN/license-zh.txt"
}
2022-05-05 18:33:31 +02:00
###############################################################################################################################################################
# Load the newest winetricks version:
function SP_WINETRICKS_LOAD {
wget -N -P $SP_PATH/bin $SP_SERVER_20
chmod +x $SP_PATH/bin/winetricks
}
###############################################################################################################################################################
# Load newest Autodesk Fusion 360 installer version for the Setup Wizard!
function SP_FUSION360_INSTALLER_LOAD {
# Search for a existing installer of Autodesk Fusion 360
FUSION360_INSTALLER="$SP_PATH/downloads/Fusion360installer.exe"
if [ -f "$FUSION360_INSTALLER" ]; then
echo "The Autodesk Fusion 360 installer exist!"
else
echo "The Autodesk Fusion 360 installer doesn't exist and will be downloaded for you!"
wget $SP_SERVER_21 -O Fusion360installer.exe
mv "Fusion360installer.exe" "$SP_PATH/downloads/Fusion360installer.exe"
fi
}
2022-05-05 18:40:11 +02:00
###############################################################################################################################################################
# Load the icons and .desktop-files:
function SP_FUSION360_SHORTCUTS_LOAD {
# Create a .desktop file (launcher.sh) for Autodesk Fusion 360!
wget -N -P $SP_PATH/bin $SP_SERVER_25
mkdir -p $HOME/.local/share/applications/wine/Programs/Autodesk
echo "[Desktop Entry]" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Name=Autodesk Fusion 360" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Comment=Autodesk Fusion 360 is a cloud-based 3D modeling, CAD, CAM, and PCB software platform for product design and manufacturing." >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Exec=bash ./launcher.sh" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Type=Application" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Categories=Development;Graphics;Science" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "StartupNotify=true" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Icon=$SP_PATH/bin/fusion360.svg" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Terminal=true" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
echo "Path=$SP_PATH/bin" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360.desktop
# Create a .desktop file (uninstall.sh) for Autodesk Fusion 360!
wget -N -P $SP_PATH/bin $SP_SERVER_26
echo "[Desktop Entry]" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Name=Autodesk Fusion 360 - Uninstall" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Comment=With this program you can delete Autodesk Fusion 360 on your system!" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Exec=bash ./uninstall.sh" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Type=Application" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Categories=Development;Graphics;Science" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "StartupNotify=true" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Icon=$SP_PATH/bin/fusion360-uninstall.svg" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Terminal=true" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
echo "Path=$SP_PATH/bin" >> $HOME/.local/share/applications/wine/Programs/Autodesk/Autodesk\ Fusion\ 360\ Uninstall.desktop
wget -N -P $SP_PATH/bin $SP_SERVER_27
chmod +x $SP_PATH/bin/uninstall.sh
wget -N -P $SP_PATH/bin $SP_SERVER_28
chmod +x $SP_PATH/bin/launcher.sh
wget -N -P $SP_PATH/bin $SP_SERVER_29
chmod +x $SP_PATH/bin/update.sh
wget -N -P $SP_PATH/bin $SP_SERVER_30
chmod +x $SP_PATH/bin/read-text.sh
}
###############################################################################################################################################################
# ALL LOG-FUNCTIONS ARE ARRANGED HERE: #
###############################################################################################################################################################
# Provides information about setup actions during installation.
function SP_LOGFILE {
exec 5> $SP_PATH/logs/setupact.log
BASH_XTRACEFD="5"
set -x
}
###############################################################################################################################################################
# ALL FUNCTIONS FOR DXVK AND OPENGL START HERE: #
###############################################################################################################################################################
function SP_DXVK_OPENGL_1 {
if [[ $SP_DRIVER = "DXVK" ]]; then
WINEPREFIX=$WP_PATH sh $SP_PATH/bin/winetricks -q dxvk
wget -N -P $WP_PATH/drive_c/users/$USER/Downloads $SP_SERVER_22
cd "$WP_PATH/drive_c/users/$USER/Downloads"
WINEPREFIX=$WP_PATH wine regedit.exe DXVK.reg
fi
}
function SP_DXVK_OPENGL_2 {
if [[ $SP_DRIVER = "DXVK" ]]; then
wget -N $SP_SERVER_23
mv "DXVK.xml" "NMachineSpecificOptions.xml"
else
wget -N $SP_SERVER_24
mv "OpenGL.xml" "NMachineSpecificOptions.xml"
fi
}
2022-05-05 18:53:53 +02:00
###############################################################################################################################################################
# ALL FUNCTIONS FOR WINE AND WINETRICKS START HERE: #
###############################################################################################################################################################
# Autodesk Fusion 360 will now be installed using Wine and Winetricks.
function SP_FUSION360_INSTALL {
# Note that the winetricks sandbox verb merely removes the desktop integration and Z: drive symlinks and is not a "true" sandbox.
# It protects against errors rather than malice. It's useful for, e.g., keeping games from saving their settings in random subdirectories of your home directory.
# But it still ensures that wine, for example, no longer has access permissions to Home!
# For this reason, the EXE files must be located directly in the Wineprefix folder!
WINEPREFIX=$WP_PATH sh $SP_PATH/bin/winetricks -q sandbox
# We must install some packages!
WINEPREFIX=$WP_PATH sh $SP_PATH/bin/winetricks -q atmlib gdiplus corefonts cjkfonts msxml4 msxml6 vcrun2017 fontsmooth=rgb winhttp win10
# We must install cjkfonts again then sometimes it doesn't work in the first time!
WINEPREFIX=$WP_PATH sh $SP_PATH/bin/winetricks -q cjkfonts
SP_DXVK_OPENGL_1
# We must copy the EXE-file directly in the Wineprefix folder (Sandbox-Mode)!
cp "$SP_PATH/downloads/Fusion360installer.exe" "$wineprefixname/drive_c/users/$USER/Downloads"
WINEPREFIX=$WP_PATH wine $wineprefixname/drive_c/users/$USER/Downloads/Fusion360installer.exe -p deploy -g -f log.txt --quiet
WINEPREFIX=$WP_PATH wine $wineprefixname/drive_c/users/$USER/Downloads/Fusion360installer.exe -p deploy -g -f log.txt --quiet
mkdir -p "$WP_PATH/drive_c/users/$USER/AppData/Roaming/Autodesk/Neutron Platform/Options"
cd "$WP_PATH/drive_c/users/$USER/AppData/Roaming/Autodesk/Neutron Platform/Options"
SP_DXVK_OPENGL_2
mkdir -p "$WP_PATH/drive_c/users/$USER/AppData/Local/Autodesk/Neutron Platform/Options"
cd "$WP_PATH/drive_c/users/$USER/AppData/Local/Autodesk/Neutron Platform/Options"
SP_DXVK_OPENGL_2
mkdir -p "$WP_PATH/drive_c/users/$USER/Application Data/Autodesk/Neutron Platform/Options"
cd "$WP_PATH/drive_c/users/$USER/Application Data/Autodesk/Neutron Platform/Options"
SP_DXVK_OPENGL_2
cd "SP_PATH/bin"
SP_FUSION360_SHORTCUTS_LOAD
SP_FUSION360_EXTENSIONS
SP_COMPLETED
}
###############################################################################################################################################################
# ALL FUNCTIONS FOR SUPPORTED LINUX DISTRIBUTIONS START HERE: #
###############################################################################################################################################################
function OS_ARCHLINUX {
echo "Checking for multilib..."
if ARCHLINUX_VERIFY_MULTILIB ; then
echo "multilib found. Continuing..."
sudo pacman -Sy --needed wine wine-mono wine_gecko winetricks p7zip curl cabextract samba ppp
SP_FUSION360_INSTALL
else
echo "Enabling multilib..."
echo "[multilib]" | sudo tee -a /etc/pacman.conf
echo "Include = /etc/pacman.d/mirrorlist" | sudo tee -a /etc/pacman.conf
sudo pacman -Sy --needed wine wine-mono wine_gecko winetricks p7zip curl cabextract samba ppp
SP_FUSION360_INSTALL
fi
}
function ARCHLINUX_VERIFY_MULTILIB {
if cat /etc/pacman.conf | grep -q '^\[multilib\]$' ; then
true
else
false
fi
}
###############################################################################################################################################################
function DEBIAN_BASED_1 {
# Some systems require this command for all repositories to work properly and for the packages to be downloaded for installation!
sudo apt-get --allow-releaseinfo-change update
# Added i386 support for wine!
sudo dpkg --add-architecture i386
}
function DEBIAN_BASED_2 {
sudo apt-get update
sudo apt-get install p7zip p7zip-full p7zip-rar curl winbind cabextract wget
sudo apt-get install --install-recommends winehq-staging
SP_FUSION360_INSTALL
}
function OS_DEBIAN_10 {
sudo apt-add-repository -r 'deb https://dl.winehq.org/wine-builds/debian/ buster main'
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10//Release.key -O Release.key -O- | sudo apt-key add -
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/ ./'
}
function OS_DEBIAN_11 {
sudo apt-add-repository -r 'deb https://dl.winehq.org/wine-builds/debian/ bullseye main'
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_11//Release.key -O Release.key -O- | sudo apt-key add -
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_11/ ./'
}
function OS_UBUNTU_18 {
sudo apt-add-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/Release.key -O Release.key -O- | sudo apt-key add -
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/ ./'
}
function OS_UBUNTU_20 {
sudo add-apt-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_20.04/Release.key -O Release.key -O- | sudo apt-key add -
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_20.04/ ./'
}
function OS_UBUNTU_22 {
sudo add-apt-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_22.04/Release.key -O Release.key -O- | sudo apt-key add -
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_22.04/ ./'
}
###############################################################################################################################################################
function FEDORA_BASED_1 {
sudo dnf update
sudo dnf upgrade
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
}
function FEDORA_BASED_2 {
sudo dnf install p7zip p7zip-plugins curl wget wine cabextract
SP_FUSION360_INSTALL
}
function OS_FEDORA_34 {
sudo dnf config-manager --add-repo https://download.opensuse.org/repositories/Emulators:/Wine:/Fedora/Fedora_34/Emulators:Wine:Fedora.repo
}
function OS_FEDORA_35 {
sudo dnf config-manager --add-repo https://download.opensuse.org/repositories/Emulators:/Wine:/Fedora/Fedora_35/Emulators:Wine:Fedora.repo
}
function OS_FEDORA_36 {
sudo dnf config-manager --add-repo https://download.opensuse.org/repositories/Emulators:/Wine:/Fedora/Fedora_36/Emulators:Wine:Fedora.repo
}
###############################################################################################################################################################
function OS_OPENSUSE_152 {
su -c 'zypper up && zypper rr https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.2/ wine && zypper ar -cfp 95 https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.2/ wine && zypper install p7zip-full curl wget wine cabextract'
SP_FUSION360_INSTALL
}
function OS_OPENSUSE_153 {
su -c 'zypper up && zypper rr https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.3/ wine && zypper ar -cfp 95 https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.3/ wine && zypper install p7zip-full curl wget wine cabextract'
SP_FUSION360_INSTALL
}
# Has not been published yet!
function OS_OPENSUSE_154 {
su -c 'zypper up && zypper rr https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.4/ wine && zypper ar -cfp 95 https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.4/ wine && zypper install p7zip-full curl wget wine cabextract'
SP_FUSION360_INSTALL
}
function OS_OPENSUSE_TW {
su -c 'zypper up && zypper rr https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Tumbleweed/ wine && zypper ar -cfp 95 https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Tumbleweed/ wine && zypper install p7zip-full curl wget wine cabextract'
SP_FUSION360_INSTALL
}
###############################################################################################################################################################
function OS_REDHAT_LINUX_8 {
sudo subscription-manager repos --enable codeready-builder-for-rhel-8-x86_64-rpms
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo dnf upgrade
sudo dnf install wine
SP_FUSION360_INSTALL
}
function OS_REDHAT_LINUX_9 {
sudo subscription-manager repos --enable codeready-builder-for-rhel-9-x86_64-rpms
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
sudo dnf upgrade
sudo dnf install wine
SP_FUSION360_INSTALL
}
###############################################################################################################################################################
function OS_SOLUS_LINUX {
sudo eopkg install -y wine winetricks p7zip curl cabextract samba ppp
SP_FUSION360_INSTALL
}
###############################################################################################################################################################
function OS_VOID_LINUX {
sudo xbps-install -Sy wine wine-mono wine-gecko winetricks p7zip curl cabextract samba ppp
SP_FUSION360_INSTALL
}
###############################################################################################################################################################
function OS_GENTOO_LINUX {
sudo emerge -nav virtual/wine app-emulation/winetricks app-emulation/wine-mono app-emulation/wine-gecko app-arch/p7zip app-arch/cabextract net-misc/curl net-fs/samba net-dialup/ppp
SP_FUSION360_INSTALL
}
###############################################################################################################################################################
# ALL FUNCTIONS FOR THE EXTENSIONS START HERE: #
###############################################################################################################################################################
# Install a extension: Airfoil Tools
function EXTENSION_AIRFOIL_TOOLS {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
wget -N $SP_SERVER_31 &&
WINEPREFIX=$WP_PATH wine AirfoilTools_win64.msi
}
###############################################################################################################################################################
# Install a extension: Additive Assistant (FFF)
function EXTENSION_ADDITIVE_ASSISTANT {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
wget -N $SP_SERVER_32 &&
WINEPREFIX=$WP_PATH msiexec /i AdditiveAssistant.bundle-win64.msi
}
###############################################################################################################################################################
# Install a extension: Czech localization for F360
function EXTENSION_CZECH_LOCALE {
SP_SEARCH_EXTENSION_CZECH_LOCALE
WINEPREFIX=$WP_PATH msiexec /i $CZECH_LOCALE_EXTENSION
}
###############################################################################################################################################################
# Install a extension: HP 3D Printers for Autodesk® Fusion 360™
function EXTENSION_HP_3DPRINTER_CONNECTOR {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
wget -N $SP_SERVER_33 &&
WINEPREFIX=$WP_PATH msiexec /i HP_3DPrinters_for_Fusion360-win64.msi
}
###############################################################################################################################################################
# Install a extension: Helical Gear Generator
function EXTENSION_HELICAL_GEAR_GENERATOR {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
wget -N $SP_SERVER_34 &&
WINEPREFIX=$WP_PATH msiexec /i HelicalGear_win64.msi
}
###############################################################################################################################################################
# Install a extension: OctoPrint for Autodesk® Fusion 360™
function EXTENSION_OCTOPRINT {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
wget -N $SP_SERVER_35 &&
WINEPREFIX=$WP_PATH msiexec /i OctoPrint_for_Fusion360-win64.msi
}
###############################################################################################################################################################
# Install a extension: Parameter I/O
function EXTENSION_PARAMETER_IO {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
wget -N $SP_SERVER_36 &&
WINEPREFIX=$WP_PATH msiexec /i ParameterIO_win64.msi
}
###############################################################################################################################################################
# Install a extension: RoboDK
function EXTENSION_ROBODK {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
wget -N $SP_SERVER_37 &&
WINEPREFIX=$WP_PATH msiexec /i RoboDK.bundle-win64.msi
}
###############################################################################################################################################################
# Install a extension: Ultimaker Digital Factory for Autodesk Fusion 360™
function EXTENSION_ULTIMAKER_DIGITAL_FACTORY {
cd "$WP_PATH/drive_c/users/$USER/Downloads"
2022-05-05 19:03:40 +02:00
wget -N $SP_SERVER_38 &&
2022-05-05 18:53:53 +02:00
WINEPREFIX=$WP_PATH msiexec /i Ultimaker_Digital_Factory-win64.msi
}
2022-05-05 19:03:40 +02:00
###############################################################################################################################################################
# ALL DIALOGS ARE ARRANGED HERE: #
###############################################################################################################################################################
function SP-WELCOME {
yad \
--form \
--separator="" \
--center \
--height=125 \
--width=750 \
--buttons-layout=center \
--title="" \
--field="<big>SP_TITLE</big>:LBL" \
--field="$SP_WELCOME_LABEL_1:LBL" \
--field="$SP_WELCOME_LABEL_2:LBL" \
--align=center \
--button=gtk-about!!"$SP_WELCOME_TOOLTIP_1":1 \
--button=gtk-preferences!!"$SP_WELCOME_TOOLTIP_2":2 \
--button=gtk-cancel:99 \
--button=gtk-ok:3
ret=$?
# Responses to above button presses are below:
if [[ $ret -eq 1 ]]; then
xdg-open https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux
SP-WELCOME
elif [[ $ret -eq 2 ]]; then
SP-SETTINGS
SP_LOCALE_SETTINGS
SP_DRIVER_SETTINGS
SP-WELCOME
elif [[ $ret -eq 3 ]]; then
SP_LICENSE
fi
}
###############################################################################################################################################################
function SP_SETTINGS {
yad --title="" \
--form --separator="," --item-separator="," \
--borders=15 \
--width=550 \
--buttons-layout=center \
--align=center \
--field="<big><b>$SP_SETTINGS_TITLE</b></big>:LBL" \
--field=":LBL" \
--field="$SP_SETTINGS_LABEL_1:LBL" \
--field="$SP_LOCALE_LABEL:CB" \
--field="$SP_DRIVER_LABEL:CB" \
--field="$SP_SETTINGS_LABEL_2:LBL" \
"" "" "" "$SP_LOCALE_SELECT" "$SP_DRIVER_SELECT" "" | while read line; do
echo "`echo $line | awk -F',' '{print $4}'`" > /tmp/settings.txt
echo "`echo $line | awk -F',' '{print $5}'`" >> /tmp/settings.txt
done
}
###############################################################################################################################################################
function SP_LOCALE_SETTINGS {
SP_LOCALE=`cat /tmp/settings.txt | awk 'NR == 1'`
if [[ $SP_LOCALE = "Czech" ]]; then
echo "CS"
SP_LOCALE_CS
LICENSE="$SP_PATH/locale/cs-CZ/license-cs.txt"
elif [[ $SP_LOCALE = "English" ]]; then
echo "EN"
SP_LOCALE_EN
LICENSE="$SP_PATH/locale/en-US/license-en.txt"
elif [[ $SP_LOCALE = "German" ]]; then
echo "DE"
SP_LOCALE_DE
LICENSE="$SP_PATH/locale/de-DE/license-de.txt"
elif [[ $SP_LOCALE = "Spanish" ]]; then
echo "ES"
SP_LOCALE_ES
LICENSE="$SP_PATH/locale/es-ES/license-es.txt"
elif [[ $SP_LOCALE = "French" ]]; then
echo "FR"
SP_LOCALE_FR
LICENSE="$SP_PATH/locale/fr-FR/license-fr.txt"
elif [[ $SP_LOCALE = "Italian" ]]; then
echo "IT"
SP_LOCALE_IT
LICENSE="$SP_PATH/locale/it-IT/license-it.txt"
elif [[ $SP_LOCALE = "Japanese" ]]; then
echo "JP"
SP_LOCALE_JP
LICENSE="$SP_PATH/locale/ja-JP/license-ja.txt"
elif [[ $SP_LOCALE = "Korean" ]]; then
echo "KO"
SP_LOCALE_KO
LICENSE="$SP_PATH/locale/ko-KR/license-ko.txt"
elif [[ $SP_LOCALE = "Chinese" ]]; then
echo "ZH"
SP_LOCALE_ZH
LICENSE="$SP_PATH/locale/zh-CN/license-zh.txt"
else
echo "EN"
SP_LOCALE_EN
LICENSE="$SP_PATH/locale/en-US/license-en.txt"
fi
}
###############################################################################################################################################################
function SP_DRIVER_SETTINGS {
SP_DRIVER=`cat /tmp/settings.txt | awk 'NR == 2'`
}
###############################################################################################################################################################
function SP_LICENSE {
SP_LICENSE_TEXT=$(cat $LICENSE)
SP_LICENSE_CHECK=$(yad \
--title="" \
--form \
--borders=15 \
--width=550 \
--height=450 \
--buttons-layout=center \
--align=center \
--field=":TXT" "$SP_LICENSE_TEXT" \
--field="$SP_LICENSE_CHECK_LABEL:CHK" )
if [[ $SP_LICENSE_CHECK = *"TRUE"* ]]; then
echo "TRUE"
SP_INSTALLDIR
else
echo "FALSE"
SP_LICENSE
fi
}
###############################################################################################################################################################
function SP_INSTALLDIR {
WP_PATH=$(yad --title="" \
--form --separator="" \
--borders=15 \
--width=550 \
--buttons-layout=center \
--align=center \
--field="<big><b>$SP_INSTALLDIR_TITLE</b></big>:LBL" \
--field=":LBL" \
--field="<b>$SP_INSTALLDIR_LABEL_1</b>:LBL" \
--field="$SP_INSTALLDIR_LABEL_2:CB" \
--field="<b>$SP_INSTALLDIR_LABEL_3</b>:LBL" \
"" "" "" "$HOME/.wineprefixes/fusion360" "" )
# Continue with the installation ...
SP_WINE_SETTINGS
}
###############################################################################################################################################################
function SP_WINE_SETTINGS {
WINE_VERSION=$(yad --title="" \
--form --separator="" --item-separator="," \
--borders=15 \
--width=550 \
--buttons-layout=center \
--align=center \
--field="<big><b>$SP_WINE_SETTINGS_TITLE</b></big>:LBL" \
--field=":LBL" \
--field="<b>$SP_WINE_SETTINGS_LABEL_1</b>:LBL" \
--field="$SP_WINE_SETTINGS_LABEL_2:CB" \
--field="<b>$SP_WINE_SETTINGS_LABEL_3</b>:LBL" \
"" "" "" "$SP_WINE_VERSION_SELECT" "" )
if [[ $WINE_VERSION = "Wine Version (Staging)" ]]; then
echo "Install Wine on your system!"
SP_OS_SETTINGS
else
echo "Wine version (6.23 or higher) is already installed on the system!"
SP_FUSION360_INSTALL
fi
}
###############################################################################################################################################################
function SP_OS_SETTINGS {
SP_OS=$(yad --title="" \
--form --separator="" --item-separator="," \
--borders=15 \
--width=550 \
--buttons-layout=center \
--align=center \
--field="<big><b>$SP_OS_TITLE</b></big>:LBL" \
--field=":LBL" \
--field="$SP_OS_LABEL_1:LBL" \
--field="$SP_OS_LABEL_2:CB" \
"" "" "" "$SP_OS_SELECT" )
if [[ $SP_OS = "Arch Linux" ]]; then
echo "Arch Linux"
OS_ARCHLINUX
elif [[ $SP_OS = "Debian 10" ]]; then
echo "Debian 10"
DEBIAN_BASED_1
OS_DEBIAN_10
DEBIAN_BASED_1
elif [[ $SP_OS = "Debian 11" ]]; then
echo "Debian 11"
DEBIAN_BASED_1
OS_DEBIAN_11
DEBIAN_BASED_1
elif [[ $SP_OS = "EndeavourOS" ]]; then
echo "EndeavourOS"
OS_ARCHLINUX
elif [[ $SP_OS = "Fedora 34" ]]; then
echo "Fedora 34"
FEDORA_BASED_1
OS_FEDORA_34
FEDORA_BASED_2
elif [[ $SP_OS = "Fedora 35" ]]; then
echo "Fedora 35"
FEDORA_BASED_1
OS_FEDORA_35
FEDORA_BASED_1
elif [[ $SP_OS = "Fedora 36" ]]; then
echo "Fedora 36"
FEDORA_BASED_1
OS_FEDORA_36
FEDORA_BASED_1
elif [[ $SP_OS = "Linux Mint 19.x" ]]; then
echo "Linux Mint 19.x"
DEBIAN_BASED_1
OS_UBUNTU_18
DEBIAN_BASED_2
elif [[ $SP_OS = "Linux Mint 20.x" ]]; then
echo "Linux Mint 20.x"
DEBIAN_BASED_1
OS_UBUNTU_20
DEBIAN_BASED_1
2022-05-06 06:18:25 +02:00
elif [[ $SP_OS = "Linux Mint 21.x" ]]; then
echo "Linux Mint 21.x"
DEBIAN_BASED_1
OS_UBUNTU_22
DEBIAN_BASED_1
2022-05-05 19:03:40 +02:00
elif [[ $SP_OS = "Manjaro Linux" ]]; then
echo "Manjaro Linux"
OS_ARCHLINUX
elif [[ $SP_OS = "openSUSE Leap 15.2" ]]; then
echo "openSUSE Leap 15.2"
OS_OPENSUSE_152
elif [[ $SP_OS = "openSUSE Leap 15.3" ]]; then
echo "openSUSE Leap 15.3"
OS_OPENSUSE_153
elif [[ $SP_OS = "openSUSE Leap 15.4" ]]; then
echo "openSUSE Leap 15.4"
OS_OPENSUSE_154
elif [[ $SP_OS = "openSUSE Tumbleweed" ]]; then
echo "openSUSE Tumbleweed"
OS_OPENSUSE_TW
elif [[ $SP_OS = "Red Hat Enterprise Linux 8.x" ]]; then
echo "Red Hat Enterprise Linux 8.x"
OS_REDHAT_LINUX_8
elif [[ $SP_OS = "Red Hat Enterprise Linux 9.x" ]]; then
echo "Red Hat Enterprise Linux 9.x"
OS_REDHAT_LINUX_9
elif [[ $SP_OS = "Solus" ]]; then
echo "Solus"
OS_SOLUS_LINUX
elif [[ $SP_OS = "Ubuntu 18.04" ]]; then
echo "Ubuntu 18.04"
DEBIAN_BASED_1
OS_UBUNTU_18
DEBIAN_BASED_2
elif [[ $SP_OS = "Ubuntu 20.04" ]]; then
echo "Ubuntu 20.04"
DEBIAN_BASED_1
OS_UBUNTU_20
DEBIAN_BASED_2
elif [[ $SP_OS = "Ubuntu 22.04" ]]; then
echo "Ubuntu 22.04"
DEBIAN_BASED_1
OS_UBUNTU_22
DEBIAN_BASED_2
elif [[ $SP_OS = "Void Linux" ]]; then
echo "Void Linux"
OS_VOID_LINUX
elif [[ $SP_OS = "Gentoo Linux" ]]; then
echo "Gentoo Linux"
OS_GENTOO_LINUX
fi
}
###############################################################################################################################################################
function SP_FUSION360_EXTENSIONS {
EXTENSIONS=$(yad --button=gtk-cancel:99 --button=gtk-ok:0 --height=300 --list --multiple --checklist --column=Select --column=Extension --column=Description < shopping.list)
if [[ $EXTENSIONS = *"Airfoil Tools"* ]]; then
echo "Airfoil Tools"
EXTENSION_AIRFOIL_TOOLS
fi
if [[ $EXTENSIONS = *"Additive Assistant (FFF)"* ]]; then
echo "Additive Assistant (FFF)"
EXTENSION_ADDITIVE_ASSISTANT
fi
if [[ $EXTENSIONS = *"Czech localization for F360"* ]]; then
echo "Czech localization for F360"
EXTENSION_CZECH_LOCALE
fi
if [[ $EXTENSIONS = *"HP 3D Printers for Autodesk® Fusion 360™"* ]]; then
echo "HP 3D Printers for Autodesk® Fusion 360™"
EXTENSION_HP_3DPRINTER_CONNECTOR
fi
if [[ $EXTENSIONS = *"Helical Gear Generator"* ]]; then
echo "Helical Gear Generator"
EXTENSION_HELICAL_GEAR_GENERATOR
fi
if [[ $EXTENSIONS = *"OctoPrint for Autodesk® Fusion 360™"* ]]; then
echo "OctoPrint for Autodesk® Fusion 360™"
EXTENSION_OCTOPRINT
fi
if [[ $EXTENSIONS = *"Parameter I/O"* ]]; then
echo "Parameter I/O"
EXTENSION_PARAMETER_IO
fi
if [[ $EXTENSIONS = *"RoboDK"* ]]; then
echo "RoboDK"
EXTENSION_ROBODK
fi
if [[ $EXTENSIONS = *"Ultimaker Digital Factory for Autodesk Fusion 360™"* ]]; then
echo "Ultimaker Digital Factory for Autodesk Fusion 360™"
EXTENSION_ULTIMAKER_DIGITAL_FACTORY
fi
###############################################################################################################################################################
# Still in Progress ...
###############################################################################################################################################################
# THE INSTALLATION PROGRAM IS STARTED HERE: #
###############################################################################################################################################################
SP_STRUCTURE
2022-05-06 06:16:00 +02:00
SP_SERVER_LIST
2022-05-05 19:03:40 +02:00
SP_LOCALE_INDEX
SP-WELCOME