2021-01-15 17:00:52 +00:00
#!/usr/bin/env bash
2020-08-02 18:12:02 +00:00
############################################################################
# Star Citizen's Linux Users Group Helper Script
############################################################################
#
2021-01-16 19:31:27 +00:00
# Greetings, Space Penguin!
2020-08-02 18:12:02 +00:00
#
#
2021-01-03 18:48:48 +00:00
# This script is designed to help you manage and optimize
# Star Citizen on Linux.
2020-08-02 18:12:02 +00:00
#
2021-01-16 19:31:27 +00:00
# Features:
2020-08-02 18:12:02 +00:00
#
2021-01-16 19:31:27 +00:00
# - Check your system for optimal settings and
# change them as needed to prevent crashes.
2021-01-03 18:48:48 +00:00
#
2021-01-16 19:31:27 +00:00
# - Easily install and remove Lutris wine Runners.
#
# - Qickly wipe your Star Citizen USER folder as is recommended
2021-01-03 18:48:48 +00:00
# by CIG after major version updates.
# It will back up your exported keybinds, delete your USER folder,
# then restore your keybind file(s).
#
2021-01-16 19:31:27 +00:00
# - Get a random participating LUG member's Star Citizen referral code.
#
# - Supports both the LIVE and PTU environments.
2021-01-03 18:48:48 +00:00
#
# - Zenity menus are used for a GUI experience with a fallback to
# terminal-based menus where Zenity is unavailable.
2020-08-02 18:12:02 +00:00
#
#
# To export your keybinds from within the game, go to
# Options->Keybindings->Control Profiles->Save Control Settings
#
2020-08-22 01:24:26 +00:00
# To import your keybinds from within the game, select them from the list:
# Options->Keybindings->Control Profiles
#
2020-12-27 21:45:31 +00:00
#
2020-12-28 00:08:11 +00:00
# made with <3
2020-12-27 21:45:31 +00:00
# Author: https://github.com/the-sane
# Contributor: https://github.com/Termuellinator
2021-01-16 01:02:48 +00:00
# Contributor: https://github.com/pstn
2021-01-30 19:35:54 +00:00
# Contributor: https://github.com/gort818
# Contributor: https://github.com/victort
2021-01-23 14:29:42 +00:00
# Runner Downloader inspired by:
# https://github.com/richardtatum/sc-runner-updater
2020-08-02 18:12:02 +00:00
############################################################################
2021-04-25 13:11:04 +00:00
# Check if script is run as root
if [ " $( id -u) " = 0 ] ; then
echo "This script is not supposed to be run as root!"
exit 1
fi
2021-01-16 01:02:10 +00:00
# Check for dependencies
2021-01-16 16:54:44 +00:00
if [ ! -x " $( command -v curl) " ] ; then
# Print to stderr and also try warning the user through notify-send
printf "lug-helper.sh: The required package 'curl' was not found on this system.\n" 1>& 2
notify-send "lug-helper" "The required package 'curl' was not found on this system.\n" --icon= dialog-warning
exit 1
fi
if [ ! -x " $( command -v mktemp) " ] || [ ! -x " $( command -v basename) " ] ; then
2021-01-16 14:07:01 +00:00
# Print to stderr and also try warning the user through notify-send
2021-01-16 16:54:44 +00:00
printf "lug-helper.sh: One or more required packages were not found on this system.\nPlease check that the following packages are installed:\n- mktemp (part of gnu coreutils)\n- basename (part of gnu coreutils)\n" 1>& 2
notify-send "lug-helper" "One or more required packages were not found on this system.\nPlease check that the following packages are installed:\n- mktemp (part of gnu coreutils)\n- basename (part of gnu coreutils)\n" --icon= dialog-warning
2021-01-16 01:02:10 +00:00
exit 1
fi
2020-08-10 20:03:11 +00:00
wine_conf = "winedir.conf"
game_conf = "gamedir.conf"
2021-01-30 18:45:35 +00:00
# Use XDG base directories if defined
2021-01-29 05:26:17 +00:00
conf_dir = " ${ XDG_CONFIG_HOME :- $HOME /.config } "
data_dir = " ${ XDG_DATA_HOME :- $HOME /.local/share } "
2021-01-01 19:52:43 +00:00
# .config subdirectory
2020-08-10 20:03:11 +00:00
conf_subdir = "starcitizen-lug"
2021-01-01 19:52:43 +00:00
2021-01-16 01:02:10 +00:00
# Temporary directory
tmp_dir = " $( mktemp -d --suffix= ".lughelper" ) "
trap 'rm -r "$tmp_dir"' EXIT
2020-11-21 13:59:10 +00:00
2021-03-13 17:21:46 +00:00
######## Game Directories ##################################################
2021-03-13 14:59:28 +00:00
# The game's base directory name
sc_base_dir = "StarCitizen"
# The default install location within a WINE prefix:
install_path = " drive_c/Program Files/Roberts Space Industries/ $sc_base_dir "
2020-11-26 13:46:54 +00:00
2021-03-13 17:21:46 +00:00
# The names of the live/ptu directories
live_dir = "LIVE"
ptu_dir = "PTU"
2020-12-22 12:02:18 +00:00
2021-03-13 14:59:28 +00:00
# Remaining directory paths are set at the end of the getdirs() function
2021-03-13 17:21:46 +00:00
############################################################################
2021-03-13 14:59:28 +00:00
2020-12-25 16:24:10 +00:00
# Lutris wine runners directory
2021-01-01 19:52:43 +00:00
runners_dir = " $data_dir /lutris/runners/wine "
2020-12-25 16:24:10 +00:00
# URLs for downloading Lutris runners
2021-01-01 01:28:34 +00:00
# Elements in this array must be added in quoted pairs of: "description" "url"
2021-01-03 13:49:13 +00:00
# The first string in the pair is expected to contain the runner description
2021-01-01 01:28:34 +00:00
# The second is expected to contain the github api releases url
# ie. "RawFox" "https://api.github.com/repos/rawfoxDE/raw-wine/releases"
runner_sources = (
"RawFox" "https://api.github.com/repos/rawfoxDE/raw-wine/releases"
"Molotov/Snatella" "https://api.github.com/repos/snatella/wine-runner-sc/releases"
2021-06-15 13:34:40 +00:00
"/dev/null" "https://api.github.com/repos/gort818/wine-sc-lug/releases"
2021-06-08 15:09:25 +00:00
"GloriousEggroll" "https://api.github.com/repos/GloriousEggroll/wine-ge-custom/releases"
2021-01-01 01:28:34 +00:00
)
# Set a maximum number of runner versions to display from each url
2020-12-27 15:58:00 +00:00
max_runners = 20
2020-12-22 12:02:18 +00:00
2020-12-27 22:27:00 +00:00
# Pixels to add for each Zenity menu option
# used to dynamically determine the height of menus
menu_option_height = "25"
2021-01-17 20:58:14 +00:00
# Use logo installed by a packaged version of this script if available
# Otherwise, default to the logo in the same directory
if [ -f "/usr/share/pixmaps/lug-logo.png" ] ; then
lug_logo = "/usr/share/pixmaps/lug-logo.png"
2021-01-17 21:17:51 +00:00
elif [ -f "lug-logo.png" ] ; then
2021-01-17 20:58:14 +00:00
lug_logo = "lug-logo.png"
2021-01-17 21:17:51 +00:00
else
lug_logo = "info"
2021-01-17 20:58:14 +00:00
fi
2020-08-02 18:12:02 +00:00
############################################################################
############################################################################
2020-08-10 01:30:10 +00:00
2021-01-01 01:43:10 +00:00
# Echo a formatted debug message to the terminal and optionally exit
# Accepts either "continue" or "exit" as the first argument
# followed by the string to be echoed
2021-01-17 02:33:15 +00:00
debug_print( ) {
2021-01-01 01:43:10 +00:00
# This function expects two string arguments
if [ " $# " -lt 2 ] ; then
2021-01-17 02:33:15 +00:00
printf "\nScript error: The debug_print function expects two arguments. Aborting.\n"
2020-12-27 22:47:57 +00:00
read -n 1 -s -p "Press any key..."
exit 0
fi
2021-01-01 01:43:10 +00:00
# Echo the provided string and, optionally, exit the script
case " $1 " in
"continue" )
2021-01-16 13:51:22 +00:00
printf " \n $2 \n "
2021-01-01 01:43:10 +00:00
; ;
"exit" )
2021-01-16 01:42:47 +00:00
# Write an error to stderr and exit
2021-01-16 13:51:22 +00:00
printf " lug-helper.sh: $2 \n " 1>& 2
2021-01-01 01:43:10 +00:00
read -n 1 -s -p "Press any key..."
2021-01-16 01:42:47 +00:00
exit 1
2021-01-01 01:43:10 +00:00
; ;
*)
2021-01-17 02:33:15 +00:00
printf "lug-helper.sh: Unknown argument provided to debug_print function. Aborting.\n" 1>& 2
2021-01-01 01:43:10 +00:00
read -n 1 -s -p "Press any key..."
exit 0
; ;
esac
2020-12-27 22:47:57 +00:00
}
2020-09-07 22:51:19 +00:00
# Display a message to the user.
2020-09-08 00:30:28 +00:00
# Expects the first argument to indicate the message type, followed by
2020-09-07 22:51:19 +00:00
# a string of arguments that will be passed to zenity or echoed to the user.
2020-08-15 15:01:54 +00:00
#
2020-09-08 00:30:28 +00:00
# To call this function, use the following format: message [type] "[string]"
2020-09-07 22:51:19 +00:00
# See the message types below for instructions on formatting the string.
2020-08-03 19:49:19 +00:00
message( ) {
2020-09-08 00:36:26 +00:00
# Sanity check
if [ " $# " -lt 2 ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The message function expects two arguments. Aborting."
2020-09-08 00:36:26 +00:00
fi
# Use zenity messages if available
2021-01-31 16:11:38 +00:00
if [ " $use_zenity " -eq 1 ] ; then
2020-08-15 15:22:44 +00:00
case " $1 " in
2020-12-25 16:24:10 +00:00
"info" )
# info message
# call format: message info "text to display"
2021-01-17 20:58:14 +00:00
margs = ( "--info" " --window-icon= $lug_logo " "--no-wrap" "--text=" )
2020-12-25 16:24:10 +00:00
; ;
2020-09-08 00:30:28 +00:00
"warning" )
2020-12-25 16:24:10 +00:00
# warning message
# call format: message warning "text to display"
2021-01-17 20:58:14 +00:00
margs = ( "--warning" " --window-icon= $lug_logo " "--text=" )
2020-12-25 16:24:10 +00:00
; ;
2020-09-08 00:30:28 +00:00
"question" )
2020-12-25 16:24:10 +00:00
# question
# call format: if message question "question to ask?"; then...
2021-01-17 20:58:14 +00:00
margs = ( "--question" " --window-icon= $lug_logo " "--text=" )
2020-12-25 16:24:10 +00:00
; ;
*)
2021-01-17 02:33:15 +00:00
debug_print exit "Script Error: Invalid message type passed to the message function. Aborting."
2020-12-25 16:24:10 +00:00
; ;
2020-08-15 15:22:44 +00:00
esac
2020-08-02 18:12:02 +00:00
2020-08-03 22:15:38 +00:00
# Display the message
2020-12-19 14:34:53 +00:00
shift 1 # drop the first argument and shift the remaining up one
2020-12-27 21:56:41 +00:00
zenity " ${ margs [@] } " " $@ " --width= "400" --title= "Star Citizen LUG Helper" 2>/dev/null
2020-08-03 19:49:19 +00:00
else
2020-09-07 23:42:18 +00:00
# Fall back to text-based messages when zenity is not available
2020-08-15 15:22:44 +00:00
case " $1 " in
2020-12-25 16:24:10 +00:00
"info" )
# info message
# call format: message info "text to display"
clear
2021-01-16 13:51:22 +00:00
printf " \n $2 \n\n "
2020-12-25 16:24:10 +00:00
read -n 1 -s -p "Press any key..."
; ;
2020-09-08 00:38:39 +00:00
"warning" )
2020-12-25 16:24:10 +00:00
# warning message
# call format: message warning "text to display"
clear
2021-01-16 13:51:22 +00:00
printf " \n $2 \n\n "
2020-12-25 16:24:10 +00:00
read -n 1 -s -p "Press any key..."
return 0
; ;
2020-09-08 00:38:39 +00:00
"question" )
2020-12-25 16:24:10 +00:00
# question
# call format: if message question "question to ask?"; then...
clear
2021-01-16 13:51:22 +00:00
printf " $2 \n "
2020-12-25 16:24:10 +00:00
while read -p "[y/n]: " yn; do
2020-08-15 15:22:44 +00:00
case " $yn " in
2020-12-25 16:24:10 +00:00
[ Yy] *)
2020-08-15 15:22:44 +00:00
return 0
; ;
2020-12-25 16:24:10 +00:00
[ Nn] *)
2020-08-15 15:22:44 +00:00
return 1
; ;
2020-12-25 16:24:10 +00:00
*)
2021-01-16 13:51:22 +00:00
printf "Please type 'y' or 'n'\n"
2020-08-15 15:22:44 +00:00
; ;
esac
2020-12-25 16:24:10 +00:00
done
; ;
*)
2021-01-17 02:33:15 +00:00
debug_print exit "Script Error: Invalid message type passed to the message function. Aborting."
2020-12-25 16:24:10 +00:00
; ;
2020-08-15 15:22:44 +00:00
esac
2020-08-03 19:49:19 +00:00
fi
2020-08-02 18:12:02 +00:00
}
2020-09-07 22:51:19 +00:00
# Display a menu to the user.
# Uses Zenity for a gui menu with a fallback to plain old text.
#
# How to call this function:
#
# Requires two arrays to be set: "menu_options" and "menu_actions"
2020-12-21 00:34:34 +00:00
# two string variables: "menu_text_zenity" and "menu_text_terminal"
2020-09-07 22:51:19 +00:00
# and one integer variable: "menu_height".
#
2020-12-21 00:34:34 +00:00
# - The array "menu_options" should contain the strings of each option.
# - The array "menu_actions" should contain function names to be called.
# - The strings "menu_text_zenity" and "menu_text_terminal" should contain
# the menu description formatted for zenity and the terminal, respectively.
# This text will be displayed above the menu options.
# Zenity supports Pango Markup for text formatting.
# - The integer "menu_height" specifies the height of the zenity menu.
2020-09-07 22:51:19 +00:00
#
# The final element in each array is expected to be a quit option.
#
# IMPORTANT: The indices of the elements in "menu_actions"
# *MUST* correspond to the indeces in "menu_options".
# In other words, it is expected that menu_actions[1] is the correct action
# to be executed when menu_options[1] is selected, and so on for each element.
2020-12-19 14:34:53 +00:00
#
# See MAIN at the bottom of this script for an example of generating a menu.
2020-09-07 22:51:19 +00:00
menu( ) {
# Sanity checks
if [ " ${# menu_options [@] } " -eq 0 ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The array 'menu_options' was not set\nbefore calling the menu function. Aborting."
2020-09-07 22:51:19 +00:00
elif [ " ${# menu_actions [@] } " -eq 0 ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The array 'menu_actions' was not set\nbefore calling the menu function. Aborting."
2020-12-21 00:34:34 +00:00
elif [ -z " $menu_text_zenity " ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The string 'menu_text_zenity' was not set\nbefore calling the menu function. Aborting."
2020-12-21 00:34:34 +00:00
elif [ -z " $menu_text_terminal " ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The string 'menu_text_terminal' was not set\nbefore calling the menu function. Aborting."
2020-09-07 22:51:19 +00:00
elif [ -z " $menu_height " ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The string 'menu_height' was not set\nbefore calling the menu function. Aborting."
2020-09-07 22:51:19 +00:00
fi
# Use Zenity if it is available
2021-01-31 16:11:38 +00:00
if [ " $use_zenity " -eq 1 ] ; then
2020-12-25 16:24:10 +00:00
# Format the options array for Zenity by adding
# TRUE or FALSE to indicate default selections
# ie: "TRUE" "List item 1" "FALSE" "List item 2" "FALSE" "List item 3"
for ( ( i = 0; i<" ${# menu_options [@] } " -1; i++ ) ) ; do
if [ " $i " -eq 0 ] ; then
# Select the first radio button by default
zen_options = ( "TRUE" )
zen_options += ( " ${ menu_options [i] } " )
else
zen_options += ( "FALSE" )
zen_options += ( " ${ menu_options [i] } " )
fi
done
# Display the zenity radio button menu
2021-01-24 21:15:35 +00:00
choice = " $( zenity --list --radiolist --width= "480" --height= " $menu_height " --text= " $menu_text_zenity " --title= "Star Citizen LUG Helper" --hide-header --window-icon= $lug_logo --column= "" --column= "Option" " ${ zen_options [@] } " 2>/dev/null) "
2020-12-25 16:24:10 +00:00
# Loop through the options array to match the chosen option
matched = "false"
for ( ( i = 0; i<" ${# menu_options [@] } " ; i++ ) ) ; do
if [ " $choice " = " ${ menu_options [i] } " ] ; then
# Execute the corresponding action
${ menu_actions [i] }
matched = "true"
break
fi
done
# If no match was found, the user clicked cancel
if [ " $matched " = "false" ] ; then
# Execute the last option in the actions array
" ${ menu_actions [ ${# menu_actions [@] } -1] } "
fi
2020-09-07 22:51:19 +00:00
else
2020-12-25 16:24:10 +00:00
# Use a text menu if Zenity is not available
clear
2021-01-16 13:51:22 +00:00
printf " \n $menu_text_terminal \n\n "
2020-12-25 16:24:10 +00:00
PS3 = "Enter selection number: "
select choice in " ${ menu_options [@] } "
do
# Loop through the options array to match the chosen option
matched = "false"
for ( ( i = 0; i<" ${# menu_options [@] } " ; i++ ) ) ; do
if [ " $choice " = " ${ menu_options [i] } " ] ; then
# Execute the corresponding action
2021-01-16 13:51:22 +00:00
printf "\n\n"
2020-12-25 16:24:10 +00:00
${ menu_actions [i] }
matched = "true"
break
fi
done
# Check if we're done looping the menu
if [ " $matched " = "true" ] ; then
# Match was found and actioned, so exit the menu
break
else
# If no match was found, the user entered an invalid option
2021-01-16 13:51:22 +00:00
printf "\nInvalid selection.\n"
2020-12-25 16:24:10 +00:00
continue
fi
done
2020-09-07 22:51:19 +00:00
fi
}
2021-01-24 21:15:35 +00:00
# Called when the user clicks cancel on a looping menu
# Causes a return to the main menu
menu_loop_done( ) {
looping_menu = "false"
}
2020-08-10 20:03:11 +00:00
# Get paths to the user's wine prefix, game directory, and a backup directory
2020-08-10 01:30:10 +00:00
getdirs( ) {
2020-08-10 20:03:11 +00:00
# Sanity checks
if [ ! -d " $conf_dir " ] ; then
2021-01-17 02:55:58 +00:00
message warning " Config directory not found. The Helper is unable to proceed.\n\n $conf_dir "
2020-08-15 02:33:04 +00:00
return 1
2020-08-10 20:03:11 +00:00
fi
if [ ! -d " $conf_dir / $conf_subdir " ] ; then
2020-12-27 21:45:31 +00:00
mkdir -p " $conf_dir / $conf_subdir "
2020-08-10 20:03:11 +00:00
fi
# Check if the config files already exist
if [ -f " $conf_dir / $conf_subdir / $wine_conf " ] ; then
2020-08-12 00:42:44 +00:00
wine_prefix = " $( cat " $conf_dir / $conf_subdir / $wine_conf " ) "
2020-12-25 16:24:10 +00:00
if [ ! -d " $wine_prefix " ] ; then
2021-01-17 02:33:15 +00:00
debug_print continue "The saved wine prefix does not exist, ignoring."
2020-12-25 16:24:10 +00:00
wine_prefix = ""
fi
2020-08-10 20:03:11 +00:00
fi
if [ -f " $conf_dir / $conf_subdir / $game_conf " ] ; then
2020-08-12 00:42:44 +00:00
game_path = " $( cat " $conf_dir / $conf_subdir / $game_conf " ) "
2021-03-13 14:59:28 +00:00
if [ ! -d " $game_path " ] || [ " $( basename " $game_path " ) " != " $sc_base_dir " ] ; then
2021-01-17 02:33:15 +00:00
debug_print continue "Unexpected game path found in config file, ignoring."
2020-12-25 16:24:10 +00:00
game_path = ""
fi
2020-08-10 20:03:11 +00:00
fi
2020-08-22 01:02:16 +00:00
2021-01-01 01:55:44 +00:00
# If we don't have the directory paths we need yet,
# ask the user to provide them
2021-01-16 23:50:28 +00:00
if [ -z " $wine_prefix " ] || [ -z " $game_path " ] ; then
2021-01-17 03:00:06 +00:00
message info "At the next screen, please select your Star Citizen WINE prefix.\nIt will be remembered for future use."
2021-01-31 16:11:38 +00:00
if [ " $use_zenity " -eq 1 ] ; then
2021-01-01 19:52:43 +00:00
# Using Zenity file selection menus
2020-08-12 00:42:44 +00:00
# Get the wine prefix directory
2020-08-12 02:02:44 +00:00
if [ -z " $wine_prefix " ] ; then
2021-01-16 19:20:10 +00:00
wine_prefix = " $( zenity --file-selection --directory --title= "Select your Star Citizen WINE prefix directory" --filename= " $HOME /Games/star-citizen " 2>/dev/null) "
2020-12-25 16:24:10 +00:00
if [ " $? " -eq -1 ] ; then
2021-01-17 02:55:58 +00:00
message warning "An unexpected error has occurred. The Helper is unable to proceed."
2020-12-25 16:24:10 +00:00
return 1
elif [ -z " $wine_prefix " ] ; then
# User clicked cancel
message warning "Operation cancelled.\nNo changes have been made to your game."
return 1
fi
2020-08-10 20:03:11 +00:00
fi
2020-08-12 00:42:44 +00:00
# Get the game path
2020-08-12 02:02:44 +00:00
if [ -z " $game_path " ] ; then
2021-03-13 14:59:28 +00:00
if [ -d " $wine_prefix / $install_path " ] &&
message question " Is this your Star Citizen game directory?\n\n $wine_prefix / $install_path " ; then
game_path = " $wine_prefix / $install_path "
2021-01-01 19:52:43 +00:00
else
2021-03-13 14:59:28 +00:00
while game_path = " $( zenity --file-selection --directory --title= "Select your Star Citizen directory" --filename= " $wine_prefix / $install_path " 2>/dev/null) " ; do
2021-01-01 19:52:43 +00:00
if [ " $? " -eq -1 ] ; then
2021-01-17 02:55:58 +00:00
message warning "An unexpected error has occurred. The Helper is unable to proceed."
2021-01-01 19:52:43 +00:00
return 1
2021-03-13 14:59:28 +00:00
elif [ " $( basename " $game_path " ) " != " $sc_base_dir " ] ; then
2021-01-02 13:57:01 +00:00
message warning "You must select the Star Citizen base game directory.\n\nFor Example: prefix/drive_c/Program Files/Roberts Space Industries/StarCitizen"
2021-01-01 19:52:43 +00:00
else
# All good or cancel
break
fi
done
if [ -z " $game_path " ] ; then
# User clicked cancel
message warning "Operation cancelled.\nNo changes have been made to your game."
2020-12-25 16:24:10 +00:00
return 1
2020-08-12 00:42:44 +00:00
fi
2020-12-25 16:24:10 +00:00
fi
2020-08-12 00:42:44 +00:00
fi
2020-12-25 16:24:10 +00:00
else
2021-01-01 19:52:43 +00:00
# No Zenity, use terminal-based menus
2020-12-25 16:24:10 +00:00
clear
2020-08-12 00:42:44 +00:00
# Get the wine prefix directory
2020-08-12 02:02:44 +00:00
if [ -z " $wine_prefix " ] ; then
2021-01-16 13:51:22 +00:00
printf "Enter the full path to your Star Citizen WINE prefix directory (case sensitive)\n"
2021-01-16 19:20:10 +00:00
printf "ie. /home/USER/Games/star-citizen\n"
2020-12-25 16:24:10 +00:00
while read -rp ": " wine_prefix; do
if [ ! -d " $wine_prefix " ] ; then
2021-01-16 13:51:22 +00:00
printf "That directory is invalid or does not exist. Please try again.\n\n"
2020-12-25 16:24:10 +00:00
else
break
fi
done
2021-01-01 19:52:43 +00:00
fi
2020-12-25 16:24:10 +00:00
2021-01-01 19:52:43 +00:00
# Get the game path
if [ -z " $game_path " ] ; then
2021-03-13 14:59:28 +00:00
if [ -d " $wine_prefix / $install_path " ] &&
message question " Is this your Star Citizen game directory?\n\n $wine_prefix / $install_path " ; then
game_path = " $wine_prefix / $install_path "
2021-01-01 19:52:43 +00:00
else
2021-01-16 13:51:22 +00:00
printf "\nEnter the full path to your Star Citizen installation directory (case sensitive)\n"
2021-01-16 19:20:10 +00:00
printf "ie. /home/USER/Games/star-citizen/drive_c/Program Files/Roberts Space Industries/StarCitizen\n"
2020-12-25 16:24:10 +00:00
while read -rp ": " game_path; do
if [ ! -d " $game_path " ] ; then
2021-01-16 13:51:22 +00:00
printf "That directory is invalid or does not exist. Please try again.\n\n"
2021-03-13 14:59:28 +00:00
elif [ " $( basename " $game_path " ) " != " $sc_base_dir " ] ; then
printf " You must enter the full path to the directory named ' $sc_base_dir '\n\n "
2020-12-25 16:24:10 +00:00
else
break
fi
done
fi
2021-01-01 19:52:43 +00:00
fi
2020-12-25 16:24:10 +00:00
fi
2020-08-10 20:03:11 +00:00
# Save the paths for later use
echo " $wine_prefix " > " $conf_dir / $conf_subdir / $wine_conf "
echo " $game_path " > " $conf_dir / $conf_subdir / $game_conf "
fi
2021-03-13 17:21:46 +00:00
######## Set remaining directory paths #####################################
# $live_or_ptu is set in the set_version() function
############################################################################
# The game's user directory
2021-04-25 13:11:04 +00:00
user_dir = " $game_path / $live_or_ptu /USER/Client/0/ "
2021-03-13 17:21:46 +00:00
# The location within the USER directory to which the game exports keybinds
keybinds_dir = " $user_dir /Controls/Mappings "
# Shaders directory
2021-03-13 14:59:28 +00:00
shaders_dir = " $user_dir /shaders "
2021-03-13 17:21:46 +00:00
# dxvk cache file
dxvk_cache = " $game_path / $live_or_ptu /StarCitizen.dxvk-cache "
# Where to store backed up keybinds
backup_path = " $conf_dir / $conf_subdir "
2020-08-10 01:30:10 +00:00
}
2020-08-02 18:12:02 +00:00
# Save exported keybinds, wipe the USER directory, and restore keybinds
2021-01-01 01:43:10 +00:00
sanitize( ) {
2020-08-12 00:42:44 +00:00
# Prompt user to back up the current keybinds in the game
2020-09-08 00:30:28 +00:00
message info "Before proceeding, please be sure you have exported\nyour Star Citizen keybinds from within the game.\n\nTo do this, launch the game and go to:\nOptions->Keybindings->Control Profiles->Save Control Settings\n\nGo on; I'll wait."
2020-08-10 20:03:11 +00:00
2020-08-12 00:42:44 +00:00
# Get/Set directory paths
getdirs
2020-08-15 02:33:04 +00:00
if [ " $? " -eq 1 ] ; then
2021-01-01 01:55:44 +00:00
# User cancelled and wants to return to the main menu
# or there was an error
2020-12-25 16:24:10 +00:00
return 0
2020-08-15 02:33:04 +00:00
fi
2020-08-02 18:12:02 +00:00
2020-08-12 02:46:05 +00:00
# Sanity check
if [ ! -d " $user_dir " ] ; then
2020-12-25 16:24:10 +00:00
message warning " USER directory not found. There is nothing to delete!\n\n $user_dir "
return 0
2020-08-12 02:46:05 +00:00
fi
2020-08-12 00:42:44 +00:00
# Check for exported keybind files
2020-11-21 13:59:10 +00:00
if [ ! -d " $keybinds_dir " ] || [ -z " $( ls -A " $keybinds_dir " ) " ] ; then
2020-12-25 16:24:10 +00:00
if message question "Warning: No exported keybindings found.\nContinuing will erase your existing keybinds!\n\nDo you want to continue anyway?" ; then
exported = 0
else
# User said no
return 0
fi
2020-08-12 00:42:44 +00:00
else
2020-12-25 16:24:10 +00:00
exported = 1
2020-08-12 00:42:44 +00:00
fi
2020-08-02 18:12:02 +00:00
2021-01-17 02:55:58 +00:00
if message question " The following directory will be deleted:\n\n $user_dir \n\nDo you want to proceed? " ; then
2020-12-25 16:24:10 +00:00
# Back up keybinds
if [ " $exported " -eq 1 ] ; then
2021-01-17 02:33:15 +00:00
debug_print continue " Backing up keybinds to $backup_path /keybinds... "
2021-01-16 23:50:28 +00:00
mkdir -p " $backup_path /keybinds " && cp -r " $keybinds_dir /. " " $backup_path /keybinds/ "
2020-12-25 16:24:10 +00:00
fi
# Wipe the user directory
2021-01-17 02:33:15 +00:00
debug_print continue " Wiping $user_dir ... "
2020-12-25 16:24:10 +00:00
rm -r " $user_dir "
# Restore custom keybinds
if [ " $exported " -eq 1 ] ; then
2021-01-17 02:33:15 +00:00
debug_print continue "Restoring keybinds..."
2020-12-25 16:24:10 +00:00
mkdir -p " $keybinds_dir " && cp -r " $backup_path /keybinds/. " " $keybinds_dir / "
message info "To re-import your keybinds, select it in-game from the list:\nOptions->Keybindings->Control Profiles"
fi
message info "Your Star Citizen USER directory has been cleaned up!"
2020-08-23 14:01:38 +00:00
fi
2020-08-02 18:12:02 +00:00
}
2021-02-20 23:04:34 +00:00
#--------------------- begin preflight check functions -----------------------#
2020-12-27 21:45:31 +00:00
#------------------------- begin mapcount functions --------------------------#
2020-08-15 02:11:31 +00:00
# Check if setting vm.max_map_count was successful
2021-01-24 03:05:23 +00:00
mapcount_confirm( ) {
2020-08-02 18:12:02 +00:00
if [ " $( cat /proc/sys/vm/max_map_count) " -lt 16777216 ] ; then
2021-01-24 17:44:49 +00:00
preflight_results += ( "WARNING: As far as this Helper can detect, vm.max_map_count\nwas not successfully configured on your system.\nYou will most likely experience crashes." )
2020-08-02 18:12:02 +00:00
fi
}
2020-09-07 22:51:19 +00:00
# Sets vm.max_map_count for the current session only
mapcount_once( ) {
2021-01-24 17:44:49 +00:00
preflight_actions += ( 'sysctl -w vm.max_map_count=16777216' )
preflight_results += ( "vm.max_map_count was changed until the next boot." )
preflight_followup += ( "mapcount_confirm" )
2020-09-07 22:51:19 +00:00
}
2021-01-24 03:05:23 +00:00
# Set vm.max_map_count
mapcount_set( ) {
2020-09-07 22:51:19 +00:00
if [ -d "/etc/sysctl.d" ] ; then
2021-01-24 17:44:49 +00:00
# Newer versions of sysctl
preflight_actions += ( 'printf "\n# Added by LUG-Helper:\nvm.max_map_count = 16777216\n" >> /etc/sysctl.d/20-max_map_count.conf && sysctl --system' )
preflight_results += ( "The vm.max_map_count configuration has been appended to:\n/etc/sysctl.d/20-max_map_count.conf" )
2020-09-07 22:51:19 +00:00
else
2021-01-24 17:44:49 +00:00
# Older versions of sysctl
preflight_actions += ( 'printf "\n# Added by LUG-Helper:\nvm.max_map_count = 16777216" >> /etc/sysctl.conf && sysctl -p' )
preflight_results += ( "The vm.max_map_count configuration has been appended to:\n/etc/sysctl.conf" )
2020-09-07 22:51:19 +00:00
fi
2021-01-24 17:44:49 +00:00
# Verify that the setting took effect
preflight_followup += ( "mapcount_confirm" )
2020-09-07 22:51:19 +00:00
}
2021-01-24 03:05:23 +00:00
# Check vm.max_map_count for the correct setting
mapcount_check( ) {
2021-01-24 19:37:36 +00:00
mapcount = " $( cat /proc/sys/vm/max_map_count) "
2021-01-24 03:05:23 +00:00
# Add to the results and actions arrays
2021-01-24 19:37:36 +00:00
if [ " $mapcount " -ge 16777216 ] ; then
2021-01-24 03:05:23 +00:00
# All good
preflight_pass += ( "vm.max_map_count is set to at least 16777216." )
elif grep -E -x -q "vm.max_map_count" /etc/sysctl.conf /etc/sysctl.d/* 2>/dev/null; then
# Was it supposed to have been set by sysctl?
preflight_fail += ( "vm.max_map_count is configured to at least 16777216 but the setting has not been loaded by your system." )
2021-01-24 03:34:15 +00:00
# Add the function that will be called to change the configuration
2021-01-24 17:44:49 +00:00
preflight_action_funcs += ( "mapcount_once" )
2021-01-24 03:05:23 +00:00
# Add info for manually changing the setting
preflight_manual += ( "To change vm.max_map_count until the next reboot, run:\nsudo sysctl -w vm.max_map_count=16777216" )
else
# The setting should be changed
2021-01-24 19:37:36 +00:00
preflight_fail += ( " vm.max_map_count is $mapcount \nand should be set to at least 16777216\nto give the game access to sufficient memory. " )
2021-01-24 03:34:15 +00:00
# Add the function that will be called to change the configuration
2021-01-24 17:44:49 +00:00
preflight_action_funcs += ( "mapcount_set" )
2021-01-24 03:05:23 +00:00
# Add info for manually changing the setting
if [ -d "/etc/sysctl.d" ] ; then
# Newer versions of sysctl
preflight_manual += ( "To change vm.max_map_count permanently, add the following line to\n'/etc/sysctl.d/20-max_map_count.conf' and reload with 'sudo sysctl --system':\n vm.max_map_count = 16777216\n\nOr, to change vm.max_map_count temporarily until next boot, run:\n sudo sysctl -w vm.max_map_count=16777216" )
else
# Older versions of sysctl
preflight_manual += ( "To change vm.max_map_count permanently, add the following line to\n'/etc/sysctl.conf' and reload with 'sudo sysctl -p':\n vm.max_map_count = 16777216\n\nOr, to change vm.max_map_count temporarily until next boot, run:\n sudo sysctl -w vm.max_map_count=16777216" )
2020-12-25 16:24:10 +00:00
fi
2020-08-02 18:12:02 +00:00
fi
}
2020-12-27 21:45:31 +00:00
#-------------------------- end mapcount functions ---------------------------#
#------------------------ begin filelimit functions --------------------------#
2020-09-04 00:56:53 +00:00
# Check if setting the open file descriptors limit was successful
2021-01-24 03:05:23 +00:00
filelimit_confirm( ) {
2020-09-04 00:56:53 +00:00
if [ " $( ulimit -Hn) " -lt 524288 ] ; then
2021-01-24 17:44:49 +00:00
preflight_results += ( "WARNING: As far as this Helper can detect, the open files limit\nwas not successfully configured on your system.\nYou may experience crashes." )
2020-09-04 00:56:53 +00:00
fi
}
2021-01-24 03:05:23 +00:00
# Set the open file descriptors limit
2020-09-08 01:59:34 +00:00
filelimit_set( ) {
2021-01-24 03:05:23 +00:00
if [ -f "/etc/systemd/system.conf" ] ; then
# Using systemd
# Append to the file
2021-01-24 17:44:49 +00:00
preflight_actions += ( 'printf "\n# Added by LUG-Helper:\nDefaultLimitNOFILE=524288\n" >> /etc/systemd/system.conf && systemctl daemon-reexec' )
preflight_results += ( "The open files limit configuration has been appended to:\n/etc/systemd/system.conf" )
2021-01-24 03:05:23 +00:00
elif [ -f "/etc/security/limits.conf" ] ; then
# Using limits.conf
# Insert before the last line in the file
2021-01-24 17:44:49 +00:00
preflight_actions += ( 'sed -i "\$i#Added by LUG-Helper:" /etc/security/limits.conf; sed -i "\$i* hard nofile 524288" /etc/security/limits.conf' )
preflight_results += ( "The open files limit configuration has been appended to:\n/etc/security/limits.conf" )
2021-01-24 03:05:23 +00:00
else
# Don't know what method to use
2021-01-24 17:44:49 +00:00
preflight_results += ( "This Helper is unable to detect the correct method of setting\nthe open file descriptors limit on your system.\n\nWe recommend manually configuring this limit to at least 524288." )
2021-01-24 03:05:23 +00:00
fi
# Verify that setting the limit was successful
2021-01-24 17:44:49 +00:00
preflight_followup += ( "filelimit_confirm" )
2021-01-24 03:05:23 +00:00
}
# Check the open file descriptors limit
filelimit_check( ) {
2020-08-23 13:27:46 +00:00
filelimit = " $( ulimit -Hn) "
2020-09-04 00:56:53 +00:00
2021-01-24 03:05:23 +00:00
# Add to the results and actions arrays
2020-08-23 13:27:46 +00:00
if [ " $filelimit " -ge 524288 ] ; then
2021-01-24 03:05:23 +00:00
# All good
preflight_pass += ( "Hard open file descriptors limit is set to at least 524288." )
else
# The file limit should be changed
2021-01-24 19:37:36 +00:00
preflight_fail += ( " Your hard open file descriptors limit is $filelimit \nand should be set to at least 524288\nto increase the maximum number of open files. " )
2021-01-24 03:34:15 +00:00
# Add the function that will be called to change the configuration
2021-01-24 17:44:49 +00:00
preflight_action_funcs += ( "filelimit_set" )
2020-09-04 00:56:53 +00:00
2021-01-24 03:05:23 +00:00
# Add info for manually changing the settings
2020-09-05 12:12:11 +00:00
if [ -f "/etc/systemd/system.conf" ] ; then
2020-09-04 00:56:53 +00:00
# Using systemd
2021-01-24 03:05:23 +00:00
preflight_manual += ( "To change your open file descriptors limit, add the following line to\n'/etc/systemd/system.conf':\n DefaultLimitNOFILE=524288" )
2020-09-04 00:56:53 +00:00
elif [ -f "/etc/security/limits.conf" ] ; then
# Using limits.conf
2021-01-24 03:05:23 +00:00
preflight_manual += ( "To change your open file descriptors limit, add the following line to\n'/etc/security/limits.conf':\n * hard nofile 524288" )
2020-09-04 00:56:53 +00:00
else
2020-09-04 01:20:06 +00:00
# Don't know what method to use
2021-01-24 03:05:23 +00:00
preflight_manual += ( "This Helper is unable to detect the correct method of setting\nthe open file descriptors limit on your system.\n\nWe recommend manually configuring this limit to at least 524288." )
2020-09-04 00:56:53 +00:00
fi
2020-08-23 13:27:46 +00:00
fi
}
2020-12-27 21:45:31 +00:00
#------------------------- end filelimit functions ---------------------------#
2021-01-24 20:37:06 +00:00
# Check total system memory
memory_check( ) {
memtotal = " $( awk '/MemTotal/ {printf "%.1f \n", $2/1024/1024}' /proc/meminfo) "
2021-02-20 23:01:13 +00:00
if [ ${ memtotal %.* } -ge "15" ] ; then
2021-01-24 20:37:06 +00:00
preflight_pass += ( " Your system has $memtotal GB of memory. " )
else
preflight_fail += ( " Your system has $memtotal GB of memory.\nWe recommend at least 16 GB to avoid crashes. " )
fi
}
2021-02-16 19:23:14 +00:00
# Check CPU for the required AVX extension
avx_check( ) {
2021-02-20 23:07:08 +00:00
if grep -q "avx" /proc/cpuinfo; then
2021-02-16 19:23:14 +00:00
preflight_pass += ( "Your CPU supports the necessary AVX instruction set." )
else
2021-02-20 23:06:49 +00:00
preflight_fail += ( "Your CPU does not appear to support AVX instructions.\nThis requirement was added to Star Citizen in version 3.11" )
2021-02-16 19:23:14 +00:00
fi
}
2021-02-20 23:04:34 +00:00
#------------------------- end preflight check functions ---------------------#
2020-08-17 21:53:25 +00:00
# Delete the shaders directory
2021-01-01 01:43:10 +00:00
rm_shaders( ) {
2020-08-17 21:53:25 +00:00
# Get/Set directory paths
getdirs
if [ " $? " -eq 1 ] ; then
2020-12-25 16:24:10 +00:00
# User cancelled and wants to return to the main menu, or error
return 0
2020-08-17 21:53:25 +00:00
fi
# Sanity check
if [ ! -d " $shaders_dir " ] ; then
2020-12-25 16:24:10 +00:00
message warning " Shaders directory not found. There is nothing to delete!\n\n $shaders_dir "
return 0
2020-08-17 21:53:25 +00:00
fi
# Delete the shader directory
2021-01-17 02:55:58 +00:00
if message question " The following directory will be deleted:\n\n $shaders_dir \n\nDo you want to proceed? " ; then
2021-01-17 02:33:15 +00:00
debug_print continue " Deleting $shaders_dir ... "
2020-12-25 16:24:10 +00:00
rm -r " $shaders_dir "
message info "Your shaders have been deleted!"
2020-08-23 14:01:38 +00:00
fi
2020-08-17 21:53:25 +00:00
}
2020-08-21 22:49:28 +00:00
# Delete DXVK cache
2021-01-30 19:32:41 +00:00
rm_dxvkcache( ) {
2020-08-17 21:53:25 +00:00
# Get/Set directory paths
getdirs
if [ " $? " -eq 1 ] ; then
2021-01-01 01:55:44 +00:00
# User cancelled and wants to return to the main menu
# or there was an error
2020-12-25 16:24:10 +00:00
return 0
2020-08-17 21:53:25 +00:00
fi
2021-03-13 14:59:28 +00:00
2020-08-17 21:53:25 +00:00
# Sanity check
2020-08-21 22:49:28 +00:00
if [ ! -f " $dxvk_cache " ] ; then
2020-12-25 16:24:10 +00:00
message warning " Unable to find the DXVK cache file. There is nothing to delete!\n\n $dxvk_cache "
return 0
2020-08-17 21:53:25 +00:00
fi
2020-08-21 22:49:28 +00:00
# Delete the cache file
2021-01-17 02:55:58 +00:00
if message question " The following file will be deleted:\n\n $dxvk_cache \n\nDo you want to proceed? " ; then
2021-01-17 02:33:15 +00:00
debug_print continue " Deleting $dxvk_cache ... "
2020-12-25 16:24:10 +00:00
rm " $dxvk_cache "
message info "Your DXVK cache has been deleted!"
2020-08-23 14:01:38 +00:00
fi
2020-08-17 21:53:25 +00:00
}
2020-12-27 21:45:31 +00:00
#------------------------- begin runner functions ----------------------------#
2020-12-27 19:12:20 +00:00
# Restart lutris
lutris_restart( ) {
2021-01-01 01:46:45 +00:00
if [ " $lutris_needs_restart " = "true" ] && [ " $( pgrep lutris) " ] ; then
2021-01-17 02:55:58 +00:00
if message question "Lutris must be restarted to detect runner changes.\nWould you like this Helper to restart it for you?" ; then
2021-01-17 02:33:15 +00:00
debug_print continue "Restarting Lutris..."
2021-01-01 01:46:45 +00:00
pkill -SIGTERM lutris && nohup lutris </dev/null & >/dev/null &
2020-12-27 19:12:20 +00:00
fi
fi
2021-01-01 01:46:45 +00:00
lutris_needs_restart = "false"
2020-12-27 19:12:20 +00:00
}
2020-12-27 19:43:05 +00:00
# Delete the selected runner
runner_delete( ) {
2021-01-01 01:55:44 +00:00
# This function expects an index number for the array
# installed_runners to be passed in as an argument
2020-12-27 19:48:38 +00:00
if [ -z " $1 " ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The runner_delete function expects an argument. Aborting."
2020-12-27 19:48:38 +00:00
fi
runner_to_delete = " $1 "
if message question " Are you sure you want to delete the following runner?\n\n ${ installed_runners [ $runner_to_delete ] } " ; then
rm -r " ${ installed_runners [ $runner_to_delete ] } "
2021-01-17 02:33:15 +00:00
debug_print continue " Deleted ${ installed_runners [ $runner_to_delete ] } "
2020-12-27 20:40:54 +00:00
lutris_needs_restart = "true"
2020-12-25 16:24:10 +00:00
fi
}
2020-12-27 19:43:05 +00:00
# List installed runners for deletion
runner_select_delete( ) {
2020-12-22 12:02:18 +00:00
# Configure the menu
2020-12-27 23:04:45 +00:00
menu_text_zenity = "Select the Lutris runner you want to remove:"
menu_text_terminal = "Select the Lutris runner you want to remove:"
2020-12-27 22:27:00 +00:00
menu_text_height = "65"
2020-12-25 16:24:10 +00:00
goback = "Return to the runner management menu"
unset installed_runners
unset menu_options
unset menu_actions
2020-12-22 12:02:18 +00:00
2021-01-01 19:52:43 +00:00
# Create an array containing all directories in the runners_dir
for runners_list in " $runners_dir " /*; do
2020-12-27 19:12:20 +00:00
if [ -d " $runners_list " ] ; then
installed_runners += ( " $runners_list " )
2020-12-25 16:24:10 +00:00
fi
done
2020-12-22 12:02:18 +00:00
2020-12-25 16:24:10 +00:00
# Create menu options for the installed runners
for ( ( i = 0; i<" ${# installed_runners [@] } " ; i++ ) ) ; do
menu_options += ( " $( basename " ${ installed_runners [i] } " ) " )
2020-12-27 19:43:05 +00:00
menu_actions += ( " runner_delete $i " )
2020-12-22 12:02:18 +00:00
done
2020-12-25 16:24:10 +00:00
# Complete the menu by adding the option to go back to the previous menu
menu_options += ( " $goback " )
2020-12-27 20:40:54 +00:00
menu_actions += ( ":" ) # no-op
2020-12-27 22:27:00 +00:00
# Calculate the total height the menu should be
2021-01-30 19:45:38 +00:00
menu_height = " $(( $menu_option_height * ${# menu_options [@] } + $menu_text_height )) "
2020-12-27 22:27:00 +00:00
if [ " $menu_height " -gt "400" ] ; then
menu_height = "400"
fi
2020-12-22 12:02:18 +00:00
# Call the menu function. It will use the options as configured above
menu
}
2020-12-27 19:43:05 +00:00
# Download and install the selected runner
2021-01-01 01:55:44 +00:00
# Note: The variables runner_versions, contributor_url, and runner_url_type
2021-01-01 01:28:34 +00:00
# are expected to be set before calling this function
2020-12-27 19:43:05 +00:00
runner_install( ) {
2021-01-01 01:55:44 +00:00
# This function expects an index number for the array
# runner_versions to be passed in as an argument
2020-12-27 19:12:20 +00:00
if [ -z " $1 " ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The runner_install function expects a numerical argument. Aborting."
2020-12-27 19:12:20 +00:00
fi
2021-01-01 01:28:34 +00:00
# Get the runner filename including file extension
runner_file = " ${ runner_versions [ $1 ] } "
# Get the selected runner name minus the file extension
2021-01-03 13:49:13 +00:00
# To add new file extensions, handle them here and in
# the runner_select_install function below
2021-01-01 01:28:34 +00:00
case " $runner_file " in
*.tar.gz)
runner_name = " $( basename " $runner_file " .tar.gz) "
; ;
*.tgz)
runner_name = " $( basename " $runner_file " .tgz) "
; ;
2021-06-08 15:09:25 +00:00
*.tar.xz)
runner_name = " $( basename " $runner_file " .tar.xz) "
; ;
2021-01-01 01:28:34 +00:00
*)
2021-01-17 02:33:15 +00:00
debug_print exit "Unknown archive filetype in runner_install function. Aborting."
2021-01-01 01:28:34 +00:00
; ;
esac
# Get the selected runner url
2021-01-03 13:49:13 +00:00
# To add new sources, handle them here and in the
# runner_select_install function below
2021-01-01 01:28:34 +00:00
if [ " $runner_url_type " = "github" ] ; then
runner_dl_url = " $( curl -s " $contributor_url " | grep " browser_download_url.* $runner_file " | cut -d \" -f4) "
2020-12-27 21:32:55 +00:00
else
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: Unknown api/url format in runner_sources array. Aborting."
2020-12-27 21:32:55 +00:00
fi
2020-12-27 19:12:20 +00:00
# Sanity check
2021-01-01 01:28:34 +00:00
if [ -z " $runner_dl_url " ] ; then
message warning "Could not find the requested runner. The source API may be down or rate limited."
2020-12-27 19:12:20 +00:00
return 1
fi
2021-01-01 01:28:34 +00:00
# Download the runner to the tmp directory
2021-01-17 02:33:15 +00:00
debug_print continue " Downloading $runner_dl_url into $tmp_dir / $runner_file ... "
2021-01-31 16:11:38 +00:00
if [ " $use_zenity " -eq 1 ] ; then
2021-01-12 01:01:47 +00:00
# Format the curl progress bar for zenity
2021-01-14 00:06:36 +00:00
mkfifo " $tmp_dir /lugpipe "
cd " $tmp_dir " && curl -#LO " $runner_dl_url " > " $tmp_dir /lugpipe " 2>& 1 & curlpid = " $! "
stdbuf -oL tr '\r' '\n' < " $tmp_dir /lugpipe " | \
grep --line-buffered -ve "100" | grep --line-buffered -o "[0-9]*\.[0-9]" | \
2021-01-12 01:01:47 +00:00
(
2021-01-14 00:06:36 +00:00
trap 'kill "$curlpid"' ERR
2021-01-12 01:01:47 +00:00
zenity --progress --auto-close --title= "Star Citizen LUG Helper" --text= "Downloading Runner. This might take a moment.\n" 2>/dev/null
)
2021-01-14 00:06:36 +00:00
2021-01-12 01:01:47 +00:00
if [ " $? " -eq 1 ] ; then
# User clicked cancel
2021-01-17 02:33:15 +00:00
debug_print continue " Download aborted. Removing $tmp_dir / $runner_file ... "
2021-01-12 01:01:47 +00:00
rm " $tmp_dir / $runner_file "
2021-01-14 00:06:36 +00:00
rm " $tmp_dir /lugpipe "
2021-01-12 01:01:47 +00:00
return 1
fi
2021-01-14 00:06:36 +00:00
rm " $tmp_dir /lugpipe "
2021-01-12 01:01:47 +00:00
else
# Standard curl progress bar
( cd " $tmp_dir " && curl -LO " $runner_dl_url " )
fi
2021-01-01 01:28:34 +00:00
# Sanity check
if [ ! -f " $tmp_dir / $runner_file " ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The requested runner file was not downloaded. Aborting"
2021-01-01 01:28:34 +00:00
fi
# Get the path of the first item listed in the archive
# This should either be a subdirectory or the path ./
# depending on how the archive was created
first_filepath = " $( stdbuf -oL tar -tzf " $tmp_dir / $runner_file " | head -n 1) "
2020-12-22 12:02:18 +00:00
2021-01-12 01:10:41 +00:00
# Extract the runner
2021-01-01 01:28:34 +00:00
case " $first_filepath " in
# If the files in the archive begin with ./ there is no subdirectory
./*)
2021-01-17 02:33:15 +00:00
debug_print continue " Installing runner into $runners_dir / $runner_name ... "
2021-01-31 16:11:38 +00:00
if [ " $use_zenity " -eq 1 ] ; then
2021-01-12 01:01:47 +00:00
# Use Zenity progress bar
2021-06-08 15:09:25 +00:00
mkdir -p " $runners_dir / $runner_name " && tar -xf " $tmp_dir / $runner_file " -C " $runners_dir / $runner_name " | \
2021-01-12 01:01:47 +00:00
zenity --progress --pulsate --no-cancel --auto-close --title= "Star Citizen LUG Helper" --text= "Installing runner...\n" 2>/dev/null
else
2021-06-08 15:09:25 +00:00
mkdir -p " $runners_dir / $runner_name " && tar -xf " $tmp_dir / $runner_file " -C " $runners_dir / $runner_name "
2021-01-12 01:01:47 +00:00
fi
2021-01-01 01:28:34 +00:00
lutris_needs_restart = "true"
; ;
*)
# Runners with a subdirectory in the archive
2021-01-17 02:33:15 +00:00
debug_print continue " Installing runner into $runners_dir ... "
2021-01-31 16:11:38 +00:00
if [ " $use_zenity " -eq 1 ] ; then
2021-01-12 01:01:47 +00:00
# Use Zenity progress bar
2021-06-08 15:09:25 +00:00
mkdir -p " $runners_dir " && tar -xf " $tmp_dir / $runner_file " -C " $runners_dir " | \
2021-01-12 01:01:47 +00:00
zenity --progress --pulsate --no-cancel --auto-close --title= "Star Citizen LUG Helper" --text= "Installing runner...\n" 2>/dev/null
else
2021-06-08 15:09:25 +00:00
mkdir -p " $runners_dir " && tar -xf " $tmp_dir / $runner_file " -C " $runners_dir "
2021-01-12 01:01:47 +00:00
fi
2021-01-01 01:28:34 +00:00
lutris_needs_restart = "true"
; ;
esac
# Cleanup tmp download
2021-01-17 02:33:15 +00:00
debug_print continue " Removing $tmp_dir / $runner_file ... "
2021-01-01 01:28:34 +00:00
rm " $tmp_dir / $runner_file "
2020-12-22 12:02:18 +00:00
}
2020-12-27 19:43:05 +00:00
# List available runners for download
runner_select_install( ) {
2021-01-01 01:55:44 +00:00
# This function expects an element number for the array
# runner_sources to be passed in as an argument
2020-12-27 16:11:20 +00:00
if [ -z " $1 " ] ; then
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: The runner_select_install function expects a numerical argument. Aborting."
2020-12-27 16:11:20 +00:00
fi
2021-01-01 01:28:34 +00:00
# Store the url from the selected contributor
contributor_url = " ${ runner_sources [ $1 +1] } "
# Check the provided contributor url to make sure we know how to handle it
2021-01-03 13:49:13 +00:00
# To add new sources, add them here and handle in the if statement
# just below and the runner_install function above
2021-01-01 01:28:34 +00:00
case " $contributor_url " in
https://api.github.com*)
runner_url_type = "github"
2020-12-27 15:58:00 +00:00
; ;
*)
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: Unknown api/url format in runner_sources array. Aborting."
2020-12-27 15:58:00 +00:00
; ;
2020-12-22 12:02:18 +00:00
esac
2021-06-15 13:34:40 +00:00
# Check for GlibC-Version if TKG is selected, as he requires 2.33
if [ " $contributor_url " = "https://api.github.com/repos/gort818/wine-sc-lug/releases" ] ; then
printf "checking for glibc \n"
system_glibc = ( $( ldd --version | awk '/ldd/{print $NF}' ) )
printf " system glibc-versuib: $system_glibc \n "
required_glibc = "2.33"
if [ " $( bc <<< " $required_glibc > $system_glibc " ) " = = "1" ] ; then
message warning " Your glibc version is too low, /dev/null requires v $required_glibc "
proton_manage
fi
fi
2020-12-27 15:58:00 +00:00
2021-01-01 01:28:34 +00:00
# Fetch a list of runner versions from the selected contributor
2021-01-03 13:49:13 +00:00
# To add new sources, handle them here, in the if statement
# just above, and the runner_install function above
2021-01-01 01:28:34 +00:00
if [ " $runner_url_type " = "github" ] ; then
2021-01-24 20:35:33 +00:00
runner_versions = ( $( curl -s " $contributor_url " | awk '/browser_download_url/ {print $2}' | xargs basename -a) )
2021-01-01 01:28:34 +00:00
else
2021-01-17 02:33:15 +00:00
debug_print exit "Script error: Unknown api/url format in runner_sources array. Aborting."
2021-01-01 01:28:34 +00:00
fi
2020-12-27 15:58:00 +00:00
# Sanity check
if [ " ${# runner_versions [@] } " -eq 0 ] ; then
2021-01-01 01:28:34 +00:00
message warning "No runner versions were found. The source API may be down or rate limited."
2020-12-27 15:58:00 +00:00
return 1
2021-01-01 01:28:34 +00:00
fi
2020-12-27 15:58:00 +00:00
2020-12-22 12:02:18 +00:00
# Configure the menu
2021-01-01 01:28:34 +00:00
menu_text_zenity = "Select the Lutris runner you want to install:"
2020-12-27 15:58:00 +00:00
menu_text_terminal = "Select the Lutris runner you want to install:"
2020-12-27 22:27:00 +00:00
menu_text_height = "65"
2020-12-27 15:58:00 +00:00
goback = "Return to the runner management menu"
unset menu_options
unset menu_actions
2020-12-22 12:02:18 +00:00
2021-01-01 01:55:44 +00:00
# Iterate through the versions, check if they are installed,
# and add them to the menu options
2021-01-03 13:49:13 +00:00
# To add new file extensions, handle them here and in
# the runner_install function above
2021-01-01 01:28:34 +00:00
for ( ( i = 0; i<" $max_runners " && i<" ${# runner_versions [@] } " ; i++ ) ) ; do
# Get the runner name minus the file extension
case " ${ runner_versions [i] } " in
*.tar.gz)
runner_name = " $( basename " ${ runner_versions [i] } " .tar.gz) "
; ;
*.tgz)
runner_name = " $( basename " ${ runner_versions [i] } " .tgz) "
; ;
2021-06-08 15:09:25 +00:00
*.tar.xz)
runner_name = " $( basename " ${ runner_versions [i] } " .tar.xz) "
; ;
2021-01-01 01:28:34 +00:00
*)
2021-01-17 02:33:15 +00:00
debug_print exit "Unknown archive filetype in runner_select_install function. Aborting."
2021-01-01 01:28:34 +00:00
; ;
esac
# Add the runner names to the menu
2021-01-01 19:52:43 +00:00
if [ -d " $runners_dir / $runner_name " ] ; then
2021-01-01 01:28:34 +00:00
menu_options += ( " $runner_name [installed] " )
2020-12-22 12:02:18 +00:00
else
2021-01-01 01:28:34 +00:00
menu_options += ( " $runner_name " )
2020-12-22 12:02:18 +00:00
fi
2020-12-27 19:43:05 +00:00
menu_actions += ( " runner_install $i " )
2020-12-22 12:02:18 +00:00
done
2020-12-27 15:58:00 +00:00
# Complete the menu by adding the option to go back to the previous menu
menu_options += ( " $goback " )
2020-12-27 20:40:54 +00:00
menu_actions += ( ":" ) # no-op
2020-12-27 22:27:00 +00:00
# Calculate the total height the menu should be
2021-01-30 19:45:38 +00:00
menu_height = " $(( $menu_option_height * ${# menu_options [@] } + $menu_text_height )) "
2020-12-27 22:27:00 +00:00
if [ " $menu_height " -gt "400" ] ; then
menu_height = "400"
fi
2020-12-27 15:58:00 +00:00
2020-12-22 12:02:18 +00:00
# Call the menu function. It will use the options as configured above
menu
}
2020-12-27 19:43:05 +00:00
# Manage Lutris runners
runner_manage( ) {
2020-12-27 19:34:09 +00:00
# Check if Lutris is installed
if [ ! -x " $( command -v lutris) " ] ; then
message info "Lutris does not appear to be installed."
2020-12-27 20:40:54 +00:00
return 0
2020-12-27 19:34:09 +00:00
fi
2021-01-01 19:52:43 +00:00
if [ ! -d " $runners_dir " ] ; then
message info " Lutris runners directory not found. Unable to continue.\n\n $runners_dir "
return 0
fi
2020-12-27 20:40:54 +00:00
# The runner management menu will loop until the user cancels
2021-01-24 21:15:35 +00:00
looping_menu = "true"
while [ " $looping_menu " = "true" ] ; do
2020-12-27 20:40:54 +00:00
# Configure the menu
2021-01-24 21:21:49 +00:00
menu_text_zenity = "<b><big>Manage Your Lutris Runners</big>\n\nThe runners listed below are wine builds created for Star Citizen</b>\n\nYou may choose from the following options:"
menu_text_terminal = "Manage Your Lutris Runners\n\nThe runners listed below are wine builds created for Star Citizen\nYou may choose from the following options:"
menu_text_height = "140"
2020-12-27 20:40:54 +00:00
# Configure the menu options
2020-12-27 23:04:45 +00:00
delete = "Remove an installed runner"
2020-12-27 20:40:54 +00:00
back = "Return to the main menu"
2021-01-01 01:28:34 +00:00
unset menu_options
unset menu_actions
2021-01-01 01:55:44 +00:00
# Loop through the runner_sources array and create a menu item
# for each one. Even numbered elements will contain the runner name
2021-01-01 01:28:34 +00:00
for ( ( i = 0; i<" ${# runner_sources [@] } " ; i = i+2 ) ) ; do
# Set the options to be displayed in the menu
menu_options += ( " Install a runner from ${ runner_sources [i] } " )
# Set the corresponding functions to be called for each of the options
menu_actions += ( " runner_select_install $i " )
done
2021-01-01 01:55:44 +00:00
# Complete the menu by adding options to remove a runner
# or go back to the previous menu
2021-01-01 01:28:34 +00:00
menu_options += ( " $delete " " $back " )
2021-01-24 21:15:35 +00:00
menu_actions += ( "runner_select_delete" "menu_loop_done" )
2020-12-27 20:40:54 +00:00
2020-12-27 22:27:00 +00:00
# Calculate the total height the menu should be
2021-01-30 19:45:38 +00:00
menu_height = " $(( $menu_option_height * ${# menu_options [@] } + $menu_text_height )) "
2020-12-27 22:27:00 +00:00
2020-12-27 20:40:54 +00:00
# Call the menu function. It will use the options as configured above
menu
done
# Check if lutris needs to be restarted after making changes
lutris_restart
2020-12-22 12:02:18 +00:00
}
2020-12-27 21:45:31 +00:00
#-------------------------- end runner functions -----------------------------#
2021-01-24 03:05:23 +00:00
# Check that the system is optimized for Star Citizen
preflight_check( ) {
2021-01-24 03:34:15 +00:00
# Initialize variables
2021-01-24 03:05:23 +00:00
unset preflight_pass
unset preflight_fail
2021-01-24 17:44:49 +00:00
unset preflight_action_funcs
2021-01-24 03:05:23 +00:00
unset preflight_actions
2021-01-24 17:44:49 +00:00
unset preflight_results
2021-01-24 03:05:23 +00:00
unset preflight_manual
2021-01-24 17:44:49 +00:00
unset preflight_followup
2021-01-24 03:05:23 +00:00
# Call the optimization functions to perform the checks
2021-01-24 20:37:06 +00:00
memory_check
2021-02-16 19:23:14 +00:00
avx_check
2021-01-24 03:05:23 +00:00
mapcount_check
filelimit_check
# Populate info strings with the results and add formatting
if [ " ${# preflight_pass [@] } " -gt 0 ] ; then
preflight_pass_string = "Passed Checks:"
for ( ( i = 0; i<" ${# preflight_pass [@] } " ; i++ ) ) ; do
preflight_pass_string = " $preflight_pass_string \n- ${ preflight_pass [i]// \\ n / \\ n } "
done
# Add extra newlines if there are also failures to report
if [ " ${# preflight_fail [@] } " -gt 0 ] ; then
preflight_pass_string = " $preflight_pass_string \n\n "
fi
fi
if [ " ${# preflight_fail [@] } " -gt 0 ] ; then
preflight_fail_string = "Failed Checks:"
for ( ( i = 0; i<" ${# preflight_fail [@] } " ; i++ ) ) ; do
2021-01-24 17:44:49 +00:00
if [ " $i " -eq 0 ] ; then
preflight_fail_string = " $preflight_fail_string \n- ${ preflight_fail [i]// \\ n / \\ n } "
else
preflight_fail_string = " $preflight_fail_string \n\n- ${ preflight_fail [i]// \\ n / \\ n } "
2021-01-24 03:05:23 +00:00
fi
done
fi
for ( ( i = 0; i<" ${# preflight_manual [@] } " ; i++ ) ) ; do
2021-01-24 17:44:49 +00:00
if [ " $i " -eq 0 ] ; then
preflight_manual_string = " ${ preflight_manual [i] } "
else
preflight_manual_string = " $preflight_manual_string \n\n ${ preflight_manual [i] } "
2021-01-24 03:05:23 +00:00
fi
done
# Display the results of the preflight check
if [ -z " $preflight_fail_string " ] ; then
message info " Preflight Check Complete\n\nYour system is optimized for Star Citizen!\n\n $preflight_pass_string "
else
2021-01-24 20:37:06 +00:00
if [ -z " $preflight_action_funcs " ] ; then
message warning " $preflight_pass_string $preflight_fail_string "
elif message question " $preflight_pass_string $preflight_fail_string \n\nWould you like configuration issues to be fixed for you? " ; then
2021-01-24 17:44:49 +00:00
# Call functions to build fixes for any issues found
for ( ( i = 0; i<" ${# preflight_action_funcs [@] } " ; i++ ) ) ; do
${ preflight_action_funcs [i] }
done
# Populate a string of actions to be executed
2021-01-24 03:05:23 +00:00
for ( ( i = 0; i<" ${# preflight_actions [@] } " ; i++ ) ) ; do
2021-01-24 17:44:49 +00:00
if [ " $i " -eq 0 ] ; then
preflight_actions_string = " ${ preflight_actions [i] } "
else
preflight_actions_string = " $preflight_actions_string ; ${ preflight_actions [i] } "
fi
2021-01-24 03:05:23 +00:00
done
2021-01-24 17:44:49 +00:00
# Execute the actions set by the functions
if [ ! -z " $preflight_actions_string " ] ; then
2021-01-24 19:43:42 +00:00
# Use pollkit's pkexec for gui with a fallback to sudo
if [ -x " $( command -v pkexec) " ] ; then
pkexec sh -c " $preflight_actions_string "
else
sudo sh -c " $preflight_actions_string "
fi
2021-01-24 17:44:49 +00:00
fi
# Call any followup functions
for ( ( i = 0; i<" ${# preflight_followup [@] } " ; i++ ) ) ; do
${ preflight_followup [i] }
done
# Populate the results string
for ( ( i = 0; i<" ${# preflight_results [@] } " ; i++ ) ) ; do
if [ " $i " -eq 0 ] ; then
preflight_results_string = " ${ preflight_results [i] } "
else
preflight_results_string = " $preflight_results_string \n\n ${ preflight_results [i] } "
fi
done
# Display the results
message info " $preflight_results_string "
2021-01-24 03:05:23 +00:00
else
2021-01-24 20:37:06 +00:00
# User declined to automatically fix configuration issues
# Show manual configuration options
if [ ! -z " $preflight_manual_string " ] ; then
message info " $preflight_manual_string "
fi
2021-01-24 03:05:23 +00:00
fi
fi
}
2020-12-27 21:45:31 +00:00
2021-01-24 21:15:35 +00:00
# Show maintenance/troubleshooting options
maintenance_menu( ) {
# Loop the menu until the user selects quit
looping_menu = "true"
while [ " $looping_menu " = "true" ] ; do
# Configure the menu
menu_text_zenity = "<b><big>Game Maintenance and Troubleshooting</big></b>\n\nYou may choose from the following options:"
menu_text_terminal = "Game Maintenance and Troubleshooting\n\nYou may choose from the following options:"
menu_text_height = "100"
# Configure the menu options
version_msg = " Switch the Helper between LIVE and PTU (Currently: $live_or_ptu ) "
sanitize_msg = "Delete my Star Citizen USER folder and preserve my keybinds"
shaders_msg = "Delete my shaders folder only (Do this after each game update)"
vidcache_msg = "Delete my DXVK cache"
reset_msg = "Reset Helper configs"
quit_msg = "Return to the main menu"
# Set the options to be displayed in the menu
menu_options = ( " $version_msg " " $sanitize_msg " " $shaders_msg " " $vidcache_msg " " $reset_msg " " $quit_msg " )
# Set the corresponding functions to be called for each of the options
2021-01-30 19:32:41 +00:00
menu_actions = ( "set_version" "sanitize" "rm_shaders" "rm_dxvkcache" "reset_helper" "menu_loop_done" )
2021-01-24 21:15:35 +00:00
# Calculate the total height the menu should be
2021-01-30 19:45:38 +00:00
menu_height = " $(( $menu_option_height * ${# menu_options [@] } + $menu_text_height )) "
2021-01-24 21:15:35 +00:00
# Call the menu function. It will use the options as configured above
menu
done
}
2021-01-01 15:41:07 +00:00
# Get a random Penguin's Star Citizen referral code
referral_randomizer( ) {
# Populate the referral codes array
2021-03-21 18:51:53 +00:00
referral_codes = ( "STAR-4TZD-6KMM" "STAR-4XM2-VM99" "STAR-2NPY-FCR2" "STAR-T9Z9-7W6P" "STAR-VLBF-W2QR" "STAR-BYR6-YHMF" "STAR-3X2H-VZMX" "STAR-BRWN-FB9T" "STAR-FG6Y-N4Q4" "STAR-VLD6-VZRG" "STAR-T9KF-LV77" "STAR-4XHB-R7RF" "STAR-9NVF-MRN7" "STAR-3Q4W-9TC3" "STAR-3SBK-7QTT" "STAR-XFBT-9TTK" "STAR-F3H9-YPHN" "STAR-BYK6-RCCL" "STAR-XCKH-W6T7" "STAR-H292-39WK" "STAR-ZRT5-PJB7" "STAR-GMBP-SH9Y" "STAR-PLWB-LMFY" "STAR-TNZN-H4ZT" "STAR-T5G5-L2GJ" "STAR-6TPV-7QH2" "STAR-THHD-TV3Y" )
2021-01-01 15:41:07 +00:00
# Pick a random array element. Scale a floating point number for
# a more random distribution than simply calling RANDOM
random_code = " ${ referral_codes [ $( awk '{srand($2); print int(rand()*$1)}' <<< " ${# referral_codes [@] } $RANDOM " ) ] } "
2021-01-14 00:07:43 +00:00
message info " Your random Penguin's referral code is:\n\n $random_code \n\nThank you! "
2021-01-01 15:41:07 +00:00
}
2021-01-17 02:55:58 +00:00
# Toggle between the LIVE and PTU game directories for all Helper functions
2020-12-27 19:43:05 +00:00
set_version( ) {
2021-03-13 17:21:46 +00:00
if [ " $live_or_ptu " = " $live_dir " ] ; then
live_or_ptu = " $ptu_dir "
2021-01-17 02:55:58 +00:00
message info "The Helper will now target your Star Citizen PTU installation."
2021-03-13 17:21:46 +00:00
elif [ " $live_or_ptu " = " $ptu_dir " ] ; then
live_or_ptu = " $live_dir "
2021-01-17 02:55:58 +00:00
message info "The Helper will now target your Star Citizen LIVE installation."
2020-12-27 19:43:05 +00:00
else
2021-01-17 02:33:15 +00:00
debug_print continue "Unexpected game version provided. Defaulting to the LIVE installation."
2021-03-13 17:21:46 +00:00
live_or_ptu = " $live_dir "
2020-12-27 19:43:05 +00:00
fi
}
2021-01-17 02:51:00 +00:00
# Delete the helper's config directory
reset_helper( ) {
# Delete the shader directory
if message question " All config files will be deleted from:\n\n $conf_dir / $conf_subdir \n\nDo you want to proceed? " ; then
debug_print continue " Deleting $conf_dir / $conf_subdir /*.conf... "
rm " $conf_dir / $conf_subdir / " *.conf
message info "The Helper has been reset!"
fi
}
2020-12-27 19:43:05 +00:00
quit( ) {
exit 0
}
2020-12-22 12:02:18 +00:00
2020-08-15 02:11:31 +00:00
############################################################################
# MAIN
############################################################################
# Check if Zenity is available
2021-01-31 16:11:38 +00:00
use_zenity = 0
2020-08-15 02:11:31 +00:00
if [ -x " $( command -v zenity) " ] ; then
2021-01-31 16:11:38 +00:00
use_zenity = 1
2020-08-02 18:12:02 +00:00
fi
2020-08-15 02:11:31 +00:00
2020-12-27 19:57:57 +00:00
# Set some defaults
2021-03-13 17:21:46 +00:00
live_or_ptu = " $live_dir "
2020-12-27 20:40:54 +00:00
lutris_needs_restart = "false"
2020-08-18 01:57:24 +00:00
2021-06-15 13:34:40 +00:00
# Credits for this go to https://gist.github.com/lukechilds/a83e1d7127b78fef38c2914c4ececc3c
get_latest_release( ) {
curl --silent " https://api.github.com/repos/ $1 /releases/latest " | # Get latest release from GitHub api
grep '"tag_name":' | # Get tag line
sed -E 's/.*"([^"]+)".*/\1/' # Pluck JSON value
}
# Check if a new Verison of the script is available
repo = "the-sane/lug-helper"
current_version = "v1.9"
latest_version = $( get_latest_release " $repo " )
if [ " $latest_version " != " $current_version " ] ; then
# Print to stdout and also try warning the user through message
printf "New version available, check https://github.com/the-sane/lug-helper/releases \n"
message info "New version available, check <a href='https://github.com/the-sane/lug-helper/releases'>https://github.com/the-sane/lug-helper/releases</a> \n"
fi
2021-01-30 19:32:16 +00:00
# If invoked with command line arguments, process them and exit
if [ " $# " -gt 0 ] ; then
while [ " $# " -gt 0 ]
do
# Victor_Tramp expects the spanish inquisition.
case " $1 " in
2021-01-31 16:10:23 +00:00
--help | -h )
2021-01-30 19:32:16 +00:00
printf " Star Citizen Linux Users Group Helper Script
Usage: lug-helper <options>
2021-01-31 16:10:23 +00:00
-p, --preflight-check Run system optimization checks
-m, --manage-runners Install or remove Lutris runners
-u, --delete-user-folder Delete Star Citizen USER folder, preserving keybinds
-s, --delete-shaders Delete Star Citizen shaders directory
-c, --delete-dxvk-cache Delete Star Citizen dxvk cache file
-t, --target= [ live| ptu] Target LIVE or PTU ( default live)
-g, --use-gui= [ yes| no] Use Zenity GUI ( default yes)
-r, --get-referral Get a random LUG member' s Star Citizen referral code
-x, --reset-helper Delete saved lug-helper configs
2021-01-30 19:32:16 +00:00
"
exit 0
; ;
2021-01-31 16:10:23 +00:00
--preflight-check | -p )
cargs += ( "preflight_check" )
2021-01-30 19:32:16 +00:00
; ;
2021-01-31 16:10:23 +00:00
--manage-runners | -m )
cargs += ( "runner_manage" )
2021-01-30 19:32:16 +00:00
; ;
2021-01-31 16:10:23 +00:00
--delete-user-folder | -u )
cargs += ( "sanitize" )
2021-01-30 19:32:16 +00:00
; ;
2021-01-31 16:10:23 +00:00
--delete-shaders | -s )
cargs += ( "rm_shaders" )
2021-01-30 19:32:16 +00:00
; ;
2021-01-31 16:10:23 +00:00
--delete-dxvk-cache | -c )
cargs += ( "rm_dxvkcache" )
2021-01-30 19:32:16 +00:00
; ;
2021-01-31 16:10:23 +00:00
--target= * | -t= * )
live_or_ptu = " $( echo " $1 " | cut -d'=' -f2) "
if [ " $live_or_ptu " = "live" ] || [ " $live_or_ptu " = "LIVE" ] ; then
2021-03-13 17:21:46 +00:00
live_or_ptu = " $live_dir "
2021-01-31 16:10:23 +00:00
elif [ " $live_or_ptu " = "ptu" ] || [ " $live_or_ptu " = "PTU" ] ; then
2021-03-13 17:21:46 +00:00
live_or_ptu = " $ptu_dir "
2021-01-31 16:10:23 +00:00
else
printf " $0 : Invalid option ' $1 '\n "
exit 0
fi
2021-01-30 19:32:16 +00:00
; ;
2021-01-31 16:10:23 +00:00
--use-gui= * | -g= * )
# If zenity is unavailable, it has already been set to 0
# and this setting has no effect
if [ -x " $( command -v zenity) " ] ; then
2021-01-31 16:11:38 +00:00
use_zenity = " $( echo " $1 " | cut -d'=' -f2) "
2021-01-31 16:33:31 +00:00
if [ " $use_zenity " = "yes" ] || [ " $use_zenity " = "YES" ] || [ " $use_zenity " = "1" ] ; then
2021-01-31 16:11:38 +00:00
use_zenity = 1
2021-01-31 16:33:31 +00:00
elif [ " $use_zenity " = "no" ] || [ " $use_zenity " = "NO" ] || [ " $use_zenity " = "0" ] ; then
2021-01-31 16:11:38 +00:00
use_zenity = 0
2021-01-31 16:10:23 +00:00
else
printf " $0 : Invalid option ' $1 '\n "
exit 0
fi
fi
2021-01-30 19:32:16 +00:00
; ;
2021-01-31 16:10:23 +00:00
--get-referral | -r )
cargs += ( "referral_randomizer" )
; ;
--reset-helper | -x )
cargs += ( "reset_helper" )
; ;
* )
2021-01-30 19:32:16 +00:00
printf " $0 : Invalid option ' $1 '\n "
exit 0
; ;
esac
# Shift forward to the next argument and loop again
shift
done
2021-01-31 16:10:23 +00:00
# Call the requested functions and exit
if [ " ${# cargs [@] } " -gt 0 ] ; then
for ( ( i = 0; i<" ${# cargs [@] } " ; i++ ) ) ; do
${ cargs [i] }
done
exit 0
fi
2021-01-30 19:32:16 +00:00
fi
2020-08-15 02:11:31 +00:00
# Loop the main menu until the user selects quit
while true; do
2020-09-07 22:51:19 +00:00
# Configure the menu
2021-01-17 02:55:58 +00:00
menu_text_zenity = "<b><big>Welcome, fellow Penguin, to the Star Citizen LUG Helper!</big>\n\nThis Helper is designed to help optimize your system for Star Citizen</b>\n\nYou may choose from the following options:"
menu_text_terminal = "Welcome, fellow Penguin, to the Star Citizen Linux Users Group Helper!\n\nThis Helper is designed to help optimize your system for Star Citizen\nYou may choose from the following options:"
2020-12-27 22:27:00 +00:00
menu_text_height = "140"
2020-09-07 22:51:19 +00:00
# Configure the menu options
2021-01-24 03:05:23 +00:00
preflight_msg = "Preflight Check (System Optimization)"
2020-12-25 16:24:10 +00:00
runners_msg = "Manage Lutris Runners"
2021-01-24 23:49:17 +00:00
maintenance_msg = "User Folder Maintenance and Troubleshooting"
2021-01-17 02:51:00 +00:00
randomizer_msg = "Get a random Penguin's Star Citizen referral code"
2020-09-07 22:51:19 +00:00
quit_msg = "Quit"
2020-11-29 13:34:10 +00:00
# Set the options to be displayed in the menu
2021-01-24 21:15:35 +00:00
menu_options = ( " $preflight_msg " " $runners_msg " " $maintenance_msg " " $randomizer_msg " " $quit_msg " )
2020-09-07 22:51:19 +00:00
# Set the corresponding functions to be called for each of the options
2021-01-24 21:15:35 +00:00
menu_actions = ( "preflight_check" "runner_manage" "maintenance_menu" "referral_randomizer" "quit" )
2020-12-27 22:27:00 +00:00
# Calculate the total height the menu should be
2021-01-30 19:45:38 +00:00
menu_height = " $(( $menu_option_height * ${# menu_options [@] } + $menu_text_height )) "
2020-09-07 22:51:19 +00:00
2020-11-29 13:34:10 +00:00
# Call the menu function. It will use the options as configured above
2020-09-07 22:51:19 +00:00
menu
2020-08-15 02:11:31 +00:00
done