gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.3 KiB
80 lines
2.3 KiB
#!/bin/bash
|
|
# LGSM command_mods_install.sh function
|
|
# Author: Daniel Gibbs
|
|
# Contributor: UltimateByte
|
|
# Website: https://gameservermanagers.com
|
|
# Description: List and installs available mods along with mods_list.sh.
|
|
|
|
local commandname="MODS"
|
|
local commandaction="Mod Installation"
|
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
check.sh
|
|
mods_core.sh
|
|
mods_list.sh
|
|
|
|
fn_mods_install_init(){
|
|
fn_script_log "Entering mods & addons installation"
|
|
echo "================================="
|
|
echo "${gamename} mods & addons installation"
|
|
echo ""
|
|
# Display available mods from mods_list.sh
|
|
fn_mods_show_available
|
|
echo ""
|
|
# Keep prompting as long as the user input doesn't correspond to an available mod
|
|
while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do
|
|
echo -en "Enter a \e[36mmod\e[0m to install (or exit to abort): "
|
|
read -r usermodselect
|
|
# Exit if user says exit or abort
|
|
if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then
|
|
fn_script_log "User aborted."
|
|
echo "Aborted."
|
|
core_exit.sh
|
|
# Supplementary output upon invalid user input
|
|
elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then
|
|
fn_print_error2_nl "${usermodselect} is not a valid mod."
|
|
echo " * Enter a valid mod or input exit to abort."
|
|
fi
|
|
done
|
|
# Gives a pretty name to the user and get all mod info
|
|
currentmod="${usermodselect}"
|
|
fn_mod_get_info_from_command
|
|
fn_print_dots_nl "Installing ${modprettyname}"
|
|
sleep 1
|
|
fn_script_log "Installing ${modprettyname}."
|
|
}
|
|
|
|
# Run all required operation
|
|
fn_mod_installation(){
|
|
# If a mod was selected
|
|
if [ -n "${currentmod}" ]; then
|
|
# Get mod info
|
|
fn_mod_get_info_from_command
|
|
# Check if mod is already installed
|
|
fn_mod_already_installed
|
|
# Check and create required directories
|
|
fn_mods_dir
|
|
# Clear lgsm/tmp/mods dir if exists then recreate it
|
|
fn_clear_tmp_mods
|
|
fn_mods_tmpdir
|
|
# Download mod
|
|
fn_mod_dl
|
|
# Extract the mod
|
|
fn_mod_extract
|
|
# Build a file list
|
|
fn_mod_fileslist
|
|
# Copying to destination
|
|
fn_mod_copy_destination
|
|
# Ending with installation routines
|
|
fn_mod_add_list
|
|
fn_clear_tmp_mods
|
|
fn_print_ok_nl "${modprettyname} installed."
|
|
fn_script_log "${modprettyname} installed."
|
|
else
|
|
fn_print_fail "No mod was selected."
|
|
core_exit.sh
|
|
fi
|
|
}
|
|
|
|
fn_mods_install_init
|
|
fn_mod_installation
|
|
|