From 4cca1e82dfcd210ff8939cec527aa065aaffa866 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:03:57 +0100 Subject: [PATCH 001/185] Mods install command --- lgsm/functions/command_mods_install.sh | 175 +++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 lgsm/functions/command_mods_install.sh diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh new file mode 100644 index 000000000..a2c7b8bed --- /dev/null +++ b/lgsm/functions/command_mods_install.sh @@ -0,0 +1,175 @@ +#!/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_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 "Installing ${modprettyname}" + sleep 1 + fn_script_log "Installing ${modprettyname}." +} + +# Create mods directory if it doesn't exist +# Assuming the game is already installed as mods_list.sh checked for it. +fn_mods_dir(){ + if [ ! -d "${modinstalldir}" ]; then + fn_script_log_info "Creating mods directory: ${modinstalldir}" + fn_print_dots "Creating mods directory" + sleep 1 + mkdir -p "${modinstalldir}" + fn_print_ok_nl "Created mods directory" + fi +} + +# Clear mod download directory so that there is only one file in it since we don't the file name and extention +fn_clear_tmp_mods(){ + if [ -d "${modstmpdir}" ]; then + rm -r "${modstmpdir}" + fn_script_log "Clearing temp mod download directory: ${modstmpdir}" + fi +} + +# Create tmp download mod directory +fn_mods_tmpdir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + fn_script_log "Creating temp mod download directory: ${modstmpdir}" + fi +} + +fn_mod_dl(){ + # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fileurl="${modurl}" + filedir="${modstmpdir}" + filename="${modfilename}" + fn_script_log "Downloading mods to ${modstmpdir}" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" + # Check if variable is valid checking if file has been downloaded and exists + if [ ! -f "${modstmpdir}/${modfilename}" ]; then + fn_print_fail "An issue occurred upon downloading ${modprettyname}" + core_exit.sh + fi +} + +fn_mod_extract(){ + # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" + filename="${modfilename}" + extractdir="${modstmpdir}/extracted" + if [ ! -d "${extractdir}" ]; then + mkdir -p "${extractdir}" + fi + fn_script_log "Extracting ${modprettyname} to ${extractdir}" + fn_dl_extract "${filedir}" "${filename}" "${extractdir}" +} + +fn_mod_fileslist(){ + # ${modsdatadir}/${modcommand}-files.list + true; +} + +fn_mod_copy_destination(){ + # Destination directory: ${modinstalldir} + fn_script_log "Copying ${modprettyname} to ${modinstalldir}" + cp -Rf "${extractdir}/." "${modinstalldir}/" +} + +# Check if the mod is already installed and warn the user +fn_mod_already_installed(){ + if [ -f "${modslockfilefullpath}" ]; then + if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "" + fn_print_warning_nl "${modprettyname} has already been installed." + echo " * Mod files will be overwritten." + sleep 4 + fi + fi +} + +# Add the mod to the installed mods list +fn_mod_add_list(){ + # Create lgsm/data directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi + # Create lgsm/data/${modslockfile} + if [ ! -f "${modslockfilefullpath}" ]; then + touch "${modslockfilefullpath}" + fn_script_log "Created ${modslockfilefullpath}" + fi + # Input mod name to lockfile + if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "${modcommand}" >> "${modslockfilefullpath}" + fn_script_log "${modcommand} added to ${modslockfile}" + fi +} + +# 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_checks +fn_mods_install_init +fn_mod_installation From f677f13b666eff74745a44cb4837d74081bd3859 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:04:50 +0100 Subject: [PATCH 002/185] Mods remove init --- lgsm/functions/command_mods_remove.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lgsm/functions/command_mods_remove.sh diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh new file mode 100644 index 000000000..c2bb35f48 --- /dev/null +++ b/lgsm/functions/command_mods_remove.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# LGSM command_mods_uninstall.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Uninstall mods along with mods_list.sh. + +local commandname="MODS" +local commandaction="Mod Remove" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" From 18d6168c30e7bfaf11f46867b712ae55397d7e83 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:05:17 +0100 Subject: [PATCH 003/185] Command mods update init --- lgsm/functions/command_mods_update.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lgsm/functions/command_mods_update.sh diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh new file mode 100644 index 000000000..e1a818bc1 --- /dev/null +++ b/lgsm/functions/command_mods_update.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# LGSM command_mods_update.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Updates installed mods along with mods_list.sh. + +local commandname="MODS" +local commandaction="Mod Update" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" From 24fb13ffac418a903d32a5bf8b0d8125302877a7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:05:59 +0100 Subject: [PATCH 004/185] Declare mods functions --- lgsm/functions/core_functions.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 3a233174a..a8c41fc32 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -180,6 +180,21 @@ functionfile="${FUNCNAME}" fn_fetch_function } +command_mods_install.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + +command_mods_update.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + +command_mods_remove.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + command_fastdl.sh(){ functionfile="${FUNCNAME}" fn_fetch_function @@ -276,6 +291,12 @@ functionfile="${FUNCNAME}" fn_fetch_function } +# Mods + +mods_list.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} # Dev From f303ce2eb56acf1596fbaee7749db7d609c47e5c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:06:37 +0100 Subject: [PATCH 005/185] Mods install/update/remove opt --- lgsm/functions/core_getopt.sh | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 0cbd6f2b0..faa9c7011 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -43,6 +43,12 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; + mi|mods-install) + command_mods_install.sh;; + mu|mods-update) + command_mods_update.sh;; + mr|mods-remove) + command_mods_remove.sh;; dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) @@ -76,6 +82,9 @@ case "${getopt}" in echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." echo -e "${blue}install\t${default}i |Install the server." echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." + echo -e "${blue}mods-install\t${default}mi |View and install available mods/addons." + echo -e "${blue}mods-update\t${default}mu |Update installed mods/addons." + echo -e "${blue}mods-remove\t${default}mr |Remove installed mods/addons." } | column -s $'\t' -t esac } @@ -517,14 +526,20 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; + fd|fastdl) + command_fastdl.sh;; + mi|mods-install) + command_mods_install.sh;; + mu|mods-update) + command_mods_update.sh;; + mr|mods-remove) + command_mods_remove.sh;; dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; dl|detect-ldd) command_dev_detect_ldd.sh;; - fd|fastdl) - command_fastdl.sh;; *) if [ -n "${getopt}" ]; then echo -e "${red}Unknown command${default}: $0 ${getopt}" @@ -552,6 +567,9 @@ case "${getopt}" in echo -e "${blue}install\t${default}i |Install the server." echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." echo -e "${blue}fastdl\t${default}fd |Generates or update a FastDL directory for your server." + echo -e "${blue}mods-install\t${default}mi |View and install available mods/addons." + echo -e "${blue}mods-update\t${default}mu |Update installed mods/addons." + echo -e "${blue}mods-remove\t${default}mr |Remove installed mods/addons." } | column -s $'\t' -t esac } From cc07590575e1bfcbd2da9c0dba4498feebf270fb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:07:32 +0100 Subject: [PATCH 006/185] Base for mods_list.sh --- lgsm/functions/mods_list.sh | 286 ++++++++++++++++++++++++++++++++++++ 1 file changed, 286 insertions(+) create mode 100644 lgsm/functions/mods_list.sh diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh new file mode 100644 index 000000000..f4c1910b5 --- /dev/null +++ b/lgsm/functions/mods_list.sh @@ -0,0 +1,286 @@ +#!/bin/bash +# LGSM mods_list.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Lists and defines available mods for LGSM supported servers. +# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. +# Usage: Then add this array to the mods_global_array. +# Usage: If needed, you can scrape to define the download URL inside the fn_mods_scrape_urls function. + +local commandname="MODS" +local commandaction="List Mods" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh + +## Useful variables +# Files and Directories +modstmpdir="${tmpdir}/mods" +modsdatadir="${lgsmdir}/data/mods" +modslockfile="installed-mods-listing" +modslockfilefullpath="${modsdatadir}/${modslockfile}" +# Separator name +modseparator="MOD" + +# Define mods information (required) +fn_mods_info(){ + # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubfolders" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) + # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) + # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) + # None of those values can be empty + # [index] | Usage + # [0] | MOD: separator, all mods must begin with it + # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) + # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user + # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) + # [4] | "filename": the output filename + # [5] | "modsubfolders": in how many subfolders is the mod (none is 1) + # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) + # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) + # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating + # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value + # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value + # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) + # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install + # [13] | "Short Description" a description showed to the user upon installation + + # Source mods + mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) + mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) + # Garry's Mod Addons + mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) + mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) + mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) + mod_info_uclip=( MOD "uclip" "UClib" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) + mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) + mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) + mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) + mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) + mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) + # Oxidemod + mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Rust.zip" "Oxide-Rust_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Rust;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-rust.1659" "Allows for the use of plugins" ) + mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) + mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) + + # REQUIRED: Set all mods info into one array for convenience + mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) +} + +# Get a proper URL for mods that don't provide a good one (optional) +fn_mods_scrape_urls(){ + # Metamod + metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" + metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" + metamodfasterurl="http://cdn.probablyaserver.com/sourcemod/" + metamodurl="${metamodfasterurl}/${metamodlatestfile}" + # Sourcemod + sourcemodmversion="1.8" + sourcemodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" + sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -| grep "sourcemod-" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" + sourcemodfasterurl="http://cdn.probablyaserver.com/sourcemod/" + sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" +} + +# Define all variables from a mod at once when index is set to a separator +fn_mod_info(){ +# If for some reason no index is set, none of this can work +if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue to LGSM Team." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + core_exit.sh +fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubfolders="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" +} + + +# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable +fn_compatible_mod_games(){ + # Reset test value + modcompatiblegame="0" + # If value is set to GAMES (ignore) + if [ "${modgames}" != "GAMES" ]; then + # How many games we need to test + gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modgames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do + # Put current game name into modtest variable + gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If game name matches + if [ "${gamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modcompatiblegame="1" + fi + done + fi +} + +# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable +fn_compatible_mod_engines(){ + # Reset test value + modcompatibleengine="0" + # If value is set to ENGINES (ignore) + if [ "${modengines}" != "ENGINES" ]; then + # How many engines we need to test + enginesamount="$(echo "${modengines}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modengines" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${enginesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${enginemodtest}" == "${engine}" ]; then + # Mod is compatible ! + modcompatibleengine="1" + fi + done + fi +} + +# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable +fn_not_compatible_mod_games(){ + # Reset test value + modeincompatiblegame="0" + # If value is set to NOTGAMES (ignore) + if [ "${modexcludegames}" != "NOTGAMES" ]; then + # How many engines we need to test + excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modexcludegames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${excludegamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modeincompatiblegame="1" + fi + done + fi +} + +# Sums up if a mod is compatible or not with modcompatibility=0/1 +fn_mod_compatible_test(){ + # Test game and engine compatibility + fn_compatible_mod_games + fn_compatible_mod_engines + fn_not_compatible_mod_games + if [ "${modeincompatiblegame}" == "1" ]; then + modcompatibility="0" + elif [ "${modcompatibleengine}" == "1" ]||[ "${modcompatiblegame}" == "1" ]; then + modcompatibility="1" + else + modcompatibility="0" + fi +} + +# Checks if a mod is compatibile for installation +# Provides available mods for installation +# Provides commands for mods installation +fn_mods_available(){ + # First, reset variables + compatiblemodslist=() + availablemodscommands=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" + # Find compatible games + # Find separators through the global array + for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do + # If current value is a separator; then + if [ "${mods_global_array[index]}" == "${modseparator}" ]; then + # Set mod variables + fn_mod_info + # Test if game is compatible + fn_mod_compatible_test + # If game is compatible + if [ "${modcompatibility}" == "1" ]; then + # Put it into the list to display to the user + compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) + # Keep available commands in an array + availablemodscommands+=( "${modcommand}" ) + fi + fi + done +} + +# Output available mods in a nice way to the user +fn_mods_show_available(){ + # Set and reset vars + compatiblemodslistindex=0 + spaces=" " + # As long as we're within index values + while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do + # Set values for convenience + displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" + displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" + displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" + displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" + # Output mods to the user + echo -e "\e[1m${displayedmodname}\e[0m" + echo -e " * ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" + # Increment index from the amount of values we just displayed + let "compatiblemodslistindex+=4" + done +} + +# Get details of a mod any (relevant and unique, such as full mod name or install command) value +fn_mod_get_info_from_command(){ + # Variable to know when job is done + modinfocommand="0" + # Find entry in global array + for ((index=0; index <= ${#mods_global_array[@]}; index++)); do + # When entry is found + if [ "${mods_global_array[index]}" == "${currentmod}" ]; then + # Go back to the previous "MOD" separator + for ((index=index; index <= ${#mods_global_array[@]}; index--)); do + # When "MOD" is found + if [ "${mods_global_array[index]}" == "MOD" ]; then + # Get info + fn_mod_info + modinfocommand="1" + break + fi + done + fi + # Exit the loop if job is done + if [ "${modinfocommand}" == "1" ]; then + break + fi + done +} + +# Requirements to install mods +fn_mods_install_checks(){ + # If no mods are found + if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + core_exit.sh + # If systemdir doesn't exist, then the game isn't installed + elif [ ! -d "${systemdir}" ]; then + fn_print_fail "${gamename} needs to be installed first." + core_exit.sh + # If tompdir variable doesn't exist, LGSM is too old + elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + +fn_mods_scrape_urls +fn_mods_info +fn_mods_available +fn_mods_install_checks From 05b4e3b06a675eda7efb2fb44b87a6223c45e076 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:29:56 +0100 Subject: [PATCH 007/185] Checks done differently --- lgsm/functions/mods_list.sh | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index f4c1910b5..42a301499 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -234,6 +234,11 @@ fn_mods_show_available(){ # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done + # If no mods are found + if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + core_exit.sh + fi } # Get details of a mod any (relevant and unique, such as full mod name or install command) value @@ -262,25 +267,6 @@ fn_mod_get_info_from_command(){ done } -# Requirements to install mods -fn_mods_install_checks(){ - # If no mods are found - if [ -z "${compatiblemodslist}" ]; then - fn_print_fail "No mods are currently available for ${gamename}." - core_exit.sh - # If systemdir doesn't exist, then the game isn't installed - elif [ ! -d "${systemdir}" ]; then - fn_print_fail "${gamename} needs to be installed first." - core_exit.sh - # If tompdir variable doesn't exist, LGSM is too old - elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} - fn_mods_scrape_urls fn_mods_info fn_mods_available -fn_mods_install_checks From 5c8b59db19c6ce0167462dcfe9699faa05d9ce21 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:30:09 +0100 Subject: [PATCH 008/185] Checks done differently --- lgsm/functions/command_mods_install.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index a2c7b8bed..c1bbcf89c 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -43,6 +43,19 @@ fn_mods_install_init(){ fn_script_log "Installing ${modprettyname}." } +fn_mods_requirements(){ + # If systemdir doesn't exist, then the game isn't installed + if [ ! -d "${systemdir}" ]; then + fn_print_fail "${gamename} needs to be installed first." + core_exit.sh + # If tompdir variable doesn't exist, LGSM is too old + elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + # Create mods directory if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_dir(){ @@ -170,6 +183,6 @@ fn_mod_installation(){ fi } -fn_mods_install_checks +fn_mods_requirements fn_mods_install_init fn_mod_installation From 29d2b51085ac7b5a6d134f9203271b0eeac172cf Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:35:18 +0100 Subject: [PATCH 009/185] No need to check for systemdir, lgsm already does --- lgsm/functions/command_mods_install.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index c1bbcf89c..5e419b86b 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -44,12 +44,8 @@ fn_mods_install_init(){ } fn_mods_requirements(){ - # If systemdir doesn't exist, then the game isn't installed - if [ ! -d "${systemdir}" ]; then - fn_print_fail "${gamename} needs to be installed first." - core_exit.sh # If tompdir variable doesn't exist, LGSM is too old - elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then fn_print_fail "Your LGSM version is too old." echo " * Please do a full update, including ${selfname} script." core_exit.sh From 77e2043700cad4893ef80935c43d8b679c7a6c55 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:36:47 +0100 Subject: [PATCH 010/185] checks moves to mods_list.sh --- lgsm/functions/command_mods_install.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 5e419b86b..8601567a7 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -43,15 +43,6 @@ fn_mods_install_init(){ fn_script_log "Installing ${modprettyname}." } -fn_mods_requirements(){ - # If tompdir variable doesn't exist, LGSM is too old - if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} - # Create mods directory if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_dir(){ @@ -179,6 +170,5 @@ fn_mod_installation(){ fi } -fn_mods_requirements fn_mods_install_init fn_mod_installation From ad2965d9f234ef52354bfdf69f4c15fb76109c37 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:37:52 +0100 Subject: [PATCH 011/185] Checks back here --- lgsm/functions/mods_list.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 42a301499..5da1d5dfc 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -82,6 +82,16 @@ fn_mods_scrape_urls(){ sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" } +# Sets some gsm requirements +fn_gsm_requirements(){ + # If tmpdir variable doesn't exist, LGSM is too old + if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + # Define all variables from a mod at once when index is set to a separator fn_mod_info(){ # If for some reason no index is set, none of this can work @@ -267,6 +277,7 @@ fn_mod_get_info_from_command(){ done } +fn_gsm_requirements fn_mods_scrape_urls fn_mods_info fn_mods_available From 7df96359817ff2aa0b8cf3c40d2d6b867c2a1a80 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:42:10 +0100 Subject: [PATCH 012/185] New line for better output --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 8601567a7..9bde617cd 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -38,7 +38,7 @@ fn_mods_install_init(){ # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command - fn_print_dots "Installing ${modprettyname}" + fn_print_dots_nl "Installing ${modprettyname}" sleep 1 fn_script_log "Installing ${modprettyname}." } From d35de663b0074712a4cd028e49607f3b410868fc Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:51:18 +0100 Subject: [PATCH 013/185] trying different mod view --- lgsm/functions/mods_list.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 5da1d5dfc..f05a7ac47 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -238,9 +238,8 @@ fn_mods_show_available(){ displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[1m${displayedmodname}\e[0m" + echo -e "\e[36m${displayedmodcommand}\e[0m - \e[1m${displayedmodname}\e[0m" echo -e " * ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done From 46802979b380d12df404477b2efbc12d0e204cbd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:54:06 +0100 Subject: [PATCH 014/185] Trying another look --- lgsm/functions/mods_list.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index f05a7ac47..4d09807c9 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -238,8 +238,8 @@ fn_mods_show_available(){ displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[36m${displayedmodcommand}\e[0m - \e[1m${displayedmodname}\e[0m" - echo -e " * ${displayedmoddescription} - ${displayedmodsite}" + echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done From 9ae8cb4d8f1c6568499ab8308ca5bbd2c5de5af2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:59:00 +0100 Subject: [PATCH 015/185] typo ublib > uclip --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 4d09807c9..ebff4c67a 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -52,7 +52,7 @@ fn_mods_info(){ mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) - mod_info_uclip=( MOD "uclip" "UClib" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) + mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) From 80b21df4b05e0eff16cc209802da0088cbb62779 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 02:02:36 +0100 Subject: [PATCH 016/185] Added file list generation --- lgsm/functions/command_mods_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 9bde617cd..9ea76257f 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -98,7 +98,8 @@ fn_mod_extract(){ fn_mod_fileslist(){ # ${modsdatadir}/${modcommand}-files.list - true; + find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list + fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" } fn_mod_copy_destination(){ From 1e83458917e5b19d67455978b069956c1d843d04 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 02:36:39 +0100 Subject: [PATCH 017/185] Trying recursive installed mods display --- lgsm/functions/command_mods_update.sh | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index e1a818bc1..26bf7ba69 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -6,5 +6,28 @@ # Description: Updates installed mods along with mods_list.sh. local commandname="MODS" -local commandaction="Mod Update" +local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh +mods_list.sh + +fn_mods_update_init(){ + fn_script_log "Entering mods & addons update" + echo "=================================" + echo "${gamename} mods & addons update" + echo "" + # Installed mod dir is "${modslockfilefullpath}" + # How many mods will be updated + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # Loop showing mods to update + for (( installedmodsline=$installedmodscount; installedmodsline<=5; installedmodsline++ )); do + sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" + done + + currentmod="${usermodselect}" + fn_mod_get_info_from_command + fn_print_dots_nl "Updating ${modprettyname}" + sleep 1 + fn_script_log "Updating ${modprettyname}." +} From e229b2c7ea6586d532865e2e7d780105fb93d57b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 02:46:26 +0100 Subject: [PATCH 018/185] new attempt --- lgsm/functions/command_mods_update.sh | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 26bf7ba69..c99162ae1 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -17,17 +17,20 @@ fn_mods_update_init(){ echo "=================================" echo "${gamename} mods & addons update" echo "" - # Installed mod dir is "${modslockfilefullpath}" - # How many mods will be updated - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - # Loop showing mods to update - for (( installedmodsline=$installedmodscount; installedmodsline<=5; installedmodsline++ )); do - sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" - done + # Installed mod dir is "${modslockfilefullpath}" + # How many mods will be updated + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # Loop showing mods to update + while [ $installedmodsline -lte $installedmodscount ]; do + sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" + let installedmodscount=installedmodscount+1 + done - currentmod="${usermodselect}" - fn_mod_get_info_from_command - fn_print_dots_nl "Updating ${modprettyname}" - sleep 1 - fn_script_log "Updating ${modprettyname}." + #currentmod="${usermodselect}" + #fn_mod_get_info_from_command + #fn_print_dots_nl "Updating ${modprettyname}" + #sleep 1 + #fn_script_log "Updating ${modprettyname}." } + +fn_mods_update_init From 89eb3ee9f9b29de982412ffda8263602a8f6c187 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:17:58 +0100 Subject: [PATCH 019/185] Fixed output --- lgsm/functions/command_mods_update.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index c99162ae1..f162bb33b 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -20,12 +20,14 @@ fn_mods_update_init(){ # Installed mod dir is "${modslockfilefullpath}" # How many mods will be updated installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + echo "${installedmodscount} addons will be updated:" # Loop showing mods to update - while [ $installedmodsline -lte $installedmodscount ]; do - sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" - let installedmodscount=installedmodscount+1 - done - + installedmodsline=1 + while [ $installedmodsline -le $installedmodscount ]; do + echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" + let installedmodsline=installedmodsline+1 + done + exit #currentmod="${usermodselect}" #fn_mod_get_info_from_command #fn_print_dots_nl "Updating ${modprettyname}" From 8ca7bca3cacd29a5449c1a04f025dd290d17e89c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:25:51 +0100 Subject: [PATCH 020/185] Testing for multiple installations --- lgsm/functions/command_mods_update.sh | 44 +++++++++++++++++++++++---- 1 file changed, 38 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index f162bb33b..272fee642 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -27,12 +27,44 @@ fn_mods_update_init(){ echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" let installedmodsline=installedmodsline+1 done - exit - #currentmod="${usermodselect}" - #fn_mod_get_info_from_command - #fn_print_dots_nl "Updating ${modprettyname}" - #sleep 1 - #fn_script_log "Updating ${modprettyname}." + sleep 2 +} + +fn_mods_update_loop(){ + while [ $installedmodsline -le $installedmodscount ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + fn_mod_get_info_from_command + if [ -n "${currentmod}" ]; then + fn_print_dots_nl "Updating ${modprettyname}" + sleep 0.5 + fn_script_log "Updating ${modprettyname}." + # 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 + done } fn_mods_update_init From 5adee73be4ae46efa8afb40cd1f4a83f19275994 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:09 +0100 Subject: [PATCH 021/185] moving mods core functions away --- lgsm/functions/core_functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index a8c41fc32..fc9dfaab0 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -298,6 +298,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +mods_core.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Dev command_dev_debug.sh(){ From c91831a133e25d8e89c8750c5505e8e298825e04 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:12 +0100 Subject: [PATCH 022/185] moving mods core functions away --- lgsm/functions/mods_core.sh | 114 ++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 lgsm/functions/mods_core.sh diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh new file mode 100644 index 000000000..17bce6f30 --- /dev/null +++ b/lgsm/functions/mods_core.sh @@ -0,0 +1,114 @@ +176 lines (161 sloc) 5.27 KB +#!/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="Core functions for mods" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +## Useful variables +# Files and Directories +modstmpdir="${tmpdir}/mods" +modsdatadir="${lgsmdir}/data/mods" +modslockfile="installed-mods-listing" +modslockfilefullpath="${modsdatadir}/${modslockfile}" + +# Create mods directory if it doesn't exist +# Assuming the game is already installed as mods_list.sh checked for it. +fn_mods_dir(){ + if [ ! -d "${modinstalldir}" ]; then + fn_script_log_info "Creating mods directory: ${modinstalldir}" + fn_print_dots "Creating mods directory" + sleep 1 + mkdir -p "${modinstalldir}" + fn_print_ok_nl "Created mods directory" + fi +} + +# Clear mod download directory so that there is only one file in it since we don't the file name and extention +fn_clear_tmp_mods(){ + if [ -d "${modstmpdir}" ]; then + rm -r "${modstmpdir}" + fn_script_log "Clearing temp mod download directory: ${modstmpdir}" + fi +} + +# Create tmp download mod directory +fn_mods_tmpdir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + fn_script_log "Creating temp mod download directory: ${modstmpdir}" + fi +} + +fn_mod_dl(){ + # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fileurl="${modurl}" + filedir="${modstmpdir}" + filename="${modfilename}" + fn_script_log "Downloading mods to ${modstmpdir}" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" + # Check if variable is valid checking if file has been downloaded and exists + if [ ! -f "${modstmpdir}/${modfilename}" ]; then + fn_print_fail "An issue occurred upon downloading ${modprettyname}" + core_exit.sh + fi +} + +fn_mod_extract(){ + # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" + filename="${modfilename}" + extractdir="${modstmpdir}/extracted" + if [ ! -d "${extractdir}" ]; then + mkdir -p "${extractdir}" + fi + fn_script_log "Extracting ${modprettyname} to ${extractdir}" + fn_dl_extract "${filedir}" "${filename}" "${extractdir}" +} + +fn_mod_fileslist(){ + # ${modsdatadir}/${modcommand}-files.list + find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list + fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" +} + +fn_mod_copy_destination(){ + # Destination directory: ${modinstalldir} + fn_script_log "Copying ${modprettyname} to ${modinstalldir}" + cp -Rf "${extractdir}/." "${modinstalldir}/" +} + +# Check if the mod is already installed and warn the user +fn_mod_already_installed(){ + if [ -f "${modslockfilefullpath}" ]; then + if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "" + fn_print_warning_nl "${modprettyname} has already been installed." + echo " * Mod files will be overwritten." + sleep 4 + fi + fi +} + +# Add the mod to the installed mods list +fn_mod_add_list(){ + # Create lgsm/data directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi + # Create lgsm/data/${modslockfile} + if [ ! -f "${modslockfilefullpath}" ]; then + touch "${modslockfilefullpath}" + fn_script_log "Created ${modslockfilefullpath}" + fi + # Input mod name to lockfile + if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "${modcommand}" >> "${modslockfilefullpath}" + fn_script_log "${modcommand} added to ${modslockfile}" + fi +} From e2d26df74464de321cdaed6465279ff17bb76388 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:15 +0100 Subject: [PATCH 023/185] moving mods core functions away --- lgsm/functions/mods_list.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index ebff4c67a..28d8d5621 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -15,11 +15,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh ## Useful variables -# Files and Directories -modstmpdir="${tmpdir}/mods" -modsdatadir="${lgsmdir}/data/mods" -modslockfile="installed-mods-listing" -modslockfilefullpath="${modsdatadir}/${modslockfile}" # Separator name modseparator="MOD" From 1de06e19458a5f1ff537ecaa1a7821689e3d9dc1 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:18 +0100 Subject: [PATCH 024/185] moving mods core functions away --- lgsm/functions/command_mods_install.sh | 97 +------------------------- 1 file changed, 1 insertion(+), 96 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 9ea76257f..5c3fb7032 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -10,6 +10,7 @@ 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(){ @@ -43,102 +44,6 @@ fn_mods_install_init(){ fn_script_log "Installing ${modprettyname}." } -# Create mods directory if it doesn't exist -# Assuming the game is already installed as mods_list.sh checked for it. -fn_mods_dir(){ - if [ ! -d "${modinstalldir}" ]; then - fn_script_log_info "Creating mods directory: ${modinstalldir}" - fn_print_dots "Creating mods directory" - sleep 1 - mkdir -p "${modinstalldir}" - fn_print_ok_nl "Created mods directory" - fi -} - -# Clear mod download directory so that there is only one file in it since we don't the file name and extention -fn_clear_tmp_mods(){ - if [ -d "${modstmpdir}" ]; then - rm -r "${modstmpdir}" - fn_script_log "Clearing temp mod download directory: ${modstmpdir}" - fi -} - -# Create tmp download mod directory -fn_mods_tmpdir(){ - if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - fn_script_log "Creating temp mod download directory: ${modstmpdir}" - fi -} - -fn_mod_dl(){ - # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" - fileurl="${modurl}" - filedir="${modstmpdir}" - filename="${modfilename}" - fn_script_log "Downloading mods to ${modstmpdir}" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" - # Check if variable is valid checking if file has been downloaded and exists - if [ ! -f "${modstmpdir}/${modfilename}" ]; then - fn_print_fail "An issue occurred upon downloading ${modprettyname}" - core_exit.sh - fi -} - -fn_mod_extract(){ - # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" - filename="${modfilename}" - extractdir="${modstmpdir}/extracted" - if [ ! -d "${extractdir}" ]; then - mkdir -p "${extractdir}" - fi - fn_script_log "Extracting ${modprettyname} to ${extractdir}" - fn_dl_extract "${filedir}" "${filename}" "${extractdir}" -} - -fn_mod_fileslist(){ - # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list - fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" -} - -fn_mod_copy_destination(){ - # Destination directory: ${modinstalldir} - fn_script_log "Copying ${modprettyname} to ${modinstalldir}" - cp -Rf "${extractdir}/." "${modinstalldir}/" -} - -# Check if the mod is already installed and warn the user -fn_mod_already_installed(){ - if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "" - fn_print_warning_nl "${modprettyname} has already been installed." - echo " * Mod files will be overwritten." - sleep 4 - fi - fi -} - -# Add the mod to the installed mods list -fn_mod_add_list(){ - # Create lgsm/data directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" - fi - # Create lgsm/data/${modslockfile} - if [ ! -f "${modslockfilefullpath}" ]; then - touch "${modslockfilefullpath}" - fn_script_log "Created ${modslockfilefullpath}" - fi - # Input mod name to lockfile - if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "${modcommand}" >> "${modslockfilefullpath}" - fn_script_log "${modcommand} added to ${modslockfile}" - fi -} - # Run all required operation fn_mod_installation(){ # If a mod was selected From 9502cbdb034f6fddd4dcd8cdf1e9e92a1a9e9d89 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:33:18 +0100 Subject: [PATCH 025/185] Removed jerk line --- lgsm/functions/mods_core.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 17bce6f30..ac1b0ab61 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -1,4 +1,3 @@ -176 lines (161 sloc) 5.27 KB #!/bin/bash # LGSM command_mods_install.sh function # Author: Daniel Gibbs From 99bf5905a36ef1ad3cd89bbedc87a2a51b9f3067 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:36:01 +0100 Subject: [PATCH 026/185] description --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 5c3fb7032..0b9d64eff 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: List and installs available mods along with mods_list.sh. +# Description: List and installs available mods along with mods_list.sh and mods_core.sh. local commandname="MODS" local commandaction="Mod Installation" From 47e8886d0b1c30b029e1264861216d75a6036a60 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:48:14 +0100 Subject: [PATCH 027/185] Various fixes --- lgsm/functions/command_mods_update.sh | 33 +++++++++++++++++++-------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 272fee642..c64bf5427 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -3,13 +3,14 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Updates installed mods along with mods_list.sh. +# Description: Updates installed mods along with mods_list.sh and mods_core.sh. local commandname="MODS" local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh +mods_core.sh mods_list.sh fn_mods_update_init(){ @@ -19,18 +20,27 @@ fn_mods_update_init(){ echo "" # Installed mod dir is "${modslockfilefullpath}" # How many mods will be updated - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - echo "${installedmodscount} addons will be updated:" - # Loop showing mods to update - installedmodsline=1 - while [ $installedmodsline -le $installedmodscount ]; do - echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" - let installedmodsline=installedmodsline+1 - done - sleep 2 + if [ -f "${modslockfilefullpath}" ]; then + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + if + echo "${installedmodscount} addons will be updated:" + # Loop showing mods to update + installedmodsline=1 + while [ $installedmodsline -le $installedmodscount ]; do + echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" + let installedmodsline=installedmodsline+1 + done + sleep 2 + else + fn_print_info_nl "No mods to be updated!" + echo " * Did you install any mod using LGSM?" + fn_print_log "No mods to be updated" + core_exit.sh + fi } fn_mods_update_loop(){ + installedmodline="1" while [ $installedmodsline -le $installedmodscount ]; do currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command @@ -60,6 +70,8 @@ fn_mods_update_loop(){ fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." + let installedmodsline=installedmodsline+1 + else fn_print_fail "No mod was selected." core_exit.sh @@ -68,3 +80,4 @@ fn_mods_update_loop(){ } fn_mods_update_init +fn_mods_update_loop From d368cdb2a84f57e869a0f9103fa7fa6391bed979 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:56:53 +0100 Subject: [PATCH 028/185] fixes and comments --- lgsm/functions/command_mods_update.sh | 33 +++++++++++++-------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index c64bf5427..1e08679fb 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -20,10 +20,16 @@ fn_mods_update_init(){ echo "" # Installed mod dir is "${modslockfilefullpath}" # How many mods will be updated - if [ -f "${modslockfilefullpath}" ]; then - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - if - echo "${installedmodscount} addons will be updated:" + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # If no mods to be updated + if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then + fn_print_information_nl "No mods or addons to be updated" + echo " * Did you install any mod using LGSM?" + fn_log_info "No mods or addons to be updated" + core_exit.sh + else + fn_print_information_nl "${installedmodscount} mods or addons will be updated:" + fn_log_info "${installedmodscount} mods or addons will be updated" # Loop showing mods to update installedmodsline=1 while [ $installedmodsline -le $installedmodscount ]; do @@ -31,27 +37,21 @@ fn_mods_update_init(){ let installedmodsline=installedmodsline+1 done sleep 2 - else - fn_print_info_nl "No mods to be updated!" - echo " * Did you install any mod using LGSM?" - fn_print_log "No mods to be updated" - core_exit.sh fi } +# Recursively list all installed mods and apply update fn_mods_update_loop(){ + # Reset line value installedmodline="1" while [ $installedmodsline -le $installedmodscount ]; do + # Current line defines current mod command currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" - fn_mod_get_info_from_command if [ -n "${currentmod}" ]; then - fn_print_dots_nl "Updating ${modprettyname}" - sleep 0.5 - fn_script_log "Updating ${modprettyname}." # Get mod info fn_mod_get_info_from_command - # Check if mod is already installed - fn_mod_already_installed + fn_print_dots_nl "Updating ${modprettyname}" + fn_script_log "Updating ${modprettyname}." # Check and create required directories fn_mods_dir # Clear lgsm/tmp/mods dir if exists then recreate it @@ -70,8 +70,7 @@ fn_mods_update_loop(){ fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." - let installedmodsline=installedmodsline+1 - + let installedmodsline=installedmodsline+1 else fn_print_fail "No mod was selected." core_exit.sh From da8c08c5ef12f183b4f90bc3b7b6b5db83b1f59a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:17:37 +0100 Subject: [PATCH 029/185] typo --- lgsm/functions/command_mods_update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 1e08679fb..a7fd0c572 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -25,11 +25,11 @@ fn_mods_update_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to be updated" echo " * Did you install any mod using LGSM?" - fn_log_info "No mods or addons to be updated" + fn_scrip_log_info "No mods or addons to be updated" core_exit.sh else fn_print_information_nl "${installedmodscount} mods or addons will be updated:" - fn_log_info "${installedmodscount} mods or addons will be updated" + fn_script_log_info "${installedmodscount} mods or addons will be updated" # Loop showing mods to update installedmodsline=1 while [ $installedmodsline -le $installedmodscount ]; do @@ -43,7 +43,7 @@ fn_mods_update_init(){ # Recursively list all installed mods and apply update fn_mods_update_loop(){ # Reset line value - installedmodline="1" + installedmodsline="1" while [ $installedmodsline -le $installedmodscount ]; do # Current line defines current mod command currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" From 214d755b027306a8b8fa91e0b97eba0931c0c801 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:29:52 +0100 Subject: [PATCH 030/185] fn_mod_lowercase --- lgsm/functions/mods_core.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index ac1b0ab61..e67f1bc45 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -69,6 +69,17 @@ fn_mod_extract(){ fn_dl_extract "${filedir}" "${filename}" "${extractdir}" } +fn_mod_lowercase(){ + # Converting files to lowercase + if [ "${modlowercase}" == "LowercaseOn" ]; then + fn_print_dots "Converting ${modprettyname} files to lowercase" + fn_script_log "Converting ${modprettyname} files to lowercase" + find "${extractdir}" -exec readlink -e '{}' \; | rename 'y/A-Z/a-z/' + fn_print_ok "Converting ${modprettyname} files to lowercase" + sleep 1 + fi +} + fn_mod_fileslist(){ # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list From 389b6a1c55d26ed3b0b3ca9c8c51023f87a1336f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:35:57 +0100 Subject: [PATCH 031/185] added lowercase convert to install --- lgsm/functions/command_mods_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 0b9d64eff..c4039951b 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -61,6 +61,8 @@ fn_mod_installation(){ fn_mod_dl # Extract the mod fn_mod_extract + # Convert to lowercase if needed + fn_mod_lowercase # Build a file list fn_mod_fileslist # Copying to destination From 7721c4be0be6e9b47045cef770aaa7c1a7473acc Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:35:58 +0100 Subject: [PATCH 032/185] added lowercase convert to update --- lgsm/functions/command_mods_update.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index a7fd0c572..a271a3163 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -61,6 +61,10 @@ fn_mods_update_loop(){ fn_mod_dl # Extract the mod fn_mod_extract + # Remove files that should not be erased + # fn_remove_cfg_files + # Convert to lowercase if needed + fn_mod_lowercase # Build a file list fn_mod_fileslist # Copying to destination From da4d7f146cd858a34e0e0307119495c4fc3788b3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:38:27 +0100 Subject: [PATCH 033/185] changed message for already installed mod --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index e67f1bc45..2326f2135 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -98,7 +98,8 @@ fn_mod_already_installed(){ if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then echo "" fn_print_warning_nl "${modprettyname} has already been installed." - echo " * Mod files will be overwritten." + echo " * Config files might be overwritten." + echo " * Press ctrl + c to abort." sleep 4 fi fi From d6c5bf446e6227b14de6ebf4fb7597cb84e4eb0e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:59:56 +0100 Subject: [PATCH 034/185] better lowercase algorithm --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 2326f2135..9312fe352 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -74,7 +74,7 @@ fn_mod_lowercase(){ if [ "${modlowercase}" == "LowercaseOn" ]; then fn_print_dots "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase" - find "${extractdir}" -exec readlink -e '{}' \; | rename 'y/A-Z/a-z/' + find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" sleep 1 fi From 1f6c9c907823a4f3ad33980c3236657b2bb21986 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:29:19 +0100 Subject: [PATCH 035/185] Disable update mods --- lgsm/functions/command_mods_update.sh | 61 ++++++++++++++++----------- 1 file changed, 36 insertions(+), 25 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index a271a3163..cc2e25cb7 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -50,33 +50,44 @@ fn_mods_update_loop(){ if [ -n "${currentmod}" ]; then # Get mod info fn_mod_get_info_from_command - fn_print_dots_nl "Updating ${modprettyname}" - fn_script_log "Updating ${modprettyname}." - # 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 - # Remove files that should not be erased - # fn_remove_cfg_files - # Convert to lowercase if needed - fn_mod_lowercase - # 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." - let installedmodsline=installedmodsline+1 + # Don't update the mod if it's policy is to "NOUPDATE" + if [ "${modkeepfiles}" == "NOUPDATE" ]; then + fn_print_warning "${modprettyname} update has been disabled by LGSM." + echo " * Usual reason is to prevent erasing custom files." + echo " * If you still wish to update this mod: + echo " * 1) Backup your critical mod files + echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal) + echo " * 3) Re-install the mod with ./${selfname} mods-install" + else + fn_print_dots_nl "Updating ${modprettyname}" + fn_script_log "Updating ${modprettyname}." + # 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 + # Remove files that should not be erased + # fn_remove_cfg_files + # Convert to lowercase if needed + fn_mod_lowercase + # 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." + let installedmodsline=installedmodsline+1 + fi else fn_print_fail "No mod was selected." + fn_script_log_fail "No mod was selected." core_exit.sh fi done From 3b90b501d324b13faacbb54962a1893680dfd823 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:32:34 +0100 Subject: [PATCH 036/185] missing dir created & preparing cfg keep solution --- lgsm/functions/mods_core.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9312fe352..1e1822a19 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -80,7 +80,20 @@ fn_mod_lowercase(){ fi } +fn_remove_cfg_files(){ + # Remove config file after extraction for updates set by ${modkeepfiles} + if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then + echo "Prevent erasing custom files." + echo "Todo list" + fi +} + fn_mod_fileslist(){ + # Create lgsm/data/mods directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" @@ -107,7 +120,7 @@ fn_mod_already_installed(){ # Add the mod to the installed mods list fn_mod_add_list(){ - # Create lgsm/data directory + # Create lgsm/data/mods directory if [ ! -d "${modsdatadir}" ]; then mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" From 0286aaed8cc4eed6b2277551728a1bf4ee3c8905 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:33:33 +0100 Subject: [PATCH 037/185] closed double quotes --- lgsm/functions/command_mods_update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index cc2e25cb7..13196e015 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -54,9 +54,9 @@ fn_mods_update_loop(){ if [ "${modkeepfiles}" == "NOUPDATE" ]; then fn_print_warning "${modprettyname} update has been disabled by LGSM." echo " * Usual reason is to prevent erasing custom files." - echo " * If you still wish to update this mod: - echo " * 1) Backup your critical mod files - echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal) + echo " * If you still wish to update this mod:" + echo " * 1) Backup your critical mod files" + echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" echo " * 3) Re-install the mod with ./${selfname} mods-install" else fn_print_dots_nl "Updating ${modprettyname}" From 97e30c95ff30cc0271e7e0867b2eb4af212b128c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:35:27 +0100 Subject: [PATCH 038/185] missing increment --- lgsm/functions/command_mods_update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 13196e015..a480cf17d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -52,12 +52,13 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_warning "${modprettyname} update has been disabled by LGSM." + fn_print_warning_nl "${modprettyname} update has been disabled by LGSM." echo " * Usual reason is to prevent erasing custom files." echo " * If you still wish to update this mod:" echo " * 1) Backup your critical mod files" echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" echo " * 3) Re-install the mod with ./${selfname} mods-install" + let installedmodsline=installedmodsline+1 else fn_print_dots_nl "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." From cfe30b2b9d72c3539e92feb26490113ebfb13c31 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 08:16:38 +0100 Subject: [PATCH 039/185] Update mods_list.sh --- lgsm/functions/mods_list.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 28d8d5621..91ebb2ad6 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -20,7 +20,7 @@ modseparator="MOD" # Define mods information (required) fn_mods_info(){ - # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubfolders" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) + # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) # None of those values can be empty @@ -30,7 +30,7 @@ fn_mods_info(){ # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) # [4] | "filename": the output filename - # [5] | "modsubfolders": in how many subfolders is the mod (none is 1) + # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating @@ -41,8 +41,8 @@ fn_mods_info(){ # [13] | "Short Description" a description showed to the user upon installation # Source mods - mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) - mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) + mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) + mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) # Garry's Mod Addons mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) @@ -99,7 +99,7 @@ fi modprettyname="${mods_global_array[index+2]}" modurl="${mods_global_array[index+3]}" modfilename="${mods_global_array[index+4]}" - modsubfolders="${mods_global_array[index+5]}" + modsubdirs="${mods_global_array[index+5]}" modlowercase="${mods_global_array[index+6]}" modinstalldir="${mods_global_array[index+7]}" modkeepfiles="${mods_global_array[index+8]}" From 41230b0cfeb88e98d32588fc592b7fe0b0515fc0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:03:50 +0100 Subject: [PATCH 040/185] merging, to test and fix --- lgsm/functions/mods_core.sh | 81 +++++++++++++++++++++++++++++++++++-- 1 file changed, 78 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1e1822a19..826ad7c4a 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -34,6 +34,10 @@ fn_clear_tmp_mods(){ rm -r "${modstmpdir}" fn_script_log "Clearing temp mod download directory: ${modstmpdir}" fi + # Clear temp file list as well + if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then + rm "${modsdatadir}/.removedfiles.tmp" + fi } # Create tmp download mod directory @@ -83,8 +87,24 @@ fn_mod_lowercase(){ fn_remove_cfg_files(){ # Remove config file after extraction for updates set by ${modkeepfiles} if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - echo "Prevent erasing custom files." - echo "Todo list" + # Upon mods updates, config files should not be overwritten + # We will just remove these files before copying the mod to the destination + removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modgames" using the ";" separator + for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + # Put current game name into modtest variable + removefiletest="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + # If it matches + if [ -f "${extractdir}/${removefiletest}" ]||[ -d "${extractdir}/${removefiletest}" ]; then + # Then delete the file! + rm -R "${extractdir}/${removefiletest}" + # Write this file path in a tmp file, to rebuild a full file list + if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then + touch "${modsdatadir}/.removedfiles.tmp" + fi + echo "${removefiletest}" > ${modsdatadir}/.removedfiles.tmp" + fi + done fi } @@ -95,8 +115,12 @@ fn_mod_fileslist(){ fn_script_log "Created ${modsdatadir}" fi # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list + find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" + # Adding removed files if needed + if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then + cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list + fi } fn_mod_copy_destination(){ @@ -136,3 +160,54 @@ fn_mod_add_list(){ fn_script_log "${modcommand} added to ${modslockfile}" fi } + +fn_check_files_list(){ + # File list must exist and be valid before any operation on it + if [ -f "${modsdatadir}/${modcommand}-files.list" ]; then + # How many lines is the file list + modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.list" | wc -l)" + # If file list is empty + if [ $modsfilelistsize -eq 0 ]; then + fn_print_error_nl "${modcommand}-files.list is empty" + echo "Exiting." + fn_scrip_log_fatal "${modcommand}-files.list is empty" + exitcode="2" + core_exit.sh + fi + else + fn_print_error_nl "${modsdatadir}/${modcommand}-files.list don't exist" + echo "Exiting." + fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.list don't exist" + exitcode="2" + core_exit.sh + fi +} + +fn_postinstall_tasks(){ + # Sourcemod, but any other game as well should never delete "cfg" or "addons" folder + # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list + fn_check_files_list + # Output to the user + fn_print_information_nl "Rearranging ${modcommand}-files.list" + fn_script_log_info "Rearranging ${modcommand}-files.list" + smremovefromlist="cfg;addons" + # Loop through every single line to find any of the files to remove from the list + # that way these files won't get removed upon update or uninstall + fileslistline=1 + while [ $fileslistline -le $modsfilelistsize ]; do + testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" + # How many elements to remove from list + smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modkeepfiles" using the ";" separator + for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do + # Put current file into test variable + smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # If it matches + if [ "${testline}" == "${smremovetestvar}" ]; then + # Then delete the line! + sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" + fi + done + let fileslistline=fileslistline+1 + done +} From 6d381f079955f34252ba7827a29f4a0cf0fcc533 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:08:06 +0100 Subject: [PATCH 041/185] removed space --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 826ad7c4a..38fb1e376 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -110,7 +110,7 @@ fn_remove_cfg_files(){ fn_mod_fileslist(){ # Create lgsm/data/mods directory - if [ ! -d "${modsdatadir}" ]; then + if [ ! -d "${modsdatadir}" ]; then mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" fi From f280dd779464746f12807d6cebf851bddc07bcc7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:13:28 +0100 Subject: [PATCH 042/185] missing double quote --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 38fb1e376..082afb399 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -102,7 +102,7 @@ fn_remove_cfg_files(){ if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi - echo "${removefiletest}" > ${modsdatadir}/.removedfiles.tmp" + echo "${removefiletest}" > "${modsdatadir}/.removedfiles.tmp" fi done fi @@ -180,7 +180,7 @@ fn_check_files_list(){ fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.list don't exist" exitcode="2" core_exit.sh - fi + fi } fn_postinstall_tasks(){ From 8c399fcf460064ad8e28d2b751e7bacf4f173e6b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:18:54 +0100 Subject: [PATCH 043/185] added postinstall tasks --- lgsm/functions/command_mods_install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index c4039951b..6a3e05b20 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -69,6 +69,9 @@ fn_mod_installation(){ fn_mod_copy_destination # Ending with installation routines fn_mod_add_list + # Post install fixes + fn_postinstall_tasks + # Cleaning fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." From 890e20438e81a515f76f6d75a600ccf807488063 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:20:53 +0100 Subject: [PATCH 044/185] added fn_postinstall_tasks & fn_remove_cfg_files --- lgsm/functions/command_mods_update.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index a480cf17d..390897d41 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -71,16 +71,19 @@ fn_mods_update_loop(){ fn_mod_dl # Extract the mod fn_mod_extract - # Remove files that should not be erased - # fn_remove_cfg_files # Convert to lowercase if needed fn_mod_lowercase + # Remove files that should not be erased + fn_remove_cfg_files # Build a file list fn_mod_fileslist # Copying to destination fn_mod_copy_destination # Ending with installation routines fn_mod_add_list + # Post install fixes + fn_postinstall_tasks + # Cleaning fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." From f2dc5fd1a5333c927bffcd1e2f6fa3705f28d69b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:44:32 +0100 Subject: [PATCH 045/185] attempt to fix sed --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 082afb399..a24f88195 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -190,7 +190,7 @@ fn_postinstall_tasks(){ # Output to the user fn_print_information_nl "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - smremovefromlist="cfg;addons" + smremovefromlist="cfg;addons;" # Loop through every single line to find any of the files to remove from the list # that way these files won't get removed upon update or uninstall fileslistline=1 @@ -205,7 +205,7 @@ fn_postinstall_tasks(){ # If it matches if [ "${testline}" == "${smremovetestvar}" ]; then # Then delete the line! - sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/${testline}/d" "${modsdatadir}/${modcommand}-files.list" fi done let fileslistline=fileslistline+1 From 98174069416783180fba620fe6ea4178967b3483 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:45:40 +0100 Subject: [PATCH 046/185] sourcemod available for gmod --- lgsm/functions/mods_list.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 91ebb2ad6..24a81f262 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -41,8 +41,8 @@ fn_mods_info(){ # [13] | "Short Description" a description showed to the user upon installation # Source mods - mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) - mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) + mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) + mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "NOTGAMES" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) # Garry's Mod Addons mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) From cf6de952e18e05423d89a96c4943516d290fcd7d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 10:02:39 +0100 Subject: [PATCH 047/185] try replacing with grep --- lgsm/functions/mods_core.sh | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index a24f88195..2bb9a80da 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -190,24 +190,16 @@ fn_postinstall_tasks(){ # Output to the user fn_print_information_nl "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - smremovefromlist="cfg;addons;" + removefromlist="cfg;addons;" # Loop through every single line to find any of the files to remove from the list # that way these files won't get removed upon update or uninstall - fileslistline=1 - while [ $fileslistline -le $modsfilelistsize ]; do - testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" - # How many elements to remove from list - smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do - # Put current file into test variable - smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # If it matches - if [ "${testline}" == "${smremovetestvar}" ]; then - # Then delete the line! - sed -i "/${testline}/d" "${modsdatadir}/${modcommand}-files.list" - fi - done - let fileslistline=fileslistline+1 + # How many elements to remove from list + smremoveamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modkeepfiles" using the ";" separator + for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do + # Put current file into test variable + rmtestvar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # Remove matches + grep -vFf ${modsdatadir}/${modcommand}-files.list "${rmtestvar}" > ${modsdatadir}/${modcommand}-files.list done } From 4e79f341e5fff091c4096a982826f0aac3c508c6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 10:07:16 +0100 Subject: [PATCH 048/185] rollback to fix --- lgsm/functions/mods_core.sh | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 2bb9a80da..d39fc2204 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -190,16 +190,24 @@ fn_postinstall_tasks(){ # Output to the user fn_print_information_nl "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - removefromlist="cfg;addons;" + smremovefromlist="cfg;addons;" # Loop through every single line to find any of the files to remove from the list # that way these files won't get removed upon update or uninstall - # How many elements to remove from list - smremoveamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do - # Put current file into test variable - rmtestvar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # Remove matches - grep -vFf ${modsdatadir}/${modcommand}-files.list "${rmtestvar}" > ${modsdatadir}/${modcommand}-files.list + fileslistline=1 + while [ $fileslistline -le $modsfilelistsize ]; do + testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" + # How many elements to remove from list + smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modkeepfiles" using the ";" separator + for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do + # Put current file into test variable + smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # If it matches + if [ "${testline}" == "${smremovetestvar}" ]; then + # Then delete the line! + sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" + fi + done + let fileslistline=fileslistline+1 done } From 7fa45081d2c2002689106b5e39892c4a571342ed Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 19:12:17 +0100 Subject: [PATCH 049/185] travis Cedar fix --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f91811da3..d385c27fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: bash -sudo: false +sudo: required env: - DISTRO=ubuntu-trusty From ff583d565c8078e179ba2879366520f37cf65d57 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 20:05:29 +0100 Subject: [PATCH 050/185] attempt to fix thanks @cedar :D --- lgsm/functions/mods_core.sh | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index d39fc2204..9482dd12e 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -188,26 +188,22 @@ fn_postinstall_tasks(){ # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list fn_check_files_list # Output to the user - fn_print_information_nl "Rearranging ${modcommand}-files.list" + fn_print_dots "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - smremovefromlist="cfg;addons;" - # Loop through every single line to find any of the files to remove from the list + removefromlist="cfg;addons;" + # Loop through files to remove and remove them from file list # that way these files won't get removed upon update or uninstall - fileslistline=1 - while [ $fileslistline -le $modsfilelistsize ]; do - testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" - # How many elements to remove from list - smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do - # Put current file into test variable - smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # If it matches - if [ "${testline}" == "${smremovetestvar}" ]; then - # Then delete the line! - sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" - fi - done - let fileslistline=fileslistline+1 + # How many elements to remove from list + removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "removefromlist" using the ";" separator + for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do + # Put current file into test variable + removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # If it matches + if [ "${testline}" == "${removefilevar}" ]; then + # Then delete matching line(s)! + sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" + fi done + fn_print_ok "Rearranging ${modcommand}-files.list" } From 98f30f384362ecc102befe1b3f3e45f6988134f4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 20:09:48 +0100 Subject: [PATCH 051/185] clearing junk --- lgsm/functions/mods_core.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9482dd12e..5bde66b15 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -191,19 +191,16 @@ fn_postinstall_tasks(){ fn_print_dots "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" removefromlist="cfg;addons;" - # Loop through files to remove and remove them from file list - # that way these files won't get removed upon update or uninstall + # Loop through files to remove from file list, + # that way these files won't get removed upon uninstall # How many elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" # Test all subvalue of "removefromlist" using the ";" separator for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # If it matches - if [ "${testline}" == "${removefilevar}" ]; then - # Then delete matching line(s)! - sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" - fi + # Then delete matching line(s)! + sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" done fn_print_ok "Rearranging ${modcommand}-files.list" } From 02fc9bc11564d195ab1c627ec5fc0c941d88ba48 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 20:17:00 +0100 Subject: [PATCH 052/185] proper var & comments --- lgsm/functions/mods_core.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 5bde66b15..de4a7fde9 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -184,12 +184,13 @@ fn_check_files_list(){ } fn_postinstall_tasks(){ - # Sourcemod, but any other game as well should never delete "cfg" or "addons" folder # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list + # Check file validity fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" + # What lines/files to remove from file list removefromlist="cfg;addons;" # Loop through files to remove from file list, # that way these files won't get removed upon uninstall @@ -200,7 +201,7 @@ fn_postinstall_tasks(){ # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" # Then delete matching line(s)! - sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" done fn_print_ok "Rearranging ${modcommand}-files.list" } From d47652db6335f22a6181ac0081d85b500d4184a9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 21:53:44 +0100 Subject: [PATCH 053/185] Changes & echoing for diagnose purposes --- lgsm/functions/mods_core.sh | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index de4a7fde9..b5e441b5e 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: List and installs available mods along with mods_list.sh. +# Description: Core functions for mods list/install/update/remove local commandname="MODS" local commandaction="Core functions for mods" @@ -12,6 +12,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" ## Useful variables # Files and Directories modstmpdir="${tmpdir}/mods" +extractdir="${modstmpdir}/extracted" modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" @@ -65,7 +66,6 @@ fn_mod_dl(){ fn_mod_extract(){ # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" filename="${modfilename}" - extractdir="${modstmpdir}/extracted" if [ ! -d "${extractdir}" ]; then mkdir -p "${extractdir}" fi @@ -89,15 +89,18 @@ fn_remove_cfg_files(){ if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then # Upon mods updates, config files should not be overwritten # We will just remove these files before copying the mod to the destination + # Let's count how many files there are to remove removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do - # Put current game name into modtest variable - removefiletest="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - # If it matches - if [ -f "${extractdir}/${removefiletest}" ]||[ -d "${extractdir}/${removefiletest}" ]; then + # Put current file we're looking for into a variable + filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + echo "Testing ${filetoremove}" + # If it matches an existing file that have been extracted + if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then + echo "Removing ${extractdir}/${filetoremove}" # Then delete the file! - rm -R "${extractdir}/${removefiletest}" + rm -R "${extractdir}/${filetoremove}" # Write this file path in a tmp file, to rebuild a full file list if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" From 8d6fe73cc4058d0716deb452dee7fc9cd91549c3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 22:00:45 +0100 Subject: [PATCH 054/185] Attempt for fix fn_remove_cfg_files --- lgsm/functions/mods_core.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b5e441b5e..294193237 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -95,17 +95,15 @@ fn_remove_cfg_files(){ for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do # Put current file we're looking for into a variable filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - echo "Testing ${filetoremove}" # If it matches an existing file that have been extracted if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - echo "Removing ${extractdir}/${filetoremove}" # Then delete the file! rm -R "${extractdir}/${filetoremove}" # Write this file path in a tmp file, to rebuild a full file list if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi - echo "${removefiletest}" > "${modsdatadir}/.removedfiles.tmp" + echo "${filetoremove}" > "${modsdatadir}/.removedfiles.tmp" fi done fi From bcd64144e44c46e7e65f4dd85786bfa3521ace94 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 22:18:12 +0100 Subject: [PATCH 055/185] trying to improve output --- lgsm/functions/command_mods_update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 390897d41..ea2355581 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -60,7 +60,8 @@ fn_mods_update_loop(){ echo " * 3) Re-install the mod with ./${selfname} mods-install" let installedmodsline=installedmodsline+1 else - fn_print_dots_nl "Updating ${modprettyname}" + echo "" + fn_print_dots "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." # Check and create required directories fn_mods_dir From 97dcc1bca87ce8e2c1b8fa0eef4a6bbdbd981216 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 22:21:29 +0100 Subject: [PATCH 056/185] output --- lgsm/functions/command_mods_update.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index ea2355581..8a7869431 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -52,12 +52,11 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_warning_nl "${modprettyname} update has been disabled by LGSM." - echo " * Usual reason is to prevent erasing custom files." + fn_print_info_nl "${modprettyname} won't be updated to prevent erasing custom files." echo " * If you still wish to update this mod:" - echo " * 1) Backup your critical mod files" - echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" - echo " * 3) Re-install the mod with ./${selfname} mods-install" + echo " 1) Backup your critical mod files" + echo " 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" + echo " 3) Re-install the mod with ./${selfname} mods-install" let installedmodsline=installedmodsline+1 else echo "" From 9ceca05b8ae3840cf226ca7477208fe1c519ffab Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 23:02:50 +0100 Subject: [PATCH 057/185] way more output --- lgsm/functions/mods_core.sh | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 294193237..aa0a2c61c 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -76,7 +76,7 @@ fn_mod_extract(){ fn_mod_lowercase(){ # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then - fn_print_dots "Converting ${modprettyname} files to lowercase" + fn_print_dots_nl "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase" find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" @@ -90,6 +90,8 @@ fn_remove_cfg_files(){ # Upon mods updates, config files should not be overwritten # We will just remove these files before copying the mod to the destination # Let's count how many files there are to remove + fn_print_dots_nl "Allow for preserving ${modprettyname} config files" + sleep 0.5 removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do @@ -103,9 +105,10 @@ fn_remove_cfg_files(){ if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi - echo "${filetoremove}" > "${modsdatadir}/.removedfiles.tmp" + echo "${filetoremove}" >> "${modsdatadir}/.removedfiles.tmp" fi done + fn_print_ok "Allow for preserving ${modprettyname} config files" fi } @@ -115,6 +118,8 @@ fn_mod_fileslist(){ mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" fi + fn_print_dots_nl "Building ${modcommand}-files.list" + fn_script_log "Building ${modcommand}-files.list" # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" @@ -122,10 +127,12 @@ fn_mod_fileslist(){ if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list fi + fn_print_ok "Building ${modcommand}-files.list" } fn_mod_copy_destination(){ # Destination directory: ${modinstalldir} + fn_print_dots_nl "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" cp -Rf "${extractdir}/." "${modinstalldir}/" } @@ -134,12 +141,12 @@ fn_mod_copy_destination(){ fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "" fn_print_warning_nl "${modprettyname} has already been installed." - echo " * Config files might be overwritten." + echo " * Config files, if any, might be overwritten." echo " * Press ctrl + c to abort." sleep 4 fi + fn_script_log "${modprettyname} is already installed, overwriting any file." fi } @@ -157,7 +164,7 @@ fn_mod_add_list(){ fi # Input mod name to lockfile if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "${modcommand}" >> "${modslockfilefullpath}" + echo "${modcommand}" > "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" fi } @@ -190,6 +197,7 @@ fn_postinstall_tasks(){ fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" + sleep 1 fn_script_log_info "Rearranging ${modcommand}-files.list" # What lines/files to remove from file list removefromlist="cfg;addons;" From 9cd758ea33321082af57c40b936c2b01f53aca66 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 01:26:45 +0100 Subject: [PATCH 058/185] Don't overwrite, append & less space try --- lgsm/functions/mods_core.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index aa0a2c61c..09d4e2163 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -25,7 +25,7 @@ fn_mods_dir(){ fn_print_dots "Creating mods directory" sleep 1 mkdir -p "${modinstalldir}" - fn_print_ok_nl "Created mods directory" + fn_print_ok "Created mods directory" fi } @@ -76,7 +76,7 @@ fn_mod_extract(){ fn_mod_lowercase(){ # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then - fn_print_dots_nl "Converting ${modprettyname} files to lowercase" + fn_print_dots "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase" find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" @@ -90,7 +90,7 @@ fn_remove_cfg_files(){ # Upon mods updates, config files should not be overwritten # We will just remove these files before copying the mod to the destination # Let's count how many files there are to remove - fn_print_dots_nl "Allow for preserving ${modprettyname} config files" + fn_print_dots "Allow for preserving ${modprettyname} config files" sleep 0.5 removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator @@ -118,7 +118,7 @@ fn_mod_fileslist(){ mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" fi - fn_print_dots_nl "Building ${modcommand}-files.list" + fn_print_dots "Building ${modcommand}-files.list" fn_script_log "Building ${modcommand}-files.list" # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list @@ -132,9 +132,11 @@ fn_mod_fileslist(){ fn_mod_copy_destination(){ # Destination directory: ${modinstalldir} - fn_print_dots_nl "Copying ${modprettyname} to ${modinstalldir}" + fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" cp -Rf "${extractdir}/." "${modinstalldir}/" + sleep 0.5 + fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" } # Check if the mod is already installed and warn the user @@ -164,7 +166,7 @@ fn_mod_add_list(){ fi # Input mod name to lockfile if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "${modcommand}" > "${modslockfilefullpath}" + echo "${modcommand}" >> "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" fi } From 60effd5e0f689c4d0a257b65f74cdbca70bbc461 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 02:50:28 +0100 Subject: [PATCH 059/185] installed > updated --- lgsm/functions/command_mods_update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 8a7869431..ae8222761 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -60,7 +60,7 @@ fn_mods_update_loop(){ let installedmodsline=installedmodsline+1 else echo "" - fn_print_dots "Updating ${modprettyname}" + fn_print_dots_nl "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." # Check and create required directories fn_mods_dir @@ -85,8 +85,8 @@ fn_mods_update_loop(){ fn_postinstall_tasks # Cleaning fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} installed." - fn_script_log "${modprettyname} installed." + fn_print_ok_nl "${modprettyname} updated" + fn_script_log "${modprettyname} updated." let installedmodsline=installedmodsline+1 fi else From 424cc93c284192fdbc176f36a14f036d67b266e5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 02:55:56 +0100 Subject: [PATCH 060/185] better output --- lgsm/functions/command_mods_update.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index ae8222761..6c468aa11 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -52,11 +52,8 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_info_nl "${modprettyname} won't be updated to prevent erasing custom files." - echo " * If you still wish to update this mod:" - echo " 1) Backup your critical mod files" - echo " 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" - echo " 3) Re-install the mod with ./${selfname} mods-install" + fn_print_info_nl "${modprettyname} won't be updated to preserve custom files" + fn_script_log "${modprettyname} won't be updated to preserve custom files." let installedmodsline=installedmodsline+1 else echo "" @@ -85,7 +82,7 @@ fn_mods_update_loop(){ fn_postinstall_tasks # Cleaning fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} updated" + fn_print_ok "${modprettyname} updated" fn_script_log "${modprettyname} updated." let installedmodsline=installedmodsline+1 fi From b3b0a0cb55fa50b0b43818af8388f8feed08152c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:28:00 +0100 Subject: [PATCH 061/185] Moved functions to core --- lgsm/functions/mods_list.sh | 197 ------------------------------------ 1 file changed, 197 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 24a81f262..d9288a11f 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -77,201 +77,4 @@ fn_mods_scrape_urls(){ sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" } -# Sets some gsm requirements -fn_gsm_requirements(){ - # If tmpdir variable doesn't exist, LGSM is too old - if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} - -# Define all variables from a mod at once when index is set to a separator -fn_mod_info(){ -# If for some reason no index is set, none of this can work -if [ -z "$index" ]; then - fn_print_error "index variable not set. Please report an issue to LGSM Team." - echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - core_exit.sh -fi - modcommand="${mods_global_array[index+1]}" - modprettyname="${mods_global_array[index+2]}" - modurl="${mods_global_array[index+3]}" - modfilename="${mods_global_array[index+4]}" - modsubdirs="${mods_global_array[index+5]}" - modlowercase="${mods_global_array[index+6]}" - modinstalldir="${mods_global_array[index+7]}" - modkeepfiles="${mods_global_array[index+8]}" - modengines="${mods_global_array[index+9]}" - modgames="${mods_global_array[index+10]}" - modexcludegames="${mods_global_array[index+11]}" - modsite="${mods_global_array[index+12]}" - moddescription="${mods_global_array[index+13]}" -} - - -# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable -fn_compatible_mod_games(){ - # Reset test value - modcompatiblegame="0" - # If value is set to GAMES (ignore) - if [ "${modgames}" != "GAMES" ]; then - # How many games we need to test - gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modgames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do - # Put current game name into modtest variable - gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If game name matches - if [ "${gamemodtest}" == "${gamename}" ]; then - # Mod is compatible ! - modcompatiblegame="1" - fi - done - fi -} - -# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable -fn_compatible_mod_engines(){ - # Reset test value - modcompatibleengine="0" - # If value is set to ENGINES (ignore) - if [ "${modengines}" != "ENGINES" ]; then - # How many engines we need to test - enginesamount="$(echo "${modengines}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modengines" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${enginesamount}; gamevarindex++)); do - # Put current engine name into modtest variable - enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If engine name matches - if [ "${enginemodtest}" == "${engine}" ]; then - # Mod is compatible ! - modcompatibleengine="1" - fi - done - fi -} - -# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable -fn_not_compatible_mod_games(){ - # Reset test value - modeincompatiblegame="0" - # If value is set to NOTGAMES (ignore) - if [ "${modexcludegames}" != "NOTGAMES" ]; then - # How many engines we need to test - excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modexcludegames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do - # Put current engine name into modtest variable - excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If engine name matches - if [ "${excludegamemodtest}" == "${gamename}" ]; then - # Mod is compatible ! - modeincompatiblegame="1" - fi - done - fi -} - -# Sums up if a mod is compatible or not with modcompatibility=0/1 -fn_mod_compatible_test(){ - # Test game and engine compatibility - fn_compatible_mod_games - fn_compatible_mod_engines - fn_not_compatible_mod_games - if [ "${modeincompatiblegame}" == "1" ]; then - modcompatibility="0" - elif [ "${modcompatibleengine}" == "1" ]||[ "${modcompatiblegame}" == "1" ]; then - modcompatibility="1" - else - modcompatibility="0" - fi -} - -# Checks if a mod is compatibile for installation -# Provides available mods for installation -# Provides commands for mods installation -fn_mods_available(){ - # First, reset variables - compatiblemodslist=() - availablemodscommands=() - modprettynamemaxlength="0" - modsitemaxlength="0" - moddescriptionmaxlength="0" - modcommandmaxlength="0" - # Find compatible games - # Find separators through the global array - for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do - # If current value is a separator; then - if [ "${mods_global_array[index]}" == "${modseparator}" ]; then - # Set mod variables - fn_mod_info - # Test if game is compatible - fn_mod_compatible_test - # If game is compatible - if [ "${modcompatibility}" == "1" ]; then - # Put it into the list to display to the user - compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) - # Keep available commands in an array - availablemodscommands+=( "${modcommand}" ) - fi - fi - done -} - -# Output available mods in a nice way to the user -fn_mods_show_available(){ - # Set and reset vars - compatiblemodslistindex=0 - spaces=" " - # As long as we're within index values - while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do - # Set values for convenience - displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" - displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" - displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" - displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" - # Output mods to the user - echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" - # Increment index from the amount of values we just displayed - let "compatiblemodslistindex+=4" - done - # If no mods are found - if [ -z "${compatiblemodslist}" ]; then - fn_print_fail "No mods are currently available for ${gamename}." - core_exit.sh - fi -} - -# Get details of a mod any (relevant and unique, such as full mod name or install command) value -fn_mod_get_info_from_command(){ - # Variable to know when job is done - modinfocommand="0" - # Find entry in global array - for ((index=0; index <= ${#mods_global_array[@]}; index++)); do - # When entry is found - if [ "${mods_global_array[index]}" == "${currentmod}" ]; then - # Go back to the previous "MOD" separator - for ((index=index; index <= ${#mods_global_array[@]}; index--)); do - # When "MOD" is found - if [ "${mods_global_array[index]}" == "MOD" ]; then - # Get info - fn_mod_info - modinfocommand="1" - break - fi - done - fi - # Exit the loop if job is done - if [ "${modinfocommand}" == "1" ]; then - break - fi - done -} - -fn_gsm_requirements fn_mods_scrape_urls -fn_mods_info -fn_mods_available From 609b346b9a7c0078ee20cd5a3956a1b09246cfc3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:28:10 +0100 Subject: [PATCH 062/185] moved mods_list.sh functions to core --- lgsm/functions/mods_core.sh | 200 ++++++++++++++++++++++++++++++++++++ 1 file changed, 200 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 09d4e2163..54c394cf5 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -17,6 +17,16 @@ modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" +# Sets some gsm requirements +fn_gsm_requirements(){ + # If tmpdir variable doesn't exist, LGSM is too old + if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + # Create mods directory if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_dir(){ @@ -216,3 +226,193 @@ fn_postinstall_tasks(){ done fn_print_ok "Rearranging ${modcommand}-files.list" } + +## mods_list.sh arrays + +# Define all variables from a mod at once when index is set to a separator +fn_mod_info(){ +# If for some reason no index is set, none of this can work +if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue to LGSM Team." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + core_exit.sh +fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubdirs="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" +} + + +# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable +fn_compatible_mod_games(){ + # Reset test value + modcompatiblegame="0" + # If value is set to GAMES (ignore) + if [ "${modgames}" != "GAMES" ]; then + # How many games we need to test + gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modgames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do + # Put current game name into modtest variable + gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If game name matches + if [ "${gamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modcompatiblegame="1" + fi + done + fi +} + +# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable +fn_compatible_mod_engines(){ + # Reset test value + modcompatibleengine="0" + # If value is set to ENGINES (ignore) + if [ "${modengines}" != "ENGINES" ]; then + # How many engines we need to test + enginesamount="$(echo "${modengines}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modengines" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${enginesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${enginemodtest}" == "${engine}" ]; then + # Mod is compatible ! + modcompatibleengine="1" + fi + done + fi +} + +# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable +fn_not_compatible_mod_games(){ + # Reset test value + modeincompatiblegame="0" + # If value is set to NOTGAMES (ignore) + if [ "${modexcludegames}" != "NOTGAMES" ]; then + # How many engines we need to test + excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modexcludegames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${excludegamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modeincompatiblegame="1" + fi + done + fi +} + +# Sums up if a mod is compatible or not with modcompatibility=0/1 +fn_mod_compatible_test(){ + # Test game and engine compatibility + fn_compatible_mod_games + fn_compatible_mod_engines + fn_not_compatible_mod_games + if [ "${modeincompatiblegame}" == "1" ]; then + modcompatibility="0" + elif [ "${modcompatibleengine}" == "1" ]||[ "${modcompatiblegame}" == "1" ]; then + modcompatibility="1" + else + modcompatibility="0" + fi +} + +# Checks if a mod is compatibile for installation +# Provides available mods for installation +# Provides commands for mods installation +fn_mods_available(){ + # First, reset variables + compatiblemodslist=() + availablemodscommands=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" + # Find compatible games + # Find separators through the global array + for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do + # If current value is a separator; then + if [ "${mods_global_array[index]}" == "${modseparator}" ]; then + # Set mod variables + fn_mod_info + # Test if game is compatible + fn_mod_compatible_test + # If game is compatible + if [ "${modcompatibility}" == "1" ]; then + # Put it into an array to prepare user output + compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) + # Keep available commands in an array to make life easier + availablemodscommands+=( "${modcommand}" ) + fi + fi + done +} + +# Output available mods in a nice way to the user +fn_mods_show_available(){ + # Set and reset vars + compatiblemodslistindex=0 + spaces=" " + # As long as we're within index values + while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do + # Set values for convenience + displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" + displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" + displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" + displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" + # Output mods to the user + echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" + # Increment index from the amount of values we just displayed + let "compatiblemodslistindex+=4" + done + # If no mods are found + if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + core_exit.sh + fi +} + +# Get details of a mod any (relevant and unique, such as full mod name or install command) value +fn_mod_get_info_from_command(){ + # Variable to know when job is done + modinfocommand="0" + # Find entry in global array + for ((index=0; index <= ${#mods_global_array[@]}; index++)); do + # When entry is found + if [ "${mods_global_array[index]}" == "${currentmod}" ]; then + # Go back to the previous "MOD" separator + for ((index=index; index <= ${#mods_global_array[@]}; index--)); do + # When "MOD" is found + if [ "${mods_global_array[index]}" == "MOD" ]; then + # Get info + fn_mod_info + modinfocommand="1" + break + fi + done + fi + # Exit the loop if job is done + if [ "${modinfocommand}" == "1" ]; then + break + fi + done +} + +fn_gsm_requirements +fn_mods_info +fn_mods_available From 7cadebbe5b62e7eb357f3e196e2a54c16f28befd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:53:12 +0100 Subject: [PATCH 063/185] move to core --- lgsm/functions/mods_list.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index d9288a11f..e99ff2214 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -76,5 +76,3 @@ fn_mods_scrape_urls(){ sourcemodfasterurl="http://cdn.probablyaserver.com/sourcemod/" sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" } - -fn_mods_scrape_urls From 3bfde779a1a863884362e23ce36e17b3691763f6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:54:24 +0100 Subject: [PATCH 064/185] moves & fixes running functions --- lgsm/functions/mods_core.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 54c394cf5..dcb50a400 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -16,6 +16,8 @@ extractdir="${modstmpdir}/extracted" modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" +# Database initialization +mods_list.sh # Sets some gsm requirements fn_gsm_requirements(){ @@ -415,4 +417,5 @@ fn_mod_get_info_from_command(){ fn_gsm_requirements fn_mods_info +fn_mods_scrape_urls fn_mods_available From 7c29d0c38334db02992dd4322c74e78f8a6a913e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 04:00:33 +0100 Subject: [PATCH 065/185] scrape_urls goes first, right --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index dcb50a400..efdcec31f 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -416,6 +416,6 @@ fn_mod_get_info_from_command(){ } fn_gsm_requirements -fn_mods_info fn_mods_scrape_urls +fn_mods_info fn_mods_available From cdd78a9c0753d5848ffdc4e8f5131963dade7494 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 04:12:25 +0100 Subject: [PATCH 066/185] Mods update conclusion --- lgsm/functions/command_mods_update.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 6c468aa11..19eb449cf 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -92,6 +92,9 @@ fn_mods_update_loop(){ core_exit.sh fi done + echo "" + fn_print_ok_nl "Mods update complete" + fn_script_log "Mods update complete." } fn_mods_update_init From a3501e6544708a206e0fcb45fd798bf09f05e79d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 05:05:41 +0100 Subject: [PATCH 067/185] Remove metamod dir from sourcemod file list --- lgsm/functions/mods_core.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index efdcec31f..d55b84631 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -226,6 +226,13 @@ fn_postinstall_tasks(){ # Then delete matching line(s)! sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" done + # Sourcemod fix + # Remove metamod from sourcemod fileslist + if [ "${modcommand}" == "sourcemod" ]; then + # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.list + sed -i "/^addons/metamod$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^addons/metamod/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" + fi fn_print_ok "Rearranging ${modcommand}-files.list" } From bee22481997cf49e579364bde5be7d8aa31576c9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 05:26:10 +0100 Subject: [PATCH 068/185] Escape slashes in sed --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index d55b84631..78de67a96 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -230,8 +230,8 @@ fn_postinstall_tasks(){ # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.list - sed -i "/^addons/metamod$/d" "${modsdatadir}/${modcommand}-files.list" - sed -i "/^addons/metamod/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" fi fn_print_ok "Rearranging ${modcommand}-files.list" } From 57b5374078d5fec3b400000097d2ab84e758c735 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 19:23:45 +0100 Subject: [PATCH 069/185] fn_mods_remove_init --- lgsm/functions/command_mods_remove.sh | 54 +++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index c2bb35f48..6e7abc531 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -8,3 +8,57 @@ local commandname="MODS" local commandaction="Mod Remove" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh +mods_core.sh +mods_list.sh + +fn_mods_remove_init(){ + fn_script_log "Entering mods & addons removal" + echo "=================================" + echo "${gamename} mods & addons update" + echo "" + # Installed mod dir is "${modslockfilefullpath}" + # How many mods are installed + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # If no mods to be updated + if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then + fn_print_information_nl "No mods or addons to remove" + echo " * Did you install any mod using LGSM?" + fn_scrip_log_info "No mods or addons to remove." + core_exit.sh + fi + # Build installed mods list and display to the user. + installedmodsline=1 + availablemodsremove=() + while [ $installedmodsline -le $installedmodscount ]; do + availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath})" ) + echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" + let installedmodsline=installedmodsline+1 + done + sleep 2 + + # Keep prompting as long as the user input doesn't correspond to an available mod + while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do + echo -en "Enter a \e[36mmod\e[0m to ${red}remove${default} (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 [[ ! " ${availablemodsremove[@]} " =~ " ${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 "Removing ${modprettyname}" + sleep 1 + fn_script_log "Removing ${modprettyname}." +} + +fn_mods_remove_init From 90a795adaa31fc9782520eeeba3182ba10cb0d54 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 19:28:43 +0100 Subject: [PATCH 070/185] one fix --- lgsm/functions/command_mods_remove.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 6e7abc531..f72e3b385 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -30,9 +30,9 @@ fn_mods_remove_init(){ fi # Build installed mods list and display to the user. installedmodsline=1 - availablemodsremove=() + availablemodsremove=() while [ $installedmodsline -le $installedmodscount ]; do - availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath})" ) + availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" let installedmodsline=installedmodsline+1 done @@ -40,7 +40,7 @@ fn_mods_remove_init(){ # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a \e[36mmod\e[0m to ${red}remove${default} (or exit to abort): " + echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " read -r usermodselect # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then From b8fc80443ecd4374b8368426cef45eac4bc7c9c5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 19:49:18 +0100 Subject: [PATCH 071/185] tabs and line jump --- lgsm/functions/command_mods_remove.sh | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index f72e3b385..e86fefedf 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -36,22 +36,23 @@ fn_mods_remove_init(){ echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" let installedmodsline=installedmodsline+1 done - sleep 2 + echo "" + sleep 1 - # Keep prompting as long as the user input doesn't correspond to an available mod + # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (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 + echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (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 [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; then + elif [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid mod." echo " * Enter a valid mod or input exit to abort." - fi + fi done # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" From efa647966cc19a6dc40fbdf8176a6944c1d4e3da Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:13:54 +0100 Subject: [PATCH 072/185] Trying mod remove process --- lgsm/functions/command_mods_remove.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index e86fefedf..f761210f5 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -62,4 +62,26 @@ fn_mods_remove_init(){ fn_script_log "Removing ${modprettyname}." } +fn_mod_remove_process(){ + # Check file list in order to make sure we're able to remove the mod + # Returns ${modsfilelistsize} + fn_check_files_list + modfileline="1" + while [ $modfileline -le $modsfilelistsize ]; do + # Current line defines current mod command + currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -f "${modinstalldir}/${currentfileremove}" ]; then + rm -rfv "${currentfileremove}" + fi + let installedmodsline=installedmodsline+1 + done + # Remove file list + rm -rfv "${modsdatadir}/${modcommand}-files.list" + # Remove from installed mods list + sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" + fn_print_ok_nl "Removed ${modprettyname}" + fn_script_log "Removed ${modprettyname}" +} + fn_mods_remove_init +fn_mod_remove_process From 0b3da9d2d3f2a81cf331a3ce6eb9cf18f0453ed5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:17:20 +0100 Subject: [PATCH 073/185] woops --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index f761210f5..eeb00f2ed 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -73,7 +73,7 @@ fn_mod_remove_process(){ if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -f "${modinstalldir}/${currentfileremove}" ]; then rm -rfv "${currentfileremove}" fi - let installedmodsline=installedmodsline+1 + let modfileline=modfileline+1 done # Remove file list rm -rfv "${modsdatadir}/${modcommand}-files.list" From ac58e6eddb9f889a7a8fc02665fdb05c43717fc8 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:26:14 +0100 Subject: [PATCH 074/185] =?UTF-8?q?woops=C2=B2=20should=20remove=20mods=20?= =?UTF-8?q?now?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lgsm/functions/command_mods_remove.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index eeb00f2ed..43a8ddae5 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -70,8 +70,8 @@ fn_mod_remove_process(){ while [ $modfileline -le $modsfilelistsize ]; do # Current line defines current mod command currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" - if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -f "${modinstalldir}/${currentfileremove}" ]; then - rm -rfv "${currentfileremove}" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then + rm -rfv "${modinstalldir}/${currentfileremove}" fi let modfileline=modfileline+1 done From 86186dc90ba195a9cb5d1d6c3b6a28a646ca614e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:38:12 +0100 Subject: [PATCH 075/185] Various improvements --- lgsm/functions/command_mods_remove.sh | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 43a8ddae5..dcaa572c3 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -57,27 +57,30 @@ fn_mods_remove_init(){ # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command - fn_print_dots_nl "Removing ${modprettyname}" - sleep 1 - fn_script_log "Removing ${modprettyname}." + # Returns ${modsfilelistsize} + fn_check_files_list + fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" + fn_print_dots_nl "Removing ${modsfilelistsize} files from ${modprettyname}" + sleep 4 } fn_mod_remove_process(){ # Check file list in order to make sure we're able to remove the mod - # Returns ${modsfilelistsize} - fn_check_files_list modfileline="1" while [ $modfileline -le $modsfilelistsize ]; do # Current line defines current mod command currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then - rm -rfv "${modinstalldir}/${currentfileremove}" + fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" + rm -rf "${modinstalldir}/${currentfileremove}" fi let modfileline=modfileline+1 done # Remove file list - rm -rfv "${modsdatadir}/${modcommand}-files.list" + fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.list" + rm -rf "${modsdatadir}/${modcommand}-files.list" # Remove from installed mods list + fn_script_log "Removing: ${modcommand} from "${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" fn_print_ok_nl "Removed ${modprettyname}" fn_script_log "Removed ${modprettyname}" From 5c4baae75c08e082dcbf4cb36cd705a56d1a35d0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:40:28 +0100 Subject: [PATCH 076/185] removed wrongly c/pasted double quote --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index dcaa572c3..74cbbac0d 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -80,7 +80,7 @@ fn_mod_remove_process(){ fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.list" rm -rf "${modsdatadir}/${modcommand}-files.list" # Remove from installed mods list - fn_script_log "Removing: ${modcommand} from "${modslockfilefullpath}" + fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" fn_print_ok_nl "Removed ${modprettyname}" fn_script_log "Removed ${modprettyname}" From ce9702227d3295c99e7ec1360fb2c93596c3c14d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:42:48 +0100 Subject: [PATCH 077/185] message --- lgsm/functions/command_mods_remove.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 74cbbac0d..4684a0d96 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -61,6 +61,8 @@ fn_mods_remove_init(){ fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots_nl "Removing ${modsfilelistsize} files from ${modprettyname}" + echo " * Any mod's custom file will be deleted." + echo " * Press ctrl + c to abort." sleep 4 } From 86bb4381c9c445a2698ef674b4e72537e4716ede Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:44:31 +0100 Subject: [PATCH 078/185] fn_scrip_log_info don't exist --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 19eb449cf..7e2bc6612 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -25,7 +25,7 @@ fn_mods_update_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to be updated" echo " * Did you install any mod using LGSM?" - fn_scrip_log_info "No mods or addons to be updated" + fn_scrip_log "No mods or addons to be updated" core_exit.sh else fn_print_information_nl "${installedmodscount} mods or addons will be updated:" From 83b6d2d07f1d09339b3721bbd4554e68fe38ffbf Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:45:12 +0100 Subject: [PATCH 079/185] fn_scrip_log_info don't exist > fn_script_log_info --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 4684a0d96..3f2021c70 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -25,7 +25,7 @@ fn_mods_remove_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to remove" echo " * Did you install any mod using LGSM?" - fn_scrip_log_info "No mods or addons to remove." + fn_script_log_info "No mods or addons to remove." core_exit.sh fi # Build installed mods list and display to the user. From fc112a27aaf8568353100b32aec55f611a08371b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:45:36 +0100 Subject: [PATCH 080/185] scrip > script --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 7e2bc6612..62528446f 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -25,7 +25,7 @@ fn_mods_update_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to be updated" echo " * Did you install any mod using LGSM?" - fn_scrip_log "No mods or addons to be updated" + fn_script_log_info "No mods or addons to be updated" core_exit.sh else fn_print_information_nl "${installedmodscount} mods or addons will be updated:" From 63373a6ce07a5a59c4ecef73c2fa799e44f0d528 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:49:00 +0100 Subject: [PATCH 081/185] no end line dot --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 62528446f..c737d2a4a 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -87,7 +87,7 @@ fn_mods_update_loop(){ let installedmodsline=installedmodsline+1 fi else - fn_print_fail "No mod was selected." + fn_print_fail "No mod was selected" fn_script_log_fail "No mod was selected." core_exit.sh fi From a9a72af1aa58a4f7aab33aba82559c24f203ece4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:49:16 +0100 Subject: [PATCH 082/185] no end line dot --- lgsm/functions/command_mods_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 6a3e05b20..dc3c497cc 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -73,10 +73,10 @@ fn_mod_installation(){ fn_postinstall_tasks # Cleaning fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} installed." + fn_print_ok_nl "${modprettyname} installed" fn_script_log "${modprettyname} installed." else - fn_print_fail "No mod was selected." + fn_print_fail "No mod was selected" core_exit.sh fi } From 26bf25619b832ff3d9f57753b041b9ebaf717934 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:57:18 +0100 Subject: [PATCH 083/185] no nl for dots --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 3f2021c70..889c6dfb6 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -60,7 +60,7 @@ fn_mods_remove_init(){ # Returns ${modsfilelistsize} fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" - fn_print_dots_nl "Removing ${modsfilelistsize} files from ${modprettyname}" + fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" echo " * Any mod's custom file will be deleted." echo " * Press ctrl + c to abort." sleep 4 From 5295bd94fed851c7cb3f8e2366887c103a114f4d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:59:10 +0100 Subject: [PATCH 084/185] removal --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 889c6dfb6..642e472d3 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -16,7 +16,7 @@ mods_list.sh fn_mods_remove_init(){ fn_script_log "Entering mods & addons removal" echo "=================================" - echo "${gamename} mods & addons update" + echo "${gamename} mods & addons removal" echo "" # Installed mod dir is "${modslockfilefullpath}" # How many mods are installed From f042aee9f55919ed1b241f81c76dc39604f27248 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:00:49 +0100 Subject: [PATCH 085/185] no need for sleep --- lgsm/functions/command_mods_remove.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 642e472d3..4d67f6d81 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -37,8 +37,6 @@ fn_mods_remove_init(){ let installedmodsline=installedmodsline+1 done echo "" - sleep 1 - # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " From 142b02d17ec5f8f6caf216b8f9cbe361a2abbdae Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:04:53 +0100 Subject: [PATCH 086/185] dots & sleep --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 78de67a96..bc02b1442 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -149,13 +149,14 @@ fn_mod_copy_destination(){ cp -Rf "${extractdir}/." "${modinstalldir}/" sleep 0.5 fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" + sleep 0.5 } # Check if the mod is already installed and warn the user fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - fn_print_warning_nl "${modprettyname} has already been installed." + fn_print_warning_nl "${modprettyname} has already been installed" echo " * Config files, if any, might be overwritten." echo " * Press ctrl + c to abort." sleep 4 From bae4085e194b170fd796f84d69a12c89c156b8ea Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:12:12 +0100 Subject: [PATCH 087/185] sleep times --- lgsm/functions/mods_core.sh | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index bc02b1442..c0765d25a 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -35,9 +35,10 @@ fn_mods_dir(){ if [ ! -d "${modinstalldir}" ]; then fn_script_log_info "Creating mods directory: ${modinstalldir}" fn_print_dots "Creating mods directory" - sleep 1 + sleep 0.5 mkdir -p "${modinstalldir}" fn_print_ok "Created mods directory" + sleep 0.5 fi } @@ -89,10 +90,11 @@ fn_mod_lowercase(){ # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then fn_print_dots "Converting ${modprettyname} files to lowercase" + sleep 0.5 fn_script_log "Converting ${modprettyname} files to lowercase" find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" - sleep 1 + sleep 0.5 fi } @@ -121,6 +123,7 @@ fn_remove_cfg_files(){ fi done fn_print_ok "Allow for preserving ${modprettyname} config files" + sleep 0.5 fi } @@ -132,6 +135,7 @@ fn_mod_fileslist(){ fi fn_print_dots "Building ${modcommand}-files.list" fn_script_log "Building ${modcommand}-files.list" + sleep 0.5 # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" @@ -140,14 +144,15 @@ fn_mod_fileslist(){ cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list fi fn_print_ok "Building ${modcommand}-files.list" + sleep 0.5 } fn_mod_copy_destination(){ # Destination directory: ${modinstalldir} fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" - cp -Rf "${extractdir}/." "${modinstalldir}/" sleep 0.5 + cp -Rf "${extractdir}/." "${modinstalldir}/" fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 } @@ -157,9 +162,10 @@ fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then fn_print_warning_nl "${modprettyname} has already been installed" + sleep 1 echo " * Config files, if any, might be overwritten." echo " * Press ctrl + c to abort." - sleep 4 + sleep 3 fi fn_script_log "${modprettyname} is already installed, overwriting any file." fi @@ -212,7 +218,7 @@ fn_postinstall_tasks(){ fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" - sleep 1 + sleep 0.5 fn_script_log_info "Rearranging ${modcommand}-files.list" # What lines/files to remove from file list removefromlist="cfg;addons;" @@ -235,6 +241,7 @@ fn_postinstall_tasks(){ sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" fi fn_print_ok "Rearranging ${modcommand}-files.list" + sleep 0.5 } ## mods_list.sh arrays From b85a1bb18e566502c526e4d7423ce1762feee5ec Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:23:10 +0100 Subject: [PATCH 088/185] try replacing cat with sed --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c0765d25a..796567109 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -160,7 +160,8 @@ fn_mod_copy_destination(){ # Check if the mod is already installed and warn the user fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + + if [ -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then fn_print_warning_nl "${modprettyname} has already been installed" sleep 1 echo " * Config files, if any, might be overwritten." From 99c29531f39d37a43893ccac7f7c8de390f71b8f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:30:01 +0100 Subject: [PATCH 089/185] replace with sed again --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 796567109..e3028f7db 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -185,7 +185,7 @@ fn_mod_add_list(){ fn_script_log "Created ${modslockfilefullpath}" fi # Input mod name to lockfile - if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then echo "${modcommand}" >> "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" fi From 369416ff62153ea2dfdded479ff0bf2ff371e840 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 23:07:00 +0100 Subject: [PATCH 090/185] missing echo --- lgsm/functions/command_mods_remove.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 4d67f6d81..054e0cf20 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -59,6 +59,7 @@ fn_mods_remove_init(){ fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" + echo "" echo " * Any mod's custom file will be deleted." echo " * Press ctrl + c to abort." sleep 4 From edb4d40f3844e9fbe21dd3f9a28d4ba8cefc13d8 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:11:13 +0100 Subject: [PATCH 091/185] polishing --- lgsm/functions/mods_core.sh | 69 ++++++++++++++++++++----------------- 1 file changed, 37 insertions(+), 32 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index e3028f7db..b466340b0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -29,9 +29,9 @@ fn_gsm_requirements(){ fi } -# Create mods directory if it doesn't exist +# Create mods files and directories if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. -fn_mods_dir(){ +fn_mods_files(){ if [ ! -d "${modinstalldir}" ]; then fn_script_log_info "Creating mods directory: ${modinstalldir}" fn_print_dots "Creating mods directory" @@ -40,6 +40,16 @@ fn_mods_dir(){ fn_print_ok "Created mods directory" sleep 0.5 fi + # Create lgsm/data/mods directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi + # Create lgsm/data/${modslockfile} + if [ ! -f "${modslockfilefullpath}" ]; then + touch "${modslockfilefullpath}" + fn_script_log "Created ${modslockfilefullpath}" + fi } # Clear mod download directory so that there is only one file in it since we don't the file name and extention @@ -62,6 +72,7 @@ fn_mods_tmpdir(){ fi } +# Fetches mod URL fn_mod_dl(){ # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fileurl="${modurl}" @@ -76,6 +87,7 @@ fn_mod_dl(){ fi } +# Extract the mod fn_mod_extract(){ # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" filename="${modfilename}" @@ -86,8 +98,8 @@ fn_mod_extract(){ fn_dl_extract "${filedir}" "${filename}" "${extractdir}" } +# Convert mod files to lowercase if needed fn_mod_lowercase(){ - # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then fn_print_dots "Converting ${modprettyname} files to lowercase" sleep 0.5 @@ -98,24 +110,24 @@ fn_mod_lowercase(){ fi } +# Don't overwrite specified files upon update (set by ${modkeepfiles}) +# For that matter, remove cfg files after extraction before copying them to destination fn_remove_cfg_files(){ - # Remove config file after extraction for updates set by ${modkeepfiles} if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - # Upon mods updates, config files should not be overwritten - # We will just remove these files before copying the mod to the destination - # Let's count how many files there are to remove - fn_print_dots "Allow for preserving ${modprettyname} config files" + fn_print_dots "Allow for not overwriting ${modprettyname} config files" + fn_script_log "Allow for not overwriting ${modprettyname} config files" sleep 0.5 + # Let's count how many files there are to remove removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modgames" using the ";" separator + # Test all subvalue of "modkeepfiles" using the ";" separator for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do # Put current file we're looking for into a variable filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" # If it matches an existing file that have been extracted if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then # Then delete the file! - rm -R "${extractdir}/${filetoremove}" - # Write this file path in a tmp file, to rebuild a full file list + rm -r "${extractdir}/${filetoremove}" + # Write this file path in a tmp file, to rebuild a full file list since it is rebuilt upon update if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi @@ -127,12 +139,8 @@ fn_remove_cfg_files(){ fi } +# Create ${modcommand}-files.list containing the full extracted file/directory list fn_mod_fileslist(){ - # Create lgsm/data/mods directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" - fi fn_print_dots "Building ${modcommand}-files.list" fn_script_log "Building ${modcommand}-files.list" sleep 0.5 @@ -147,8 +155,8 @@ fn_mod_fileslist(){ sleep 0.5 } +# Copy the mod to the destination ${modinstalldir} fn_mod_copy_destination(){ - # Destination directory: ${modinstalldir} fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 @@ -160,7 +168,6 @@ fn_mod_copy_destination(){ # Check if the mod is already installed and warn the user fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then fn_print_warning_nl "${modprettyname} has already been installed" sleep 1 @@ -174,17 +181,7 @@ fn_mod_already_installed(){ # Add the mod to the installed mods list fn_mod_add_list(){ - # Create lgsm/data/mods directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" - fi - # Create lgsm/data/${modslockfile} - if [ ! -f "${modslockfilefullpath}" ]; then - touch "${modslockfilefullpath}" - fn_script_log "Created ${modslockfilefullpath}" - fi - # Input mod name to lockfile + # Append modname to lockfile if it's not already in it if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then echo "${modcommand}" >> "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" @@ -213,15 +210,16 @@ fn_check_files_list(){ fi } +# Apply some postinstall fixes to make sure everything will be fine fn_postinstall_tasks(){ - # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list + # Prevent sensitive directories from being erased upon uninstall by removing them them from: ${modsdatadir}/${modcommand}-files.list # Check file validity fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" sleep 0.5 fn_script_log_info "Rearranging ${modcommand}-files.list" - # What lines/files to remove from file list + # What lines/files to remove from file list (end var with a ";" separator) removefromlist="cfg;addons;" # Loop through files to remove from file list, # that way these files won't get removed upon uninstall @@ -234,6 +232,7 @@ fn_postinstall_tasks(){ # Then delete matching line(s)! sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" done + # Sourcemod fix # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then @@ -245,7 +244,11 @@ fn_postinstall_tasks(){ sleep 0.5 } -## mods_list.sh arrays +######################### +## mods_list.sh arrays ## +######################### + +## Define info for a mod # Define all variables from a mod at once when index is set to a separator fn_mod_info(){ @@ -253,6 +256,7 @@ fn_mod_info(){ if [ -z "$index" ]; then fn_print_error "index variable not set. Please report an issue to LGSM Team." echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + exitcode="1" core_exit.sh fi modcommand="${mods_global_array[index+1]}" @@ -270,6 +274,7 @@ fi moddescription="${mods_global_array[index+13]}" } +## Mod compatibility check # Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable fn_compatible_mod_games(){ From acdfafe4baca25105139f6b54120f795bbd5b185 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:12:48 +0100 Subject: [PATCH 092/185] polishing --- lgsm/functions/mods_list.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index e99ff2214..08d6805d8 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -24,13 +24,13 @@ fn_mods_info(){ # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) # None of those values can be empty - # [index] | Usage + # index | Usage # [0] | MOD: separator, all mods must begin with it # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) # [4] | "filename": the output filename - # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) + # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating @@ -64,6 +64,7 @@ fn_mods_info(){ # Get a proper URL for mods that don't provide a good one (optional) fn_mods_scrape_urls(){ + fn_script_log "Retriving latest mods URLs" # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" From 821db9741798a4129c5764fef3159545947e6824 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:17:03 +0100 Subject: [PATCH 093/185] Polishing --- lgsm/functions/command_mods_install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index dc3c497cc..219f00908 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -11,7 +11,6 @@ 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" @@ -52,8 +51,8 @@ fn_mod_installation(){ fn_mod_get_info_from_command # Check if mod is already installed fn_mod_already_installed - # Check and create required directories - fn_mods_dir + # Check and create required files + fn_mods_files # Clear lgsm/tmp/mods dir if exists then recreate it fn_clear_tmp_mods fn_mods_tmpdir @@ -77,9 +76,11 @@ fn_mod_installation(){ fn_script_log "${modprettyname} installed." else fn_print_fail "No mod was selected" + exitcode="1" core_exit.sh fi } fn_mods_install_init fn_mod_installation +core_exit.sh From c3924fa16ddda494663d0ccfc8350741bcd65d04 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:23:29 +0100 Subject: [PATCH 094/185] Polishing --- lgsm/functions/command_mods_remove.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 054e0cf20..3404f2feb 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Uninstall mods along with mods_list.sh. +# Description: Uninstall mods along with mods_list.sh and mods_core.sh. local commandname="MODS" local commandaction="Mod Remove" @@ -11,7 +11,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh -mods_list.sh fn_mods_remove_init(){ fn_script_log "Entering mods & addons removal" @@ -55,7 +54,7 @@ fn_mods_remove_init(){ # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command - # Returns ${modsfilelistsize} + # Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize}) fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" @@ -65,12 +64,14 @@ fn_mods_remove_init(){ sleep 4 } +# Uninstall the mod fn_mod_remove_process(){ - # Check file list in order to make sure we're able to remove the mod + # Go through every file and remove it modfileline="1" while [ $modfileline -le $modsfilelistsize ]; do - # Current line defines current mod command + # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" + # If file or directory exists, then remove it if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" rm -rf "${modinstalldir}/${currentfileremove}" @@ -89,3 +90,4 @@ fn_mod_remove_process(){ fn_mods_remove_init fn_mod_remove_process +core_exit.sh From 77c42746ccda457444d6b19e7b84891b05b99bff Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:23:47 +0100 Subject: [PATCH 095/185] Polishing --- lgsm/functions/command_mods_update.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index c737d2a4a..40250a58d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -11,7 +11,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh -mods_list.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" @@ -59,8 +58,8 @@ fn_mods_update_loop(){ echo "" fn_print_dots_nl "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." - # Check and create required directories - fn_mods_dir + # Check and create required files + fn_mods_files # Clear lgsm/tmp/mods dir if exists then recreate it fn_clear_tmp_mods fn_mods_tmpdir @@ -89,6 +88,7 @@ fn_mods_update_loop(){ else fn_print_fail "No mod was selected" fn_script_log_fail "No mod was selected." + exitcode="1" core_exit.sh fi done @@ -99,3 +99,4 @@ fn_mods_update_loop(){ fn_mods_update_init fn_mods_update_loop +core_exit.sh From 6a5bad9db2b4e2abb0b4ed8b964cd20f4d2d2786 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:41:48 +0100 Subject: [PATCH 096/185] Validate after Oxide uninstall --- lgsm/functions/mods_core.sh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b466340b0..b6f36b26d 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -210,7 +210,7 @@ fn_check_files_list(){ fi } -# Apply some postinstall fixes to make sure everything will be fine +# Apply some post-install fixes to make sure everything will be fine fn_postinstall_tasks(){ # Prevent sensitive directories from being erased upon uninstall by removing them them from: ${modsdatadir}/${modcommand}-files.list # Check file validity @@ -244,6 +244,18 @@ fn_postinstall_tasks(){ sleep 0.5 } +# Apply some post-uninstall fixes to make sure everything will be fine + +fn_postuninstall_tasks(){ + # Oxide fix + # Oxide replaces server files, so a validate is required after uninstall + if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then + fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" + fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" + command_validate.sh + fi +} + ######################### ## mods_list.sh arrays ## ######################### From ea37fc9b684e340a59677b5b0c016f9361e7f710 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:42:47 +0100 Subject: [PATCH 097/185] validate after remove oxide --- lgsm/functions/command_mods_remove.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 3404f2feb..67b4e7f1d 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -84,6 +84,8 @@ fn_mod_remove_process(){ # Remove from installed mods list fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" + # Post install tasks to solve potential issues + fn_postuninstall_tasks fn_print_ok_nl "Removed ${modprettyname}" fn_script_log "Removed ${modprettyname}" } From e38afe11ba2a7ad244a2f29c37e6770ea722f925 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:50:01 +0100 Subject: [PATCH 098/185] exitbypass --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b6f36b26d..fbfa9e5db 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -245,14 +245,15 @@ fn_postinstall_tasks(){ } # Apply some post-uninstall fixes to make sure everything will be fine - fn_postuninstall_tasks(){ # Oxide fix # Oxide replaces server files, so a validate is required after uninstall if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" + exitbypass="1" command_validate.sh + unset exitbypass fi } From 88c70c99288c0a60ac4f0a867c30930efd6b77e5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:55:59 +0100 Subject: [PATCH 099/185] Validate fix Fixes Fixes #991 for validate command Also, it lacked a line jump. --- lgsm/functions/command_validate.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 6125ed513..3627acdb6 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -9,6 +9,7 @@ local commandaction="Validate" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_validation(){ + echo "" echo -e " * Validating may overwrite some customised files." echo -en " * https://developer.valvesoftware.com/wiki/SteamCMD#Validate" sleep 3 @@ -19,7 +20,9 @@ fn_validation(){ cd "${rootdir}/steamcmd" - if [ $(command -v stdbuf) ]; then + # Detects if unbuffer command is available for 32 bit distributions only. + info_distro.sh + if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then unbuffer="stdbuf -i0 -o0 -e0" fi From 213ab5ee0859248ca49eeb72d9200c4703a27f91 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2017 21:17:30 +0000 Subject: [PATCH 100/185] fixes unary operator expected --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index 7355c840c..b1db1b8fd 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -117,7 +117,7 @@ fn_fetch_file(){ # trap to remove part downloaded files trap fn_fetch_trap INT # if larger file shows progress bar - if [ ${filename##*.} == "bz2" ]||[ ${filename##*.} == "gz" ]||[ ${filename##*.} == "zip" ]||[ ${filename##*.} == "jar" ]; then + if [ "${filename##*.}" == "bz2" ]||[ "${filename##*.}" == "gz" ]||[ "${filename##*.}" == "zip" ]||[ "${filename##*.}" == "jar" ]; then echo -ne "downloading ${filename}..." sleep 1 curlcmd=$(${curlcmd} --progress-bar --fail -L -o "${filedir}/${filename}" "${fileurl}") From 6409a07af93ab4ef9b4506326404123659e2f95b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2017 21:17:42 +0000 Subject: [PATCH 101/185] removed tabs --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index fbfa9e5db..813db7e8c 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -67,8 +67,8 @@ fn_clear_tmp_mods(){ # Create tmp download mod directory fn_mods_tmpdir(){ if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - fn_script_log "Creating temp mod download directory: ${modstmpdir}" + mkdir -p "${modstmpdir}" + fn_script_log "Creating temp mod download directory: ${modstmpdir}" fi } From 0546be54d287cfc961e267dbc0802a00f0a0fb4a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 18 Jan 2017 23:29:17 +0100 Subject: [PATCH 102/185] Attempt for installed mods list --- lgsm/functions/mods_core.sh | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 813db7e8c..e6d78ede0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -402,7 +402,6 @@ fn_mods_available(){ fn_mods_show_available(){ # Set and reset vars compatiblemodslistindex=0 - spaces=" " # As long as we're within index values while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do # Set values for convenience @@ -423,6 +422,23 @@ fn_mods_show_available(){ fi } + +# Builds installed mods list and display it to the user. +fn_installed_mods_list(){ + # Set variables + installedmodsline=1 + installedmodslist=() + while [ $installedmodsline -le $installedmodscount ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )"" + installedmodslist+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) + fn_mod_get_info_from_command + echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" + let installedmodsline=installedmodsline+1 + done + echo "" +} + # Get details of a mod any (relevant and unique, such as full mod name or install command) value fn_mod_get_info_from_command(){ # Variable to know when job is done From 3853dd36cd3c31322abe91ded943a28e34985c0a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 18 Jan 2017 23:30:45 +0100 Subject: [PATCH 103/185] attempd for new mods remove list --- lgsm/functions/command_mods_remove.sh | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 67b4e7f1d..bf0d13f7c 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -27,17 +27,10 @@ fn_mods_remove_init(){ fn_script_log_info "No mods or addons to remove." core_exit.sh fi - # Build installed mods list and display to the user. - installedmodsline=1 - availablemodsremove=() - while [ $installedmodsline -le $installedmodscount ]; do - availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) - echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" - let installedmodsline=installedmodsline+1 - done - echo "" + # Displays installed addons to the user + fn_installed_mods_list # Keep prompting as long as the user input doesn't correspond to an available mod - while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do + while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " read -r usermodselect # Exit if user says exit or abort @@ -46,7 +39,7 @@ fn_mods_remove_init(){ echo "Aborted." core_exit.sh # Supplementary output upon invalid user input - elif [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; then + elif [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid mod." echo " * Enter a valid mod or input exit to abort." fi From f645ace2433b39d1a82bf10c36831567f9c67c73 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 18 Jan 2017 23:55:37 +0100 Subject: [PATCH 104/185] () lolilol --- lgsm/functions/mods_core.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index e6d78ede0..91ef10dc7 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -422,15 +422,14 @@ fn_mods_show_available(){ fi } - # Builds installed mods list and display it to the user. fn_installed_mods_list(){ # Set variables - installedmodsline=1 + installedmodsline="1" installedmodslist=() while [ $installedmodsline -le $installedmodscount ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )"" - installedmodslist+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + installedmodslist+="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" echo -e " * \e[36m${displayedmodcommand}\e[0m" From 11174b4ed887be31b179501fac035af097de4b8b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:03:47 +0100 Subject: [PATCH 105/185] corrected variables --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 91ef10dc7..30195b350 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -431,8 +431,8 @@ fn_installed_mods_list(){ currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" installedmodslist+="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command - echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" + echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" + echo -e " * \e[36m${modcommand}\e[0m" let installedmodsline=installedmodsline+1 done echo "" From efe7b219a68e15084716189126942b40a422ff03 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:08:38 +0100 Subject: [PATCH 106/185] installedmodslist --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 30195b350..c77c3364e 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -429,10 +429,10 @@ fn_installed_mods_list(){ installedmodslist=() while [ $installedmodsline -le $installedmodscount ]; do currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" - installedmodslist+="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" echo -e " * \e[36m${modcommand}\e[0m" + installedmodslist+=( "${modcommand}" ) let installedmodsline=installedmodsline+1 done echo "" From e83683f198b4dd01d21e65a0e1cbee326d4fb937 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:45:15 +0100 Subject: [PATCH 107/185] fn_installed_mods_lightlist --- lgsm/functions/mods_core.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c77c3364e..b8084cbcf 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -438,6 +438,28 @@ fn_installed_mods_list(){ echo "" } +# Display a simple list of installed mods +fn_installed_mods_lightlist(){ + # How many mods installed + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + if [ -f "${modslockfilefullpath}" ]&&[ $installedmodscount -gt 0 ]; then + echo "=================================" + echo "Installed mods/addons + # Set variables + installedmodsline="1" + installedmodslist=() + # Loop through mods + while [ $installedmodsline -le $installedmodscount ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + fn_mod_get_info_from_command + echo -e " * \e[1m${modprettyname}\e[0m" + installedmodslist+=( "${modcommand}" ) + let installedmodsline=installedmodsline+1 + done + echo "" + fi +} + # Get details of a mod any (relevant and unique, such as full mod name or install command) value fn_mod_get_info_from_command(){ # Variable to know when job is done From 16f54c62814b182d379987601f25c2bf5284c48b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:45:25 +0100 Subject: [PATCH 108/185] fn_installed_mods_lightlist --- lgsm/functions/command_mods_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 219f00908..beb1ac242 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -13,6 +13,8 @@ check.sh mods_core.sh fn_mods_install_init(){ + # Display installed mods + fn_installed_mods_lightlist fn_script_log "Entering mods & addons installation" echo "=================================" echo "${gamename} mods & addons installation" From b2c96b67fcd90661bf861d539039e3f2fc55e41e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:50:09 +0100 Subject: [PATCH 109/185] "" --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b8084cbcf..146b60c71 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -444,7 +444,7 @@ fn_installed_mods_lightlist(){ installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" if [ -f "${modslockfilefullpath}" ]&&[ $installedmodscount -gt 0 ]; then echo "=================================" - echo "Installed mods/addons + echo "Installed mods/addons" # Set variables installedmodsline="1" installedmodslist=() From 3593866157e6ae6037de0978a0d743279c746434 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:52:43 +0100 Subject: [PATCH 110/185] echo "" moved --- lgsm/functions/mods_core.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 146b60c71..5c62e8981 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -435,7 +435,6 @@ fn_installed_mods_list(){ installedmodslist+=( "${modcommand}" ) let installedmodsline=installedmodsline+1 done - echo "" } # Display a simple list of installed mods @@ -456,7 +455,6 @@ fn_installed_mods_lightlist(){ installedmodslist+=( "${modcommand}" ) let installedmodsline=installedmodsline+1 done - echo "" fi } From 156b351d10c2cc7888c037308989896183ec7f16 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:53:10 +0100 Subject: [PATCH 111/185] echo "" moved here --- lgsm/functions/command_mods_remove.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index bf0d13f7c..63f7f5bec 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -29,6 +29,7 @@ fn_mods_remove_init(){ fi # Displays installed addons to the user fn_installed_mods_list + echo "" # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " From c9ef22f68778706cb9603a0ef277638cae49ab12 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 01:36:52 +0100 Subject: [PATCH 112/185] Prompt if already installed --- lgsm/functions/mods_core.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 5c62e8981..3268379ad 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -172,8 +172,14 @@ fn_mod_already_installed(){ fn_print_warning_nl "${modprettyname} has already been installed" sleep 1 echo " * Config files, if any, might be overwritten." - echo " * Press ctrl + c to abort." - sleep 3 + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done fi fn_script_log "${modprettyname} is already installed, overwriting any file." fi From fa8e32a7a3360c01af4092231c2dfe64a42fb013 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 21:14:55 +0100 Subject: [PATCH 113/185] Fixed sourcemod URL --- lgsm/functions/mods_list.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 08d6805d8..7012fa1f7 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -68,12 +68,12 @@ fn_mods_scrape_urls(){ # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" - metamodfasterurl="http://cdn.probablyaserver.com/sourcemod/" - metamodurl="${metamodfasterurl}/${metamodlatestfile}" + metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" + metamodurl="${metamoddownloadurl}/${metamodlatestfile}" # Sourcemod sourcemodmversion="1.8" - sourcemodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" - sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -| grep "sourcemod-" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" - sourcemodfasterurl="http://cdn.probablyaserver.com/sourcemod/" - sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" + sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" + sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -)" + sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" + sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" } From 8a08cda9055abf338379e9a9dd98737570d1b4ad Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 21:18:33 +0100 Subject: [PATCH 114/185] "/?MD" drugs are bad --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 7012fa1f7..7f795cbe1 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -73,7 +73,7 @@ fn_mods_scrape_urls(){ # Sourcemod sourcemodmversion="1.8" sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" - sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -)" + sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" } From 858f1f24b895666e0f2b04fafbeb7f0a538340a0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 22:53:02 +0100 Subject: [PATCH 115/185] Executable not found message --- lgsm/functions/check_permissions.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 1411e649c..38ea23eca 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -123,6 +123,12 @@ fn_check_permissions(){ fi fi fi + else + fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" + fn_print_fail_nl "Executable ${execname} was not found." + echo " * Is the server properly installed?" + exitcode="1" + core_exit.sh fi } From b126bc6584c40d3b3a3290831361e3fbd08255b3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 22:53:56 +0100 Subject: [PATCH 116/185] Cleaning message --- lgsm/functions/check_permissions.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 38ea23eca..65ade3aae 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -125,8 +125,7 @@ fn_check_permissions(){ fi else fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" - fn_print_fail_nl "Executable ${execname} was not found." - echo " * Is the server properly installed?" + fn_print_fail_nl "Executable ${execname} was not found" exitcode="1" core_exit.sh fi From a96b54748828950f12b758332addf5cca72b2b8f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 22:58:39 +0100 Subject: [PATCH 117/185] Reverted changes --- lgsm/functions/check_permissions.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 65ade3aae..1411e649c 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -123,11 +123,6 @@ fn_check_permissions(){ fi fi fi - else - fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" - fn_print_fail_nl "Executable ${execname} was not found" - exitcode="1" - core_exit.sh fi } From 5f95892b8dde450109ee51d121bd2029f97cf973 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:04:03 +0100 Subject: [PATCH 118/185] Check if executable exists --- lgsm/functions/check_executable.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lgsm/functions/check_executable.sh diff --git a/lgsm/functions/check_executable.sh b/lgsm/functions/check_executable.sh new file mode 100644 index 000000000..a0a81aa4d --- /dev/null +++ b/lgsm/functions/check_executable.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# LGSM check_system_dir.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Checks if systemdir is accessible. + +local commandname="CHECK" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +# Check if executable exists +if [ -f "${executabledir}/${execname}" ]; then + fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" + if [ -d "${scriptlogdir}" ]; then + fn_print_fail_nl "Executable ${execname} was not found" + fi + exitcode="1" + core_exit.sh +fi From f5bda64008b160528f013e972d1ad961ced98256 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:04:41 +0100 Subject: [PATCH 119/185] check_executable.sh --- lgsm/functions/check.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 25fead75b..42d0a90b2 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -83,3 +83,11 @@ do check_system_requirements.sh fi done + +local allowed_commands_array=( command_start.sh ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_executable.sh + fi +done From a11aca6af94e0c892597fbf13d2aa2df3ac04741 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:05:17 +0100 Subject: [PATCH 120/185] check_executable.sh --- lgsm/functions/core_functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index fc9dfaab0..4bfc4c9b2 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -228,6 +228,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +check_executable.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + check_glibc.sh(){ functionfile="${FUNCNAME}" fn_fetch_function From 625ba3e558db64e83231c6d3f0dde25a98ef1bb7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:07:27 +0100 Subject: [PATCH 121/185] Maybe check executable first --- lgsm/functions/check.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 42d0a90b2..255ab5ee1 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -18,6 +18,14 @@ if [ "${function_selfname}" != "command_install.sh" ]&&[ "${function_selfname}" check_system_dir.sh fi +local allowed_commands_array=( command_start.sh ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_executable.sh + fi +done + local allowed_commands_array=( command_debug.sh command_start.sh command_install.sh ) for allowed_command in "${allowed_commands_array[@]}" do @@ -83,11 +91,3 @@ do check_system_requirements.sh fi done - -local allowed_commands_array=( command_start.sh ) -for allowed_command in "${allowed_commands_array[@]}" -do - if [ "${allowed_command}" == "${function_selfname}" ]; then - check_executable.sh - fi -done From 7ea7a6d94be3df682a41d5cad9453a4150644657 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:16:14 +0100 Subject: [PATCH 122/185] I'm dumb --- lgsm/functions/check_executable.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_executable.sh b/lgsm/functions/check_executable.sh index a0a81aa4d..94337a26d 100644 --- a/lgsm/functions/check_executable.sh +++ b/lgsm/functions/check_executable.sh @@ -8,7 +8,7 @@ local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" # Check if executable exists -if [ -f "${executabledir}/${execname}" ]; then +if [ ! -f "${executabledir}/${execname}" ]; then fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" if [ -d "${scriptlogdir}" ]; then fn_print_fail_nl "Executable ${execname} was not found" From 16b03293455ea885a957a1f44b7f7e956851d52b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:50:59 +0100 Subject: [PATCH 123/185] spacing --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 63f7f5bec..779c86fd9 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -13,7 +13,7 @@ check.sh mods_core.sh fn_mods_remove_init(){ - fn_script_log "Entering mods & addons removal" + fn_script_log "Entering mods & addons removal" echo "=================================" echo "${gamename} mods & addons removal" echo "" From 233275c3eb17855b74ef429679b83922647650e6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:06 +0100 Subject: [PATCH 124/185] Attempt for cleaner functions (core) --- lgsm/functions/mods_core.sh | 141 +++++++++++++++++++++++++++++++----- 1 file changed, 122 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 3268379ad..fa9328e26 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -428,42 +428,138 @@ fn_mods_show_available(){ fi } -# Builds installed mods list and display it to the user. -fn_installed_mods_list(){ - # Set variables +# Checks if mods have been installed +# Also returns ${installedmodscount} if mods were found +fn_check_installed_mods(){ + # Count installed mods + if [ -f "${modslockfilefullpath}" ]; then + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + fi +} + +# A simple function to exit if no mods were installed +# Also returns ${installedmodscount} if mods were found +fn_mods_exit_if_not_installed(){ + # Checks if mods have been installed + # Also returns ${installedmodscount} if mods were found + fn_check_installed_mods + # If no mods lockfile is found or if it is empty + if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ $installedmodscount -le 0 ]; then + fn_print_information_nl "No installed mods or addons were found" + echo " * Install mods using LGSM first with: ./${selfname} mods-install" + fn_script_log_info "No installed mods or addons were found." + core_exit.sh + fi +} + +# Builds installed mods list and sets available commands according to installed mods +# (requires ${installedmodscount} from fn_check_installed_mods) +fn_mods_available_commands_from_installed(){ + # Set/reset variables installedmodsline="1" installedmodslist=() + # Loop through every line of the installed mods list ${modslockfilefullpath} while [ $installedmodsline -le $installedmodscount ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + # Get mod info to make sure mod exists fn_mod_get_info_from_command - echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" - echo -e " * \e[36m${modcommand}\e[0m" + # Add the mod to available commands installedmodslist+=( "${modcommand}" ) + # Increment line check let installedmodsline=installedmodsline+1 done } -# Display a simple list of installed mods -fn_installed_mods_lightlist(){ - # How many mods installed - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - if [ -f "${modslockfilefullpath}" ]&&[ $installedmodscount -gt 0 ]; then +# Displays a detailed list of installed mods +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +fn_installed_mods_detailed_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info + fn_mod_get_info_from_command + # Display mod info to the user + echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" + echo -e " * \e[36m${modcommand}\e[0m" + done +} + +# Displays a detailed list of installed mods +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +fn_installed_mods_medium_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info + fn_mod_get_info_from_command + # Display mod info to the user + echo -e "\e[36m${modcommand}\e[0m - \e[1m${modprettyname}\e[0m - ${moddescription}" + done +} + +# Displays a simple list of installed mods +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +# This list is only displayed when some mods are installed +fn_installed_mods_light_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + if [ $installedmodscount -gt 0 ]; then echo "=================================" echo "Installed mods/addons" - # Set variables - installedmodsline="1" - installedmodslist=() - # Loop through mods - while [ $installedmodsline -le $installedmodscount ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info fn_mod_get_info_from_command + # Display simple mod info to the user echo -e " * \e[1m${modprettyname}\e[0m" - installedmodslist+=( "${modcommand}" ) - let installedmodsline=installedmodsline+1 done fi } +# Displays a simple list of installed mods for mods-update command +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +fn_installed_mods_update_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + echo "=================================" + echo "Installed mods/addons" + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info + fn_mod_get_info_from_command + # Display simple mod info to the user according to the update policy + # If modkeepfiles is not set for some reason, that's a problem + if [ -z "${modkeepfiles}" ]; then + fn_script_log_error "Couldn't find update policy for ${modprettyname}" + fn_print_error_nl "Couldn't find update policy for ${modprettyname}" + exitcode="1" + core_exit.sh + # If the mod won't get updated + elif [ "${modkeepfiles}" == "NOUPDATE" ]; then + echo -e " * \e[31m${modprettyname}\e[0m (won't be updated)" + # If the mode is just overwritten + elif [ "${modkeepfiles}" == "OVERWRITE" ]; then + echo -e " * \e[1m${modprettyname}\e[0m (overwrite)" + else + echo -e " * \e[33m${modprettyname}\e[0m (common custom files remain untouched)" + fi + done +} + # Get details of a mod any (relevant and unique, such as full mod name or install command) value fn_mod_get_info_from_command(){ # Variable to know when job is done @@ -488,6 +584,13 @@ fn_mod_get_info_from_command(){ break fi done + # What happens if mod is not found + if [ "${modinfocommand}" == "0" ]; then + fn_script_log_error "Couldn't find information for ${currentmod}" + fn_print_error_nl ""Couldn't find information for ${currentmod}" + exitcode="1" + core_exit.sh + fi } fn_gsm_requirements From 849c13037a0e5203cf32add675b5ac4b086897db Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:24 +0100 Subject: [PATCH 125/185] Attempt for the use of cleaner core functions --- lgsm/functions/command_mods_remove.sh | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 779c86fd9..006367850 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -17,18 +17,11 @@ fn_mods_remove_init(){ echo "=================================" echo "${gamename} mods & addons removal" echo "" - # Installed mod dir is "${modslockfilefullpath}" - # How many mods are installed - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - # If no mods to be updated - if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then - fn_print_information_nl "No mods or addons to remove" - echo " * Did you install any mod using LGSM?" - fn_script_log_info "No mods or addons to remove." - core_exit.sh - fi + # A simple function to exit if no mods were installed + # Also returns ${installedmodscount} if mods were found + fn_mods_exit_if_not_installed # Displays installed addons to the user - fn_installed_mods_list + fn_installed_mods_medium_list echo "" # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do From 9830a59ff1143eac9dff969dd13862d644ace0b4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:30 +0100 Subject: [PATCH 126/185] Attempt for the use of cleaner core functions --- lgsm/functions/command_mods_update.sh | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 40250a58d..88ac2fb31 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -14,29 +14,16 @@ mods_core.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" + # A simple function to exit if no mods were installed + # Also returns ${installedmodscount} if mods were found + fn_mods_exit_if_not_installed echo "=================================" echo "${gamename} mods & addons update" echo "" - # Installed mod dir is "${modslockfilefullpath}" - # How many mods will be updated - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - # If no mods to be updated - if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then - fn_print_information_nl "No mods or addons to be updated" - echo " * Did you install any mod using LGSM?" - fn_script_log_info "No mods or addons to be updated" - core_exit.sh - else - fn_print_information_nl "${installedmodscount} mods or addons will be updated:" - fn_script_log_info "${installedmodscount} mods or addons will be updated" - # Loop showing mods to update - installedmodsline=1 - while [ $installedmodsline -le $installedmodscount ]; do - echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" - let installedmodsline=installedmodsline+1 - done - sleep 2 - fi + fn_print_information_nl "${installedmodscount} mods or addons will be updated:" + fn_script_log_info "${installedmodscount} mods or addons will be updated" + # Display a list of installed addons + fn_installed_mods_update_list } # Recursively list all installed mods and apply update From bd07a687ace5d655f4fe016fdfa7aab33aab246d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:34 +0100 Subject: [PATCH 127/185] Attempt for the use of cleaner core functions --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index beb1ac242..c0097a5b5 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -14,7 +14,7 @@ mods_core.sh fn_mods_install_init(){ # Display installed mods - fn_installed_mods_lightlist + fn_installed_mods_light_list fn_script_log "Entering mods & addons installation" echo "=================================" echo "${gamename} mods & addons installation" From 59f5d8606b5ba4cda489083eff914d5a8f014d06 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:19:05 +0100 Subject: [PATCH 128/185] Damn automatic double quotes --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index fa9328e26..ce0582f60 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -587,7 +587,7 @@ fn_mod_get_info_from_command(){ # What happens if mod is not found if [ "${modinfocommand}" == "0" ]; then fn_script_log_error "Couldn't find information for ${currentmod}" - fn_print_error_nl ""Couldn't find information for ${currentmod}" + fn_print_error_nl "Couldn't find information for ${currentmod}" exitcode="1" core_exit.sh fi From 532335aa1328d7896dae99f0245ff18bfdfbf7a5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 02:59:25 +0100 Subject: [PATCH 129/185] new index variables should fix issue --- lgsm/functions/mods_core.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index ce0582f60..d97b310e4 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -477,9 +477,9 @@ fn_installed_mods_detailed_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((dlindex=0; dlindex <= ${#installedmodslist[@]}; dlindex++)); do + # Current mod is the "dlindex" value of the array we're going through + currentmod="${installedmodslist[dlindex]}" # Get mod info fn_mod_get_info_from_command # Display mod info to the user @@ -495,9 +495,9 @@ fn_installed_mods_medium_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((mlindex=0; mlindex <= ${#installedmodslist[@]}; mlindex++)); do + # Current mod is the "mlindex" value of the array we're going through + currentmod="${installedmodslist[mlindex]}" # Get mod info fn_mod_get_info_from_command # Display mod info to the user @@ -516,9 +516,9 @@ fn_installed_mods_light_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((llindex=0; llindex <= ${#installedmodslist[@]}; llindex++)); do + # Current mod is the "llindex" value of the array we're going through + currentmod="${installedmodslist[llindex]}" # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user @@ -536,9 +536,9 @@ fn_installed_mods_update_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((ulindex=0; ulindex <= ${#installedmodslist[@]}; ulindex++)); do + # Current mod is the "ulindex" value of the array we're going through + currentmod="${installedmodslist[ulindex]}" # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user according to the update policy From 9f01c51788c74e8cd0df2e7b7b55632b104b7ecb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:13:12 +0100 Subject: [PATCH 130/185] < rather than <= for lists --- lgsm/functions/mods_core.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index d97b310e4..60adb8d91 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -477,7 +477,7 @@ fn_installed_mods_detailed_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((dlindex=0; dlindex <= ${#installedmodslist[@]}; dlindex++)); do + for ((dlindex=0; dlindex < ${#installedmodslist[@]}; dlindex++)); do # Current mod is the "dlindex" value of the array we're going through currentmod="${installedmodslist[dlindex]}" # Get mod info @@ -495,7 +495,7 @@ fn_installed_mods_medium_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((mlindex=0; mlindex <= ${#installedmodslist[@]}; mlindex++)); do + for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do # Current mod is the "mlindex" value of the array we're going through currentmod="${installedmodslist[mlindex]}" # Get mod info @@ -516,7 +516,7 @@ fn_installed_mods_light_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((llindex=0; llindex <= ${#installedmodslist[@]}; llindex++)); do + for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do # Current mod is the "llindex" value of the array we're going through currentmod="${installedmodslist[llindex]}" # Get mod info From ec68e34e862a894ed4c900761cb1f79aba684c24 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:27:15 +0100 Subject: [PATCH 131/185] Move mods error message --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 006367850..392f3332a 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -16,10 +16,10 @@ fn_mods_remove_init(){ fn_script_log "Entering mods & addons removal" echo "=================================" echo "${gamename} mods & addons removal" - echo "" # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed + echo "" # Displays installed addons to the user fn_installed_mods_medium_list echo "" From 3c966c5bc6082d1a4744b09887a347b306ce8886 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:27:51 +0100 Subject: [PATCH 132/185] Move mods error message --- lgsm/functions/command_mods_update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 88ac2fb31..4dd290f0f 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -14,11 +14,11 @@ mods_core.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" + echo "=================================" + echo "${gamename} mods & addons update" # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed - echo "=================================" - echo "${gamename} mods & addons update" echo "" fn_print_information_nl "${installedmodscount} mods or addons will be updated:" fn_script_log_info "${installedmodscount} mods or addons will be updated" From abb4ba32c7984d0238fecc487c2836e1b3aad34a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:31:10 +0100 Subject: [PATCH 133/185] < rather than <= --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 60adb8d91..cd99e74a5 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -536,7 +536,7 @@ fn_installed_mods_update_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((ulindex=0; ulindex <= ${#installedmodslist[@]}; ulindex++)); do + for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do # Current mod is the "ulindex" value of the array we're going through currentmod="${installedmodslist[ulindex]}" # Get mod info From 98b0b91d843c5c34f7d7c77ab9654fa5d36eb59f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:31:42 +0100 Subject: [PATCH 134/185] no nl --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 4dd290f0f..9eb257907 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -38,7 +38,7 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_info_nl "${modprettyname} won't be updated to preserve custom files" + fn_print_info "${modprettyname} won't be updated to preserve custom files" fn_script_log "${modprettyname} won't be updated to preserve custom files." let installedmodsline=installedmodsline+1 else From b4d3bb549e36198d332e4e5decd6bc30231791e0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 19:00:02 +0100 Subject: [PATCH 135/185] Fixed error spacing with a ! |ERROR!] is better than [ERROR ], as per @ChaosMTA and @Cedarlug mentioned. --- lgsm/functions/core_messages.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 540729af7..66a1d6d80 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -157,17 +157,17 @@ fn_print_fail_nl(){ # [ ERROR ] fn_print_error(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR ${default}] $@" + echo -en "${creeol}[${red}ERROR!${default}] $@" fi } fn_print_error_nl(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR ${default}] $@" + echo -en "${creeol}[${red}ERROR!${default}] $@" fi sleep 0.5 echo -en "\n" From a84ba451aa2f744de6b32f63769939f1cefec5c1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 20 Jan 2017 21:01:46 +0000 Subject: [PATCH 136/185] Changes to the UI more to come soon --- lgsm/functions/command_mods_install.sh | 18 ++++++------- lgsm/functions/command_mods_remove.sh | 35 ++++++++++++++------------ lgsm/functions/mods_core.sh | 24 +++++++++--------- 3 files changed, 39 insertions(+), 38 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index c0097a5b5..ee7d5bdbc 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -6,35 +6,33 @@ # Description: List and installs available mods along with mods_list.sh and mods_core.sh. local commandname="MODS" -local commandaction="Mod Installation" +local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh fn_mods_install_init(){ + fn_print_header # Display installed mods fn_installed_mods_light_list - fn_script_log "Entering mods & addons installation" - echo "=================================" - echo "${gamename} mods & addons installation" echo "" + echo "Available addons/mods" + 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): " + echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (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." + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done # Gives a pretty name to the user and get all mod info @@ -77,7 +75,7 @@ fn_mod_installation(){ fn_print_ok_nl "${modprettyname} installed" fn_script_log "${modprettyname} installed." else - fn_print_fail "No mod was selected" + fn_print_fail "No addon/mod was selected" exitcode="1" core_exit.sh fi diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 392f3332a..d49b81441 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -6,16 +6,16 @@ # Description: Uninstall mods along with mods_list.sh and mods_core.sh. local commandname="MODS" -local commandaction="Mod Remove" +local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh fn_mods_remove_init(){ - fn_script_log "Entering mods & addons removal" + fn_print_header + echo "Remove addons/mods" echo "=================================" - echo "${gamename} mods & addons removal" # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed @@ -25,19 +25,26 @@ fn_mods_remove_init(){ echo "" # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " + echo -en "Enter a ${cyan}mod${default} to ${red}remove${default} (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 [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; then - fn_print_error2_nl "${usermodselect} is not a valid mod." - echo " * Enter a valid mod or input exit to abort." + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done + fn_print_warning_nl "You are about to remove ${usermodselect}." + echo " * Any custom files/configuration will be removed." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; exit;; + * ) echo "Please answer yes or no.";; + esac + done # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command @@ -45,17 +52,13 @@ fn_mods_remove_init(){ fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" - echo "" - echo " * Any mod's custom file will be deleted." - echo " * Press ctrl + c to abort." - sleep 4 } # Uninstall the mod fn_mod_remove_process(){ # Go through every file and remove it modfileline="1" - while [ $modfileline -le $modsfilelistsize ]; do + while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" # If file or directory exists, then remove it diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index cd99e74a5..be815c3b3 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -6,7 +6,7 @@ # Description: Core functions for mods list/install/update/remove local commandname="MODS" -local commandaction="Core functions for mods" +local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" ## Useful variables @@ -416,8 +416,8 @@ fn_mods_show_available(){ displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" + echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done @@ -483,8 +483,8 @@ fn_installed_mods_detailed_list(){ # Get mod info fn_mod_get_info_from_command # Display mod info to the user - echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" - echo -e " * \e[36m${modcommand}\e[0m" + echo -e "\e[1m${modprettyname}${default} - ${moddescription} - ${modsite}" + echo -e " * ${cyan}${modcommand}${default}" done } @@ -501,7 +501,7 @@ fn_installed_mods_medium_list(){ # Get mod info fn_mod_get_info_from_command # Display mod info to the user - echo -e "\e[36m${modcommand}\e[0m - \e[1m${modprettyname}\e[0m - ${moddescription}" + echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" done } @@ -512,8 +512,8 @@ fn_installed_mods_light_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed if [ $installedmodscount -gt 0 ]; then + echo "Installed addons/mods" echo "=================================" - echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do @@ -522,7 +522,7 @@ fn_installed_mods_light_list(){ # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user - echo -e " * \e[1m${modprettyname}\e[0m" + echo -e " * \e[1m${green}${modprettyname}${default}${default}" done fi } @@ -533,7 +533,7 @@ fn_installed_mods_update_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed echo "=================================" - echo "Installed mods/addons" + echo "Installed addons/mods" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do @@ -550,12 +550,12 @@ fn_installed_mods_update_list(){ core_exit.sh # If the mod won't get updated elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}\e[0m (won't be updated)" + echo -e " * \e[31m${modprettyname}${default} (won't be updated)" # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}\e[0m (overwrite)" + echo -e " * \e[1m${modprettyname}${default} (overwrite)" else - echo -e " * \e[33m${modprettyname}\e[0m (common custom files remain untouched)" + echo -e " * \e[33m${modprettyname}${default} (common custom files remain untouched)" fi done } From 63c697fe33f6c338d24893de5871860ae8eab56b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 20 Jan 2017 21:44:08 +0000 Subject: [PATCH 137/185] spaces --- lgsm/functions/command_mods_install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index ee7d5bdbc..dec97c7a3 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -16,10 +16,9 @@ fn_mods_install_init(){ fn_print_header # Display installed mods fn_installed_mods_light_list - echo "" + echo "Available addons/mods" echo "=================================" - # Display available mods from mods_list.sh fn_mods_show_available echo "" From 6e407e74874d5b12c29a6f491d7a505cfa35a612 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 20 Jan 2017 21:45:15 +0000 Subject: [PATCH 138/185] minor ui changes --- lgsm/functions/mods_core.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index be815c3b3..cc67fd4f3 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -16,14 +16,14 @@ extractdir="${modstmpdir}/extracted" modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" -# Database initialization +# Database initialisation mods_list.sh -# Sets some gsm requirements -fn_gsm_requirements(){ +# Sets some lgsm requirements +fn_lgsm_requirements(){ # If tmpdir variable doesn't exist, LGSM is too old if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." + fn_print_fail "Your LinuxGSM version is too old." echo " * Please do a full update, including ${selfname} script." core_exit.sh fi @@ -145,11 +145,11 @@ fn_mod_fileslist(){ fn_script_log "Building ${modcommand}-files.list" sleep 0.5 # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" # Adding removed files if needed if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list + cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.list fi fn_print_ok "Building ${modcommand}-files.list" sleep 0.5 @@ -511,7 +511,7 @@ fn_installed_mods_medium_list(){ fn_installed_mods_light_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed - if [ $installedmodscount -gt 0 ]; then + if [ "${installedmodscount}" -gt 0 ]; then echo "Installed addons/mods" echo "=================================" # Were now based on ${installedmodslist} array's values @@ -522,8 +522,9 @@ fn_installed_mods_light_list(){ # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user - echo -e " * \e[1m${green}${modprettyname}${default}${default}" + echo -e " * \e[1m${green}${modcommand}${default}${default}" done + echo "" fi } @@ -593,7 +594,7 @@ fn_mod_get_info_from_command(){ fi } -fn_gsm_requirements +fn_lgsm_requirements fn_mods_scrape_urls fn_mods_info fn_mods_available From 27b88e3baf7f3c69304a590ef956db3f4b0f3bcc Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 21 Jan 2017 01:04:13 +0000 Subject: [PATCH 139/185] "" --- lgsm/functions/command_dev_detect_ldd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index 07ad3f581..16f1f9473 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -22,8 +22,8 @@ elif [ -f "${filesdir}" ]; then fi echo "" -files=$(find ${filesdir} | wc -l) -find ${filesdir} -type f -print0 | +files=$(find "${filesdir}" | wc -l) +find "${filesdir}" -type f -print0 | while IFS= read -r -d $'\0' line; do #ldd -v $line 2>/dev/null|grep "=>" >>"${tmpdir}/detect_ldd.tmp" if [ -n "$(ldd $line 2>/dev/null |grep -v "not a dynamic executable")" ]; then From 4d692f59e2888661cf44f59fe3e8ff2dbb8d1747 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 21 Jan 2017 01:07:19 +0000 Subject: [PATCH 140/185] Various UI and code changes. --- lgsm/functions/command_mods_install.sh | 67 +++++------- lgsm/functions/command_mods_remove.sh | 6 +- lgsm/functions/mods_core.sh | 144 ++++++++++++++----------- 3 files changed, 114 insertions(+), 103 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index dec97c7a3..5dca19bf6 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -34,50 +34,41 @@ fn_mods_install_init(){ fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done + echo "" + echo "Installing ${modprettyname}" + echo "=================================" + fn_script_log "Installing ${modprettyname}." # 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 files - fn_mods_files - # 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 - # Convert to lowercase if needed - fn_mod_lowercase - # Build a file list - fn_mod_fileslist - # Copying to destination - fn_mod_copy_destination - # Ending with installation routines - fn_mod_add_list - # Post install fixes - fn_postinstall_tasks - # Cleaning - fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} installed" - fn_script_log "${modprettyname} installed." - else - fn_print_fail "No addon/mod was selected" - exitcode="1" - core_exit.sh - fi + # Get mod info + fn_mod_get_info_from_command + # Check if mod is already installed + fn_mod_already_installed + # Check and create required files + fn_mods_files + # Clear lgsm/tmp/mods dir if exists then recreate it + fn_clear_tmp_mods + fn_mods_tmpdir + # Download & extract mod + fn_install_mod_dl_extract + # Convert to lowercase if needed + fn_mod_lowercase + # Build a file list + fn_mod_fileslist + # Copying to destination + fn_mod_copy_destination + # Ending with installation routines + fn_mod_add_list + # Post install fixes + fn_postinstall_tasks + # Cleaning + fn_clear_tmp_mods + echo "${modprettyname} installed" + fn_script_log "${modprettyname} installed." } fn_mods_install_init diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index d49b81441..464b2caff 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -60,7 +60,7 @@ fn_mod_remove_process(){ modfileline="1" while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove - currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" + currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" # If file or directory exists, then remove it if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" @@ -69,8 +69,8 @@ fn_mod_remove_process(){ let modfileline=modfileline+1 done # Remove file list - fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.list" - rm -rf "${modsdatadir}/${modcommand}-files.list" + fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" + rm -rf "${modsdatadir}/${modcommand}-files.txt" # Remove from installed mods list fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index cc67fd4f3..47fa1ecf8 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -11,9 +11,10 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" ## Useful variables # Files and Directories -modstmpdir="${tmpdir}/mods" -extractdir="${modstmpdir}/extracted" -modsdatadir="${lgsmdir}/data/mods" +modsdir="${lgsmdir}/mods" +modstmpdir="${modsdir}/tmp" +extractdir="${modstmpdir}/extract" +modsdatadir="${modsdir}" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" # Database initialisation @@ -34,13 +35,11 @@ fn_lgsm_requirements(){ fn_mods_files(){ if [ ! -d "${modinstalldir}" ]; then fn_script_log_info "Creating mods directory: ${modinstalldir}" - fn_print_dots "Creating mods directory" - sleep 0.5 - mkdir -p "${modinstalldir}" - fn_print_ok "Created mods directory" + echo "Creating mods directory" sleep 0.5 + mkdir -pv "${modinstalldir}" fi - # Create lgsm/data/mods directory + # Create data/mods directory if [ ! -d "${modsdatadir}" ]; then mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" @@ -52,11 +51,11 @@ fn_mods_files(){ fi } -# Clear mod download directory so that there is only one file in it since we don't the file name and extention +# Clear mod download directory so that there is only one file in it since we don't know the file name and extention fn_clear_tmp_mods(){ if [ -d "${modstmpdir}" ]; then rm -r "${modstmpdir}" - fn_script_log "Clearing temp mod download directory: ${modstmpdir}" + fn_script_log "Clearing mod download directory: ${modstmpdir}" fi # Clear temp file list as well if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then @@ -68,44 +67,49 @@ fn_clear_tmp_mods(){ fn_mods_tmpdir(){ if [ ! -d "${modstmpdir}" ]; then mkdir -p "${modstmpdir}" - fn_script_log "Creating temp mod download directory: ${modstmpdir}" + fn_script_log "Creating mod download directory: ${modstmpdir}" fi } -# Fetches mod URL -fn_mod_dl(){ - # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" - fileurl="${modurl}" - filedir="${modstmpdir}" - filename="${modfilename}" - fn_script_log "Downloading mods to ${modstmpdir}" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" +fn_install_mod_dl_extract(){ + fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}" # Check if variable is valid checking if file has been downloaded and exists if [ ! -f "${modstmpdir}/${modfilename}" ]; then - fn_print_fail "An issue occurred upon downloading ${modprettyname}" + fn_print_failure "An issue occurred upon downloading ${modprettyname}" core_exit.sh fi -} - -# Extract the mod -fn_mod_extract(){ - # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" - filename="${modfilename}" if [ ! -d "${extractdir}" ]; then mkdir -p "${extractdir}" fi - fn_script_log "Extracting ${modprettyname} to ${extractdir}" - fn_dl_extract "${filedir}" "${filename}" "${extractdir}" + fn_dl_extract "${modstmpdir}" "${filename}" "${extractdir}" } # Convert mod files to lowercase if needed fn_mod_lowercase(){ if [ "${modlowercase}" == "LowercaseOn" ]; then - fn_print_dots "Converting ${modprettyname} files to lowercase" + + echo -ne "converting ${modprettyname} files to lowercase..." sleep 0.5 fn_script_log "Converting ${modprettyname} files to lowercase" - find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; - fn_print_ok "Converting ${modprettyname} files to lowercase" + files=$(find "${extractdir}" -depth | wc -l) + echo -en "\r" + while read SRC; do + DST=`dirname "${SRC}"`/`basename "${SRC}" | tr '[A-Z]' '[a-z]'` + if [ "${SRC}" != "${DST}" ] + then + [ ! -e "${DST}" ] && mv -T "${SRC}" "${DST}" || echo "${SRC} was not renamed" + ((renamedwc++)) + fi + echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." $'\r' + ((totalfileswc++)) + done < <(find "${extractdir}" -depth) + echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi sleep 0.5 fi } @@ -139,30 +143,39 @@ fn_remove_cfg_files(){ fi } -# Create ${modcommand}-files.list containing the full extracted file/directory list +# Create ${modcommand}-files.txt containing the full extracted file/directory list fn_mod_fileslist(){ - fn_print_dots "Building ${modcommand}-files.list" - fn_script_log "Building ${modcommand}-files.list" + echo -ne "building ${modcommand}-files.txt..." + fn_script_log "Building ${modcommand}-files.txt" sleep 0.5 - # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.list - fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" + # ${modsdatadir}/${modcommand}-files.txt + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.txt + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi + fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}" # Adding removed files if needed if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.list + cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.txt fi - fn_print_ok "Building ${modcommand}-files.list" sleep 0.5 } # Copy the mod to the destination ${modinstalldir} fn_mod_copy_destination(){ - fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" + echo -ne "copying ${modprettyname} to ${modinstalldir}..." fn_script_log "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 cp -Rf "${extractdir}/." "${modinstalldir}/" - fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" - sleep 0.5 + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi } # Check if the mod is already installed and warn the user @@ -196,21 +209,21 @@ fn_mod_add_list(){ fn_check_files_list(){ # File list must exist and be valid before any operation on it - if [ -f "${modsdatadir}/${modcommand}-files.list" ]; then + if [ -f "${modsdatadir}/${modcommand}-files.txt" ]; then # How many lines is the file list - modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.list" | wc -l)" + modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)" # If file list is empty if [ $modsfilelistsize -eq 0 ]; then - fn_print_error_nl "${modcommand}-files.list is empty" + fn_print_error_nl "${modcommand}-files.txt is empty" echo "Exiting." - fn_scrip_log_fatal "${modcommand}-files.list is empty" + fn_scrip_log_fatal "${modcommand}-files.txt is empty" exitcode="2" core_exit.sh fi else - fn_print_error_nl "${modsdatadir}/${modcommand}-files.list don't exist" + fn_print_error_nl "${modsdatadir}/${modcommand}-files.txt don't exist" echo "Exiting." - fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.list don't exist" + fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.txt don't exist" exitcode="2" core_exit.sh fi @@ -218,13 +231,13 @@ fn_check_files_list(){ # Apply some post-install fixes to make sure everything will be fine fn_postinstall_tasks(){ - # Prevent sensitive directories from being erased upon uninstall by removing them them from: ${modsdatadir}/${modcommand}-files.list + # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdatadir}/${modcommand}-files.txt # Check file validity fn_check_files_list # Output to the user - fn_print_dots "Rearranging ${modcommand}-files.list" + echo -ne "tidy up ${modcommand}-files.txt..." sleep 0.5 - fn_script_log_info "Rearranging ${modcommand}-files.list" + fn_script_log_info "Rearranging ${modcommand}-files.txt" # What lines/files to remove from file list (end var with a ";" separator) removefromlist="cfg;addons;" # Loop through files to remove from file list, @@ -236,18 +249,25 @@ fn_postinstall_tasks(){ # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" # Then delete matching line(s)! - sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" - done - + sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.txt" + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + break + fi + done + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi + # Sourcemod fix # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then - # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.list - sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.list" - sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" + # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.txt + sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.txt" + sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.txt" fi - fn_print_ok "Rearranging ${modcommand}-files.list" - sleep 0.5 } # Apply some post-uninstall fixes to make sure everything will be fine @@ -444,7 +464,7 @@ fn_mods_exit_if_not_installed(){ # Also returns ${installedmodscount} if mods were found fn_check_installed_mods # If no mods lockfile is found or if it is empty - if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ $installedmodscount -le 0 ]; then + if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -459,7 +479,7 @@ fn_mods_available_commands_from_installed(){ installedmodsline="1" installedmodslist=() # Loop through every line of the installed mods list ${modslockfilefullpath} - while [ $installedmodsline -le $installedmodscount ]; do + while [ ${installedmodsline} -le ${installedmodscount} ]; do currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" # Get mod info to make sure mod exists fn_mod_get_info_from_command @@ -556,7 +576,7 @@ fn_installed_mods_update_list(){ elif [ "${modkeepfiles}" == "OVERWRITE" ]; then echo -e " * \e[1m${modprettyname}${default} (overwrite)" else - echo -e " * \e[33m${modprettyname}${default} (common custom files remain untouched)" + echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi done } From 1985955f3a2d9a0147877afe661e4c1392488a15 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 21 Jan 2017 22:39:39 +0000 Subject: [PATCH 141/185] Loads of UI improvements and fixes still lots of testing to do --- lgsm/functions/command_mods_install.sh | 4 +- lgsm/functions/command_mods_remove.sh | 54 +++++++++++++++++++---- lgsm/functions/mods_core.sh | 60 ++++++++++++++------------ lgsm/functions/mods_list.sh | 6 +-- 4 files changed, 82 insertions(+), 42 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 5dca19bf6..0169589c7 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -29,14 +29,14 @@ fn_mods_install_init(){ # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then core_exit.sh - # Supplementary output upon invalid user input + # Supplementary output upon invalid user input elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done echo "" echo "Installing ${modprettyname}" - echo "=================================" + echo "=================================" fn_script_log "Installing ${modprettyname}." # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 464b2caff..060898aa8 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -19,7 +19,6 @@ fn_mods_remove_init(){ # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed - echo "" # Displays installed addons to the user fn_installed_mods_medium_list echo "" @@ -30,12 +29,12 @@ fn_mods_remove_init(){ # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then core_exit.sh - # Supplementary output upon invalid user input + # Supplementary output upon invalid user input elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done - fn_print_warning_nl "You are about to remove ${usermodselect}." + fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." echo " * Any custom files/configuration will be removed." while true; do read -e -i "y" -p "Continue? [Y/n]" yn @@ -44,40 +43,77 @@ fn_mods_remove_init(){ [Nn]* ) echo Exiting; exit;; * ) echo "Please answer yes or no.";; esac - done + done # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command # Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize}) fn_check_files_list - fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" - fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" + } # Uninstall the mod fn_mod_remove_process(){ + fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" + echo -e "removing ${modprettyname}" + echo -e "* ${modsfilelistsize} files to be removed" + echo -e "* location: ${modinstalldir}" + sleep 1 # Go through every file and remove it modfileline="1" + tput sc while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" # If file or directory exists, then remove it + fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then - fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" rm -rf "${modinstalldir}/${currentfileremove}" + local exitcode=$? fi + tput rc; tput el + printf "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize} : ${currentfileremove}..." + + ((totalfileswc++)) let modfileline=modfileline+1 done + tput rc; tput ed; + echo -ne "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize}..." + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi + sleep 0.5 # Remove file list + echo -en "removing ${modcommand}-files.txt..." + sleep 0.5 fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" rm -rf "${modsdatadir}/${modcommand}-files.txt" + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi # Remove from installed mods list + echo -en "removing ${modcommand} from ${modslockfile}..." + sleep 0.5 fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" # Post install tasks to solve potential issues + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi fn_postuninstall_tasks - fn_print_ok_nl "Removed ${modprettyname}" - fn_script_log "Removed ${modprettyname}" + echo "${modprettyname} removed" + fn_script_log "${modprettyname} removed" } fn_mods_remove_init diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 47fa1ecf8..aead8e714 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -93,21 +93,23 @@ fn_mod_lowercase(){ fn_script_log "Converting ${modprettyname} files to lowercase" files=$(find "${extractdir}" -depth | wc -l) echo -en "\r" - while read SRC; do - DST=`dirname "${SRC}"`/`basename "${SRC}" | tr '[A-Z]' '[a-z]'` - if [ "${SRC}" != "${DST}" ] - then - [ ! -e "${DST}" ] && mv -T "${SRC}" "${DST}" || echo "${SRC} was not renamed" - ((renamedwc++)) - fi + while read src; do + dst=`dirname "${src}"`/`basename "${src}" | tr '[A-Z]' '[a-z]'` + if [ "${src}" != "${dst}" ] + then + [ ! -e "${dst}" ] && mv -T "${src}" "${dst}" || echo "${src} was not renamed" + local exitcode=$? + ((renamedwc++)) + fi echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." $'\r' ((totalfileswc++)) done < <(find "${extractdir}" -depth) echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." - local exitcode=$? + if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + core_exit.sh + else fn_print_ok_eol_nl fi sleep 0.5 @@ -153,7 +155,7 @@ fn_mod_fileslist(){ local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + else fn_print_ok_eol_nl fi fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}" @@ -173,7 +175,7 @@ fn_mod_copy_destination(){ local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + else fn_print_ok_eol_nl fi } @@ -213,19 +215,16 @@ fn_check_files_list(){ # How many lines is the file list modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)" # If file list is empty - if [ $modsfilelistsize -eq 0 ]; then - fn_print_error_nl "${modcommand}-files.txt is empty" - echo "Exiting." - fn_scrip_log_fatal "${modcommand}-files.txt is empty" - exitcode="2" + if [ "${modsfilelistsize}" -eq 0 ]; then + fn_print_failure "${modcommand}-files.txt is empty" + echo "* Unable to remove ${modprettyname}" + fn_script_log_fatal "${modcommand}-files.txt is empty: Unable to remove ${modprettyname}." core_exit.sh fi else - fn_print_error_nl "${modsdatadir}/${modcommand}-files.txt don't exist" - echo "Exiting." - fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.txt don't exist" - exitcode="2" - core_exit.sh + fn_print_failure "${modsdatadir}/${modcommand}-files.txt does not exist" + fn_script_log_fatal "${modsdatadir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." + core_exit.sh fi } @@ -253,11 +252,11 @@ fn_postinstall_tasks(){ local exitcode=$? if [ ${exitcode} -ne 0 ]; then break - fi - done + fi + done if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + else fn_print_ok_eol_nl fi @@ -527,7 +526,7 @@ fn_installed_mods_medium_list(){ # Displays a simple list of installed mods # Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -# This list is only displayed when some mods are installed +# This list is only displayed when some mods are installed fn_installed_mods_light_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed @@ -575,9 +574,11 @@ fn_installed_mods_update_list(){ # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then echo -e " * \e[1m${modprettyname}${default} (overwrite)" - else + else echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi + ((totalmodsinstalled++)) + fn_script_log_info "${totalmodsinstalled} are already installed" done } @@ -598,17 +599,20 @@ fn_mod_get_info_from_command(){ modinfocommand="1" break fi + ((totalmods++)) done + fi # Exit the loop if job is done if [ "${modinfocommand}" == "1" ]; then break fi done + fn_script_log_info "${totalmods} are available for install" # What happens if mod is not found if [ "${modinfocommand}" == "0" ]; then - fn_script_log_error "Couldn't find information for ${currentmod}" - fn_print_error_nl "Couldn't find information for ${currentmod}" + fn_script_log_error "Could not find information for ${currentmod}" + fn_print_error_nl "Could not find information for ${currentmod}" exitcode="1" core_exit.sh fi diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 7f795cbe1..298da3ce1 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -4,7 +4,7 @@ # Contributor: UltimateByte # Website: https://gameservermanagers.com # Description: Lists and defines available mods for LGSM supported servers. -# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. +# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. # Usage: Then add this array to the mods_global_array. # Usage: If needed, you can scrape to define the download URL inside the fn_mods_scrape_urls function. @@ -35,7 +35,7 @@ fn_mods_info(){ # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value - # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value + # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install # [13] | "Short Description" a description showed to the user upon installation @@ -64,7 +64,7 @@ fn_mods_info(){ # Get a proper URL for mods that don't provide a good one (optional) fn_mods_scrape_urls(){ - fn_script_log "Retriving latest mods URLs" + fn_script_log_info "retrieving latest mods URLs" # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" From 23030d8e0e5a3a2082bb443f2e718fbc7d25d348 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:00:10 +0000 Subject: [PATCH 142/185] Altered script log message for extracting --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index b1db1b8fd..f7768a7cf 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -54,7 +54,6 @@ fn_dl_extract(){ extractdir="${3}" # extracts archives echo -ne "extracting ${filename}..." - fn_script_log_info "Extracting download" mime=$(file -b --mime-type "${filedir}/${filename}") if [ "${mime}" == "application/gzip" ]||[ "${mime}" == "application/x-gzip" ]; then @@ -72,6 +71,7 @@ fn_dl_extract(){ core_exit.sh else fn_print_ok_eol_nl + fn_script_log_pass "Extracting download: OK" fi } From e0e071139f49167acc1e8af8b55f5be987ff4741 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:02:07 +0000 Subject: [PATCH 143/185] removed color from log --- lgsm/functions/check_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 924d3f19b..4a040b13a 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -78,7 +78,7 @@ fn_found_missing_deps(){ fn_print_dots "Checking dependencies" sleep 0.5 fn_print_error_nl "Checking dependencies: missing: ${red}${array_deps_missing[@]}${default}" - fn_script_log_error "Checking dependencies: missing: ${red}${array_deps_missing[@]}${default}" + fn_script_log_error "Checking dependencies: missing: ${array_deps_missing[@]}" sleep 1 sudo -v > /dev/null 2>&1 if [ $? -eq 0 ]; then @@ -204,7 +204,7 @@ if [ -n "$(command -v dpkg-query)" ]; then array_deps_required+=( zlib1g:i386 libldap-2.4-2:i386 ) # Serious Sam 3: BFE elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then - array_deps_required+=( libxrandr2:i386 libglu1-mesa:i386 libxtst6:i386 libusb-1.0-0-dev:i386 libxxf86vm1:i386 libopenal1:i386 libssl1.0.0:i386 libgtk2.0-0:i386 libdbus-glib-1-2:i386 libnm-glib-dev:i386 ) + array_deps_required+=( libxrandr2:i386 libglu1-mesa:i386 libxtst6:i386 libusb-1.0-0-dev:i386 libxxf86vm1:i386 libopenal1:i386 libssl1.0.0:i386 libgtk2.0-0:i386 libdbus-glib-1-2:i386 libnm-glib-dev:i386 ) # Unreal Engine elif [ "${executable}" == "./ucc-bin" ]; then #UT2K4 From 1f566a9a4e176146efacf0a99207cec97efcd580 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:10:24 +0000 Subject: [PATCH 144/185] Reverting [ERROR!] to [ERROR ] b4d3bb549e36198d332e4e5decd6bc30231791e0 No other message have an ! and is not consistant. Nothing I can do about the space. --- lgsm/functions/core_messages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 66a1d6d80..632b01378 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -157,9 +157,9 @@ fn_print_fail_nl(){ # [ ERROR ] fn_print_error(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR!${default}] $@" + echo -en "${creeol}[${red}ERROR ${default}] $@" fi } From 5b4a172edc1da298824bd38d5beb344c6ea0f512 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:57:28 +0000 Subject: [PATCH 145/185] removed space --- lgsm/functions/command_dev_debug.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/command_dev_debug.sh b/lgsm/functions/command_dev_debug.sh index 6186c0fb0..e17a8a719 100644 --- a/lgsm/functions/command_dev_debug.sh +++ b/lgsm/functions/command_dev_debug.sh @@ -8,7 +8,6 @@ local commandname="DEV-DEBUG" local commandaction="Dev-Debug" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" - if [ -f "${rootdir}/.dev-debug" ]; then rm "${rootdir}/.dev-debug" fn_print_ok_nl "Disabled dev-debug" From 8b3721f25a3af83545e3ffad1bc17097fb890a34 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:58:05 +0000 Subject: [PATCH 146/185] Many various changes Im being laxy with commits. Still work to be done --- lgsm/functions/command_mods_install.sh | 11 +- lgsm/functions/command_mods_remove.sh | 5 +- lgsm/functions/command_mods_update.sh | 4 +- lgsm/functions/mods_core.sh | 168 ++++++++++++++----------- lgsm/functions/mods_list.sh | 4 +- 5 files changed, 107 insertions(+), 85 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 0169589c7..d15250594 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -9,9 +9,6 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh -mods_core.sh - fn_mods_install_init(){ fn_print_header # Display installed mods @@ -37,7 +34,7 @@ fn_mods_install_init(){ echo "" echo "Installing ${modprettyname}" echo "=================================" - fn_script_log "Installing ${modprettyname}." + fn_script_log_info "${modprettyname} selected for install" # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" } @@ -68,9 +65,11 @@ fn_mod_installation(){ # Cleaning fn_clear_tmp_mods echo "${modprettyname} installed" - fn_script_log "${modprettyname} installed." + fn_script_log_pass "${modprettyname} installed." } +check.sh +mods_core.sh fn_mods_install_init fn_mod_installation -core_exit.sh +core_exit.sh \ No newline at end of file diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 060898aa8..6c8fdf0bb 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -9,8 +9,7 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh -mods_core.sh + fn_mods_remove_init(){ fn_print_header @@ -116,6 +115,8 @@ fn_mod_remove_process(){ fn_script_log "${modprettyname} removed" } +check.sh +mods_core.sh fn_mods_remove_init fn_mod_remove_process core_exit.sh diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 9eb257907..ad757da6c 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -9,8 +9,6 @@ local commandname="MODS" local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh -mods_core.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" @@ -84,6 +82,8 @@ fn_mods_update_loop(){ fn_script_log "Mods update complete." } +check.sh +mods_core.sh fn_mods_update_init fn_mods_update_loop core_exit.sh diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index aead8e714..4295fc478 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -9,68 +9,84 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -## Useful variables # Files and Directories modsdir="${lgsmdir}/mods" modstmpdir="${modsdir}/tmp" extractdir="${modstmpdir}/extract" -modsdatadir="${modsdir}" -modslockfile="installed-mods-listing" -modslockfilefullpath="${modsdatadir}/${modslockfile}" +modsinstalledlist="installed-mods.txt" +modsinstalledlistfullpath="${modsdir}/${modsinstalledlist}" + # Database initialisation mods_list.sh -# Sets some lgsm requirements -fn_lgsm_requirements(){ - # If tmpdir variable doesn't exist, LGSM is too old - if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LinuxGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} +## Directory management # Create mods files and directories if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_files(){ + # Create mod install directory if [ ! -d "${modinstalldir}" ]; then - fn_script_log_info "Creating mods directory: ${modinstalldir}" - echo "Creating mods directory" + echo "creating mods install directory ${modinstalldir}..." + mkdir -p "${modinstalldir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fi sleep 0.5 - mkdir -pv "${modinstalldir}" fi - # Create data/mods directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" + + # Create lgsm/data/${modsinstalledlist} + if [ ! -f "${modsinstalledlistfullpath}" ]; then + touch "${modsinstalledlistfullpath}" + fn_script_log "Created ${modsinstalledlistfullpath}" fi - # Create lgsm/data/${modslockfile} - if [ ! -f "${modslockfilefullpath}" ]; then - touch "${modslockfilefullpath}" - fn_script_log "Created ${modslockfilefullpath}" +} + +# Create tmp download mod directory +fn_mods_tmpdir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + exitcode=$? + echo -ne "creating mod download dir ${modstmpdir}..." + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fi fi } -# Clear mod download directory so that there is only one file in it since we don't know the file name and extention +# Clear contents of mod download directory when finished fn_clear_tmp_mods(){ if [ -d "${modstmpdir}" ]; then - rm -r "${modstmpdir}" - fn_script_log "Clearing mod download directory: ${modstmpdir}" + rm -r "${modstmpdir}"/* + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Clearing mod download directory ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Clearing mod download directory ${modstmpdir}" + fi + fi # Clear temp file list as well - if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - rm "${modsdatadir}/.removedfiles.tmp" + if [ -f "${modsdir}/.removedfiles.tmp" ]; then + rm "${modsdir}/.removedfiles.tmp" fi } -# Create tmp download mod directory -fn_mods_tmpdir(){ - if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - fn_script_log "Creating mod download directory: ${modstmpdir}" - fi -} +## Download management fn_install_mod_dl_extract(){ fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}" # Check if variable is valid checking if file has been downloaded and exists @@ -134,10 +150,10 @@ fn_remove_cfg_files(){ # Then delete the file! rm -r "${extractdir}/${filetoremove}" # Write this file path in a tmp file, to rebuild a full file list since it is rebuilt upon update - if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then - touch "${modsdatadir}/.removedfiles.tmp" + if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then + touch "${modsdir}/.removedfiles.tmp" fi - echo "${filetoremove}" >> "${modsdatadir}/.removedfiles.tmp" + echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" fi done fn_print_ok "Allow for preserving ${modprettyname} config files" @@ -148,20 +164,23 @@ fn_remove_cfg_files(){ # Create ${modcommand}-files.txt containing the full extracted file/directory list fn_mod_fileslist(){ echo -ne "building ${modcommand}-files.txt..." - fn_script_log "Building ${modcommand}-files.txt" + sleep 0.5 - # ${modsdatadir}/${modcommand}-files.txt - find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.txt + # ${modsdir}/${modcommand}-files.txt + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}"/${modcommand}-files.txt local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl + fn_script_log_fatal "Building ${modcommand}-files.txt" + core_exit.sh else fn_print_ok_eol_nl + fn_script_log_pass "Building ${modcommand}-files.txt" fi - fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}" + fn_script_log "Writing file list ${modsdir}/${modcommand}-files.txt" # Adding removed files if needed - if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.txt + if [ -f "${modsdir}/.removedfiles.tmp" ]; then + cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}"/${modcommand}-files.txt fi sleep 0.5 } @@ -169,24 +188,26 @@ fn_mod_fileslist(){ # Copy the mod to the destination ${modinstalldir} fn_mod_copy_destination(){ echo -ne "copying ${modprettyname} to ${modinstalldir}..." - fn_script_log "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 cp -Rf "${extractdir}/." "${modinstalldir}/" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl + fn_script_log_fatal "Copying ${modprettyname} to ${modinstalldir}" else fn_print_ok_eol_nl + fn_script_log_pass "Copying ${modprettyname} to ${modinstalldir}" fi } # Check if the mod is already installed and warn the user fn_mod_already_installed(){ - if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then - fn_print_warning_nl "${modprettyname} has already been installed" + if [ -f "${modsinstalledlistfullpath}" ]; then + if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then + fn_print_warning_nl "${modprettyname} is already installed" + fn_script_log_warn "${modprettyname} is already installed" sleep 1 - echo " * Config files, if any, might be overwritten." + echo " * Any configs may be overwritten." while true; do read -e -i "y" -p "Continue? [Y/n]" yn case $yn in @@ -196,24 +217,24 @@ fn_mod_already_installed(){ esac done fi - fn_script_log "${modprettyname} is already installed, overwriting any file." + fn_script_log_info "User selected to continue" fi } # Add the mod to the installed mods list fn_mod_add_list(){ # Append modname to lockfile if it's not already in it - if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then - echo "${modcommand}" >> "${modslockfilefullpath}" - fn_script_log "${modcommand} added to ${modslockfile}" + if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then + echo "${modcommand}" >> "${modsinstalledlistfullpath}" + fn_script_log_info "${modcommand} added to ${modsinstalledlist}" fi } fn_check_files_list(){ # File list must exist and be valid before any operation on it - if [ -f "${modsdatadir}/${modcommand}-files.txt" ]; then + if [ -f "${modsdir}/${modcommand}-files.txt" ]; then # How many lines is the file list - modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)" + modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" # If file list is empty if [ "${modsfilelistsize}" -eq 0 ]; then fn_print_failure "${modcommand}-files.txt is empty" @@ -222,15 +243,15 @@ fn_check_files_list(){ core_exit.sh fi else - fn_print_failure "${modsdatadir}/${modcommand}-files.txt does not exist" - fn_script_log_fatal "${modsdatadir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." + fn_print_failure "${modsdir}/${modcommand}-files.txt does not exist" + fn_script_log_fatal "${modsdir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." core_exit.sh fi } # Apply some post-install fixes to make sure everything will be fine fn_postinstall_tasks(){ - # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdatadir}/${modcommand}-files.txt + # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdir}/${modcommand}-files.txt # Check file validity fn_check_files_list # Output to the user @@ -248,7 +269,7 @@ fn_postinstall_tasks(){ # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" # Then delete matching line(s)! - sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.txt" + sed -i "/^${removefilevar}$/d" "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then break @@ -264,8 +285,8 @@ fn_postinstall_tasks(){ # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.txt - sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.txt" - sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.txt" + sed -i "/^addons\/metamod$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdir}/${modcommand}-files.txt" fi } @@ -392,7 +413,7 @@ fn_mod_compatible_test(){ fi } -# Checks if a mod is compatibile for installation +# Checks if a mod is compatible for installation # Provides available mods for installation # Provides commands for mods installation fn_mods_available(){ @@ -439,20 +460,22 @@ fn_mods_show_available(){ echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" + ((totalmods++)) done # If no mods are found if [ -z "${compatiblemodslist}" ]; then fn_print_fail "No mods are currently available for ${gamename}." core_exit.sh fi + fn_script_log_info "${totalmods} addons/mods are available for install" } # Checks if mods have been installed # Also returns ${installedmodscount} if mods were found fn_check_installed_mods(){ # Count installed mods - if [ -f "${modslockfilefullpath}" ]; then - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + if [ -f "${modsinstalledlistfullpath}" ]; then + installedmodscount="$(cat "${modsinstalledlistfullpath}" | wc -l)" fi } @@ -463,7 +486,7 @@ fn_mods_exit_if_not_installed(){ # Also returns ${installedmodscount} if mods were found fn_check_installed_mods # If no mods lockfile is found or if it is empty - if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then + if [ ! -f "${modsinstalledlistfullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -477,9 +500,9 @@ fn_mods_available_commands_from_installed(){ # Set/reset variables installedmodsline="1" installedmodslist=() - # Loop through every line of the installed mods list ${modslockfilefullpath} + # Loop through every line of the installed mods list ${modsinstalledlistfullpath} while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" # Get mod info to make sure mod exists fn_mod_get_info_from_command # Add the mod to available commands @@ -487,6 +510,9 @@ fn_mods_available_commands_from_installed(){ # Increment line check let installedmodsline=installedmodsline+1 done + if [ -n "${totalmods}" ] ;then + fn_script_log_info "${totalmods} addons/mods are already installed" + fi } # Displays a detailed list of installed mods @@ -542,6 +568,7 @@ fn_installed_mods_light_list(){ fn_mod_get_info_from_command # Display simple mod info to the user echo -e " * \e[1m${green}${modcommand}${default}${default}" + ((totalmodsinstalled++)) done echo "" fi @@ -577,8 +604,6 @@ fn_installed_mods_update_list(){ else echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi - ((totalmodsinstalled++)) - fn_script_log_info "${totalmodsinstalled} are already installed" done } @@ -608,7 +633,7 @@ fn_mod_get_info_from_command(){ break fi done - fn_script_log_info "${totalmods} are available for install" + # What happens if mod is not found if [ "${modinfocommand}" == "0" ]; then fn_script_log_error "Could not find information for ${currentmod}" @@ -618,7 +643,6 @@ fn_mod_get_info_from_command(){ fi } -fn_lgsm_requirements fn_mods_scrape_urls fn_mods_info fn_mods_available diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 298da3ce1..73584f3dd 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -12,8 +12,6 @@ local commandname="MODS" local commandaction="List Mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh - ## Useful variables # Separator name modseparator="MOD" @@ -64,7 +62,7 @@ fn_mods_info(){ # Get a proper URL for mods that don't provide a good one (optional) fn_mods_scrape_urls(){ - fn_script_log_info "retrieving latest mods URLs" + fn_script_log_info "Retrieving latest mods URLs" # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" From bd1dabc19403908a18594a0a1e3a19839bca84e6 Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 23 Jan 2017 14:49:08 -0600 Subject: [PATCH 147/185] Add a contributing guide This file will give new pull requests a warning to adhere to the projects guidelines and is a good reminder of our standards. https://help.github.com/articles/setting-guidelines-for-repository-contributors/ This is related to issue #1624 Feel free to suggest edits. --- CONTRIBUTING.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..28d8d3dac --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,40 @@ +# How to contribute + +I'm really glad you're reading this, because if you are then you have shown an interest in helping make LinuxGSM great. + +If you haven't already, come find us on [Discord](https://gameservermanagers.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. + +Here are some important resources: + + * [Issues Page](https://github.com/GameServerManagers/LinuxGSM/issues) provides a list of areas that could use some work, + * [Developing LGSM](https://github.com/GameServerManagers/LinuxGSM/wiki/Developing-LGSM) gives a detailed guide on developing LGSM, + * [LGSM Exit Codes](https://github.com/GameServerManagers/LinuxGSM/wiki/LGSM-Exit-Codes) describes and gives an explanation for exit codes, + * [gsquery](https://github.com/GameServerManagers/LinuxGSM/wiki/gsquery.py) describes the uses of the gsquery.py file, and + * [Branching](https://github.com/GameServerManagers/LinuxGSM/wiki/Branching) is our final guide to submitting changes. + +## Testing + +Please make sure all the code you write is working properly **before** you create a pull request. Information on debugging can be found in the following document: +[Debug Command](https://github.com/GameServerManagers/LinuxGSM/wiki/debug) +[Debugging your code](https://github.com/GameServerManagers/LinuxGSM/wiki/Developing-LGSM#testing-and-debugging-your-code) + +## Submitting changes + +Please send a [GitHub Pull Request to LinuxGSM](https://github.com/GameServerManagers/LinuxGSM/pull/new/develop) with a clear list of what you've done (read more about [pull requests](https://help.github.com/articles/about-pull-requests/)). Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit). + +Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this: + + $ git commit -m "A brief summary of the commit + > + > A paragraph describing what changed and its impact." +This will help us in understanding your code and determining where problems may arise. + +## Coding conventions + +Start reading our code and you'll get the hang of it. Explore how functions are organized and you'll see how we strive for readable code. + +Please give the following document a read and adjust your code according to its specifications. +[Syntax & Coding Conventions](https://github.com/GameServerManagers/LinuxGSM/wiki/Syntax-&-Conventions) + + + From bf1dc5b71d2068575cbca01c25812023a64c0e5e Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 23 Jan 2017 15:43:11 -0600 Subject: [PATCH 148/185] Update based on code review --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 28d8d3dac..6fe85bae6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ -# How to contribute +# How to contribute to LinuxGSM -I'm really glad you're reading this, because if you are then you have shown an interest in helping make LinuxGSM great. +We are really glad you're reading this, because if you are then you have shown an interest in helping make LinuxGSM great. If you haven't already, come find us on [Discord](https://gameservermanagers.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. From 1272cb42c60f4788345d84e667efdcbbbb121eaa Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 23 Jan 2017 15:57:06 -0600 Subject: [PATCH 149/185] Updated to add developer commands --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6fe85bae6..edb8ebf50 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ Here are some important resources: ## Testing Please make sure all the code you write is working properly **before** you create a pull request. Information on debugging can be found in the following document: -[Debug Command](https://github.com/GameServerManagers/LinuxGSM/wiki/debug) +[Developer Commands](https://github.com/GameServerManagers/LinuxGSM/wiki/Developer-Commands) [Debugging your code](https://github.com/GameServerManagers/LinuxGSM/wiki/Developing-LGSM#testing-and-debugging-your-code) ## Submitting changes From 3e17bc1daa6098022ccc41e5dbac732fcb41fb9f Mon Sep 17 00:00:00 2001 From: Chaos Date: Wed, 25 Jan 2017 08:41:59 -0600 Subject: [PATCH 150/185] Added a note about making an issue for features you work on --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index edb8ebf50..a90acec99 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,8 @@ We are really glad you're reading this, because if you are then you have shown a If you haven't already, come find us on [Discord](https://gameservermanagers.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. +Before working on a project we recommend that you create a issue in regards to the issue/feature. This will prevent duplicates while you work on the feature. If an issue already exists, make note that you are working on it so nobody else wastes their time working on the same project at the same time! + Here are some important resources: * [Issues Page](https://github.com/GameServerManagers/LinuxGSM/issues) provides a list of areas that could use some work, From f1dbdd6cc61565236a7569737c4d5b1302cc4ce4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 20:00:42 +0000 Subject: [PATCH 151/185] Major re-organise This is a major sort out of the new functions. To simplify and make it easier to follow the code. All functionality remains. Possible bugs in this that will be resolved after testing --- lgsm/functions/command_mods_install.sh | 160 ++++--- lgsm/functions/command_mods_remove.sh | 215 ++++----- lgsm/functions/command_mods_update.sh | 168 ++++--- lgsm/functions/mods_core.sh | 613 +++++++++---------------- lgsm/functions/mods_list.sh | 104 ++--- 5 files changed, 568 insertions(+), 692 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index d15250594..fc6f78c9e 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -9,67 +9,113 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -fn_mods_install_init(){ - fn_print_header - # Display installed mods - fn_installed_mods_light_list +check.sh +mods_core.sh + +fn_print_header + +# exits if no mods installed +fn_mods_check_installed - echo "Available addons/mods" +# Displays a list of installed mods +fn_mods_installed_list +if [ ${installedmodscount} -gt 0 ]; then + echo "Installed addons/mods" 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 an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " - read -r usermodselect - # Exit if user says exit or abort - if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then - core_exit.sh - # Supplementary output upon invalid user input - elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then - fn_print_error2_nl "${usermodselect} is not a valid addon/mod." - fi + # Go through all available commands, get details and display them to the user + for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do + # Current mod is the "llindex" value of the array we're going through + currentmod="${installedmodslist[llindex]}" + fn_mod_get_info + # Display mod info to the user + echo -e " * \e[1m${green}${modcommand}${default}${default}" + ((totalmodsinstalled++)) done echo "" - echo "Installing ${modprettyname}" - echo "=================================" - fn_script_log_info "${modprettyname} selected for install" - # Gives a pretty name to the user and get all mod info - currentmod="${usermodselect}" -} +fi -# Run all required operation -fn_mod_installation(){ - # Get mod info - fn_mod_get_info_from_command - # Check if mod is already installed - fn_mod_already_installed - # Check and create required files - fn_mods_files - # Clear lgsm/tmp/mods dir if exists then recreate it - fn_clear_tmp_mods - fn_mods_tmpdir - # Download & extract mod - fn_install_mod_dl_extract - # Convert to lowercase if needed - fn_mod_lowercase - # Build a file list - fn_mod_fileslist - # Copying to destination - fn_mod_copy_destination - # Ending with installation routines - fn_mod_add_list - # Post install fixes - fn_postinstall_tasks - # Cleaning - fn_clear_tmp_mods - echo "${modprettyname} installed" - fn_script_log_pass "${modprettyname} installed." -} +echo "Available addons/mods" +echo "=================================" +# Display available mods from mods_list.sh +# Set and reset vars +compatiblemodslistindex=0 +# As long as we're within index values +while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do + # Set values for convenience + displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" + displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" + displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" + displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" + # Output mods to the user + echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * ${cyan}${displayedmodcommand}${default}" + # Increment index from the amount of values we just displayed + let "compatiblemodslistindex+=4" + ((totalmods++)) +done + +# If no mods are available for a specific game +if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + fn_script_log_info "No mods are currently available for ${gamename}." + core_exit.sh +fi +fn_script_log_info "${totalmods} addons/mods are available for install" + +## User selects a mod +echo "" +while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do + echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " + read -r usermodselect + # Exit if user says exit or abort + if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." + fi +done +currentmod="${usermodselect}" + +echo "" +echo "Installing ${modprettyname}" +echo "=================================" +fn_script_log_info "${modprettyname} selected for install" + +# Check if the mod is already installed and warn the user +if [ -f "${modsinstalledlistfullpath}" ]; then + if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then + fn_print_warning_nl "${modprettyname} is already installed" + fn_script_log_warn "${modprettyname} is already installed" + sleep 1 + echo " * Any configs may be overwritten." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done + fi +fn_script_log_info "User selected to continue" +fi + +## Installation + +fn_mod_get_info +fn_mod_already_installed +fn_create_mods_dir +fn_mods_clear_tmp_dir +fn_mods_create_tmp_dir +fn_mod_install_files +fn_mod_lowercase +fn_mod_create_filelist +fn_mod_copy_destination +fn_mod_add_list +fn_mod_tidy_files_list +fn_mods_clear_tmp_dir +echo "${modprettyname} installed" +fn_script_log_pass "${modprettyname} installed." -check.sh -mods_core.sh -fn_mods_install_init -fn_mod_installation core_exit.sh \ No newline at end of file diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 6c8fdf0bb..e0b1623d1 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -9,114 +9,123 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +check.sh +mods_core.sh +fn_mods_check_installed +fn_print_header +echo "Remove addons/mods" +echo "=================================" -fn_mods_remove_init(){ - fn_print_header - echo "Remove addons/mods" - echo "=================================" - # A simple function to exit if no mods were installed - # Also returns ${installedmodscount} if mods were found - fn_mods_exit_if_not_installed - # Displays installed addons to the user - fn_installed_mods_medium_list - echo "" - # Keep prompting as long as the user input doesn't correspond to an available mod - while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a ${cyan}mod${default} to ${red}remove${default} (or exit to abort): " - read -r usermodselect - # Exit if user says exit or abort - if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then - core_exit.sh - # Supplementary output upon invalid user input - elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then - fn_print_error2_nl "${usermodselect} is not a valid addon/mod." - fi - done - fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." - echo " * Any custom files/configuration will be removed." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; exit;; - * ) echo "Please answer yes or no.";; - esac - done - # Gives a pretty name to the user and get all mod info - currentmod="${usermodselect}" - fn_mod_get_info_from_command - # Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize}) - fn_check_files_list +## Displays list of installed mods +# Generates list to display to user +fn_mods_installed_list +for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do + # Current mod is the "mlindex" value of the array we are going through + currentmod="${installedmodslist[mlindex]}" + # Get mod info + fn_mod_get_info + # Display mod info to the user + echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" +done -} +echo "" +# Keep prompting as long as the user input doesn't correspond to an available mod +while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do + echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " + read -r usermodselect + # Exit if user says exit or abort + if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." + fi +done -# Uninstall the mod -fn_mod_remove_process(){ - fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" - echo -e "removing ${modprettyname}" - echo -e "* ${modsfilelistsize} files to be removed" - echo -e "* location: ${modinstalldir}" - sleep 1 - # Go through every file and remove it - modfileline="1" - tput sc - while [ "${modfileline}" -le "${modsfilelistsize}" ]; do - # Current line defines current file to remove - currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" - # If file or directory exists, then remove it - fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" - if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then - rm -rf "${modinstalldir}/${currentfileremove}" - local exitcode=$? - fi - tput rc; tput el - printf "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize} : ${currentfileremove}..." +fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." +echo " * Any custom files/configuration will be removed." +while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; exit;; + * ) echo "Please answer yes or no.";; +esac +done - ((totalfileswc++)) - let modfileline=modfileline+1 - done - tput rc; tput ed; - echo -ne "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize}..." - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl - fi - sleep 0.5 - # Remove file list - echo -en "removing ${modcommand}-files.txt..." - sleep 0.5 - fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" - rm -rf "${modsdatadir}/${modcommand}-files.txt" - local exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl - fi - # Remove from installed mods list - echo -en "removing ${modcommand} from ${modslockfile}..." - sleep 0.5 - fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" - sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" - # Post install tasks to solve potential issues - local exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl +currentmod="${usermodselect}" +fn_mod_get_info +fn_check_mod_files_list + +# Uninstall the mod +fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" +echo -e "removing ${modprettyname}" +echo -e "* ${modsfilelistsize} files to be removed" +echo -e "* location: ${modinstalldir}" +sleep 1 +# Go through every file and remove it +modfileline="1" +tput sc +while [ "${modfileline}" -le "${modsfilelistsize}" ]; do + # Current line defines current file to remove + currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" + # If file or directory exists, then remove it + fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then + rm -rf "${modinstalldir}/${currentfileremove}" + local exitcode=$? fi - fn_postuninstall_tasks - echo "${modprettyname} removed" - fn_script_log "${modprettyname} removed" -} + tput rc; tput el + printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." + ((modfileline++)) +done +tput rc; tput ed; +echo -ne "removing ${modprettyname} ${modfileline} / ${modsfilelistsize}..." +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi +sleep 0.5 + +# Remove file list +echo -en "removing ${modcommand}-files.txt..." +sleep 0.5 +fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" +rm -rf "${modsdatadir}/${modcommand}-files.txt" +local exitcode=$? +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi + +# Remove mods from installed mods list +echo -en "removing ${modcommand} from ${modslockfile}..." +sleep 0.5 +fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" +sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" +local exitcode=$? +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi + +# Oxide fix +# Oxide replaces server files, so a validate is required after uninstall +if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then + fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" + fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" + exitbypass="1" + command_validate.sh + unset exitbypass +fi +echo "${modprettyname} removed" +fn_script_log "${modprettyname} removed" -check.sh -mods_core.sh -fn_mods_remove_init -fn_mod_remove_process core_exit.sh diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index ad757da6c..123e2b4e8 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -9,81 +9,107 @@ local commandname="MODS" local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +check.sh +mods_core.sh -fn_mods_update_init(){ - fn_script_log "Entering mods & addons update" - echo "=================================" - echo "${gamename} mods & addons update" - # A simple function to exit if no mods were installed - # Also returns ${installedmodscount} if mods were found - fn_mods_exit_if_not_installed - echo "" - fn_print_information_nl "${installedmodscount} mods or addons will be updated:" - fn_script_log_info "${installedmodscount} mods or addons will be updated" - # Display a list of installed addons - fn_installed_mods_update_list -} +fn_print_header -# Recursively list all installed mods and apply update -fn_mods_update_loop(){ - # Reset line value - installedmodsline="1" - while [ $installedmodsline -le $installedmodscount ]; do - # Current line defines current mod command - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" - if [ -n "${currentmod}" ]; then - # Get mod info - fn_mod_get_info_from_command - # Don't update the mod if it's policy is to "NOUPDATE" - if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_info "${modprettyname} won't be updated to preserve custom files" - fn_script_log "${modprettyname} won't be updated to preserve custom files." - let installedmodsline=installedmodsline+1 - else - echo "" - fn_print_dots_nl "Updating ${modprettyname}" - fn_script_log "Updating ${modprettyname}." - # Check and create required files - fn_mods_files - # 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 - # Convert to lowercase if needed - fn_mod_lowercase - # Remove files that should not be erased - fn_remove_cfg_files - # Build a file list - fn_mod_fileslist - # Copying to destination - fn_mod_copy_destination - # Ending with installation routines - fn_mod_add_list - # Post install fixes - fn_postinstall_tasks - # Cleaning - fn_clear_tmp_mods - fn_print_ok "${modprettyname} updated" - fn_script_log "${modprettyname} updated." - let installedmodsline=installedmodsline+1 - fi +echo "Update addons/mods" +echo "=================================" +fn_mods_check_installed +fn_print_information_nl "${installedmodscount} addons/mods will be updated" +fn_script_log_info "${installedmodscount} mods or addons will be updated" +fn_mods_installed_list +echo "" +echo "Installed addons/mods" +echo "=================================" +# Go through all available commands, get details and display them to the user +for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do + # Current mod is the "ulindex" value of the array we're going through + currentmod="${installedmodslist[ulindex]}" + fn_mod_get_info + # Display installed mods and the update policy + if [ -z "${modkeepfiles}" ]; then + # If modkeepfiles is not set for some reason, that's a problem + fn_script_log_error "Couldn't find update policy for ${modprettyname}" + fn_print_error_nl "Couldn't find update policy for ${modprettyname}" + exitcode="1" + core_exit.sh + # If the mod won't get updated + elif [ "${modkeepfiles}" == "NOUPDATE" ]; then + echo -e " * \e[31m${modprettyname}${default} (won't be updated)" + # If the mode is just overwritten + elif [ "${modkeepfiles}" == "OVERWRITE" ]; then + echo -e " * \e[1m${modprettyname}${default} (overwrite)" + else + echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" + fi +done + +## Update +# List all installed mods and apply update +# Reset line value +installedmodsline="1" +while [ ${installedmodsline} -le ${installedmodscount} ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + if [ -n "${currentmod}" ]; then + fn_mod_get_info + # Don not update mod if the policy is set to "NOUPDATE" + if [ "${modkeepfiles}" == "NOUPDATE" ]; then + fn_print_info "${modprettyname} will not be updated to preserve custom files" + fn_script_log_info "${modprettyname} will not be updated to preserve custom files" else - fn_print_fail "No mod was selected" - fn_script_log_fail "No mod was selected." - exitcode="1" - core_exit.sh + echo "" + fn_create_mods_dir + fn_mods_clear_tmp_dir + fn_mods_create_tmp_dir + fn_mod_install_files + fn_mod_lowercase + fn_remove_cfg_files + fn_mod_create_filelist + fn_mod_copy_destination + fn_mod_add_list + fn_mod_tidy_files_list + fn_mods_clear_tmp_dir fi - done - echo "" - fn_print_ok_nl "Mods update complete" - fn_script_log "Mods update complete." + ((installedmodsline++)) + else + fn_print_fail "No mod was selected" + fn_script_log_fail "No mod was selected" + exitcode="1" + core_exit.sh + fi +done +echo "" +fn_print_ok_nl "Mods update complete" +fn_script_log "Mods update complete" + +# Prevents specific files being overwritten upon update (set by ${modkeepfiles}) +# For that matter, remove cfg files after extraction before copying them to destination +fn_remove_cfg_files(){ + if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then + fn_print_dots "Preventing overwriting of ${modprettyname} config files" + fn_script_log "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + # Count how many files there are to remove + removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + # Test all subvalues of "modkeepfiles" using the ";" separator + for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + # Put the current file we are looking for into a variable + filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + # If it matches an existing file that have been extracted delete the file + if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then + rm -r "${extractdir}/${filetoremove}" + # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update + if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then + touch "${modsdir}/.removedfiles.tmp" + fi + echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" + fi + done + fn_print_ok "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + fi } -check.sh -mods_core.sh -fn_mods_update_init -fn_mods_update_loop core_exit.sh diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 4295fc478..f35667c6b 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -16,82 +16,17 @@ extractdir="${modstmpdir}/extract" modsinstalledlist="installed-mods.txt" modsinstalledlistfullpath="${modsdir}/${modsinstalledlist}" -# Database initialisation -mods_list.sh - -## Directory management - -# Create mods files and directories if it doesn't exist -# Assuming the game is already installed as mods_list.sh checked for it. -fn_mods_files(){ - # Create mod install directory - if [ ! -d "${modinstalldir}" ]; then - echo "creating mods install directory ${modinstalldir}..." - mkdir -p "${modinstalldir}" - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modstmpdir}" - core_exit.sh - else - fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modstmpdir}" - fi - sleep 0.5 - fi - - # Create lgsm/data/${modsinstalledlist} - if [ ! -f "${modsinstalledlistfullpath}" ]; then - touch "${modsinstalledlistfullpath}" - fn_script_log "Created ${modsinstalledlistfullpath}" - fi -} - -# Create tmp download mod directory -fn_mods_tmpdir(){ - if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - exitcode=$? - echo -ne "creating mod download dir ${modstmpdir}..." - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modstmpdir}" - core_exit.sh - else - fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modstmpdir}" - fi - fi -} -# Clear contents of mod download directory when finished -fn_clear_tmp_mods(){ - if [ -d "${modstmpdir}" ]; then - rm -r "${modstmpdir}"/* - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - fn_script_log_fatal "Clearing mod download directory ${modstmpdir}" - core_exit.sh - else - fn_print_ok_eol_nl - fn_script_log_pass "Clearing mod download directory ${modstmpdir}" - fi - - fi - # Clear temp file list as well - if [ -f "${modsdir}/.removedfiles.tmp" ]; then - rm "${modsdir}/.removedfiles.tmp" - fi -} +## Installation -## Download management -fn_install_mod_dl_extract(){ +# Download management +fn_mod_install_files(){ fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}" # Check if variable is valid checking if file has been downloaded and exists if [ ! -f "${modstmpdir}/${modfilename}" ]; then - fn_print_failure "An issue occurred upon downloading ${modprettyname}" + fn_print_failure "An issue occurred downloading ${modprettyname}" + fn_script_log_fail "An issue occurred downloading ${modprettyname}" core_exit.sh fi if [ ! -d "${extractdir}" ]; then @@ -132,60 +67,29 @@ fn_mod_lowercase(){ fi } -# Don't overwrite specified files upon update (set by ${modkeepfiles}) -# For that matter, remove cfg files after extraction before copying them to destination -fn_remove_cfg_files(){ - if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - fn_print_dots "Allow for not overwriting ${modprettyname} config files" - fn_script_log "Allow for not overwriting ${modprettyname} config files" - sleep 0.5 - # Let's count how many files there are to remove - removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do - # Put current file we're looking for into a variable - filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - # If it matches an existing file that have been extracted - if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - # Then delete the file! - rm -r "${extractdir}/${filetoremove}" - # Write this file path in a tmp file, to rebuild a full file list since it is rebuilt upon update - if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then - touch "${modsdir}/.removedfiles.tmp" - fi - echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" - fi - done - fn_print_ok "Allow for preserving ${modprettyname} config files" - sleep 0.5 - fi -} - # Create ${modcommand}-files.txt containing the full extracted file/directory list -fn_mod_fileslist(){ +fn_mod_create_filelist(){ echo -ne "building ${modcommand}-files.txt..." - sleep 0.5 # ${modsdir}/${modcommand}-files.txt - find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}"/${modcommand}-files.txt + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - fn_script_log_fatal "Building ${modcommand}-files.txt" + fn_script_log_fatal "Building ${modsdir}/${modcommand}-files.txt" core_exit.sh else fn_print_ok_eol_nl - fn_script_log_pass "Building ${modcommand}-files.txt" + fn_script_log_pass "Building ${modsdir}/${modcommand}-files.txt" fi - fn_script_log "Writing file list ${modsdir}/${modcommand}-files.txt" # Adding removed files if needed if [ -f "${modsdir}/.removedfiles.tmp" ]; then - cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}"/${modcommand}-files.txt + cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}/${modcommand}-files.txt" fi sleep 0.5 } -# Copy the mod to the destination ${modinstalldir} +# Copy the mod into serverfiles fn_mod_copy_destination(){ echo -ne "copying ${modprettyname} to ${modinstalldir}..." sleep 0.5 @@ -200,75 +104,32 @@ fn_mod_copy_destination(){ fi } -# Check if the mod is already installed and warn the user -fn_mod_already_installed(){ - if [ -f "${modsinstalledlistfullpath}" ]; then - if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then - fn_print_warning_nl "${modprettyname} is already installed" - fn_script_log_warn "${modprettyname} is already installed" - sleep 1 - echo " * Any configs may be overwritten." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; core_exit.sh;; - * ) echo "Please answer yes or no.";; - esac - done - fi - fn_script_log_info "User selected to continue" - fi -} - -# Add the mod to the installed mods list +# Add the mod to the installed-mods.txt fn_mod_add_list(){ - # Append modname to lockfile if it's not already in it if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then echo "${modcommand}" >> "${modsinstalledlistfullpath}" fn_script_log_info "${modcommand} added to ${modsinstalledlist}" fi } -fn_check_files_list(){ - # File list must exist and be valid before any operation on it - if [ -f "${modsdir}/${modcommand}-files.txt" ]; then - # How many lines is the file list - modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" - # If file list is empty - if [ "${modsfilelistsize}" -eq 0 ]; then - fn_print_failure "${modcommand}-files.txt is empty" - echo "* Unable to remove ${modprettyname}" - fn_script_log_fatal "${modcommand}-files.txt is empty: Unable to remove ${modprettyname}." - core_exit.sh - fi - else - fn_print_failure "${modsdir}/${modcommand}-files.txt does not exist" - fn_script_log_fatal "${modsdir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." - core_exit.sh - fi -} - -# Apply some post-install fixes to make sure everything will be fine -fn_postinstall_tasks(){ - # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdir}/${modcommand}-files.txt +fn_mod_tidy_files_list(){ + # Prevent sensitive directories from being erased by removing them from: ${modcommand}-files.txt # Check file validity - fn_check_files_list + fn_check_mod_files_list # Output to the user echo -ne "tidy up ${modcommand}-files.txt..." sleep 0.5 - fn_script_log_info "Rearranging ${modcommand}-files.txt" - # What lines/files to remove from file list (end var with a ";" separator) + fn_script_log_info "Tidy up ${modcommand}-files.txt" + # Lines/files to remove from file list (end with ";" separator) removefromlist="cfg;addons;" # Loop through files to remove from file list, - # that way these files won't get removed upon uninstall - # How many elements to remove from list + # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" # Test all subvalue of "removefromlist" using the ";" separator for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do # Put current file into test variable - removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # Then delete matching line(s)! + removefilevar="$(echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }')" + # Delete matching line(s) sed -i "/^${removefilevar}$/d" "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -290,47 +151,112 @@ fn_postinstall_tasks(){ fi } -# Apply some post-uninstall fixes to make sure everything will be fine -fn_postuninstall_tasks(){ - # Oxide fix - # Oxide replaces server files, so a validate is required after uninstall - if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then - fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" - fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" - exitbypass="1" - command_validate.sh - unset exitbypass +## Information Gathering + +# Get details of a mod any (relevant and unique, such as full mod name or install command) value +fn_mod_get_info(){ + # Variable to know when job is done + modinfocommand="0" + # Find entry in global array + for ((index=0; index <= ${#mods_global_array[@]}; index++)); do + # When entry is found + if [ "${mods_global_array[index]}" == "${currentmod}" ]; then + # Go back to the previous "MOD" separator + for ((index=index; index <= ${#mods_global_array[@]}; index--)); do + # When "MOD" is found + if [ "${mods_global_array[index]}" == "MOD" ]; then + # Get info + if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + exitcode="1" + core_exit.sh + fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubdirs="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" + fi + modinfocommand="1" + break + fi + ((totalmods++)) + done + fi + # Exit the loop if job is done + if [ "${modinfocommand}" == "1" ]; then + break + fi + done + + # What happens if mod is not found + if [ "${modinfocommand}" == "0" ]; then + fn_script_log_error "Could not find information for ${currentmod}" + fn_print_error_nl "Could not find information for ${currentmod}" + exitcode="1" + core_exit.sh fi } -######################### -## mods_list.sh arrays ## -######################### - -## Define info for a mod - -# Define all variables from a mod at once when index is set to a separator -fn_mod_info(){ -# If for some reason no index is set, none of this can work -if [ -z "$index" ]; then - fn_print_error "index variable not set. Please report an issue to LGSM Team." - echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - exitcode="1" - core_exit.sh -fi - modcommand="${mods_global_array[index+1]}" - modprettyname="${mods_global_array[index+2]}" - modurl="${mods_global_array[index+3]}" - modfilename="${mods_global_array[index+4]}" - modsubdirs="${mods_global_array[index+5]}" - modlowercase="${mods_global_array[index+6]}" - modinstalldir="${mods_global_array[index+7]}" - modkeepfiles="${mods_global_array[index+8]}" - modengines="${mods_global_array[index+9]}" - modgames="${mods_global_array[index+10]}" - modexcludegames="${mods_global_array[index+11]}" - modsite="${mods_global_array[index+12]}" - moddescription="${mods_global_array[index+13]}" +# Builds list of installed mods +# using installed-mods.txt grabing mod info from mods_list.sh +fn_mods_installed_list(){ + # Set/reset variables + installedmodsline="1" + installedmodslist=() + # Loop through every line of the installed mods list ${modsinstalledlistfullpath} + while [ ${installedmodsline} -le ${installedmodscount} ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" + # Get mod info to make sure mod exists + fn_mod_get_info + # Add the mod to available commands + installedmodslist+=( "${modcommand}" ) + # Increment line check + ((installedmodsline++)) + done + if [ -n "${totalmods}" ] ;then + fn_script_log_info "${totalmods} addons/mods are already installed" + fi +} + +# Checks if a mod is compatible for installation +# Provides available mods for installation +# Provides commands for mods installation +fn_mods_available(){ + # First, reset variables + compatiblemodslist=() + availablemodscommands=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" + # Find compatible games + # Find separators through the global array + for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do + # If current value is a separator; then + if [ "${mods_global_array[index]}" == "${modseparator}" ]; then + # Set mod variables + fn_mods_define + # Test if game is compatible + fn_mod_compatible_test + # If game is compatible + if [ "${modcompatibility}" == "1" ]; then + # Put it into an array to prepare user output + compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) + # Keep available commands in an array to make life easier + availablemodscommands+=( "${modcommand}" ) + fi + fi + done } ## Mod compatibility check @@ -413,80 +339,82 @@ fn_mod_compatible_test(){ fi } -# Checks if a mod is compatible for installation -# Provides available mods for installation -# Provides commands for mods installation -fn_mods_available(){ - # First, reset variables - compatiblemodslist=() - availablemodscommands=() - modprettynamemaxlength="0" - modsitemaxlength="0" - moddescriptionmaxlength="0" - modcommandmaxlength="0" - # Find compatible games - # Find separators through the global array - for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do - # If current value is a separator; then - if [ "${mods_global_array[index]}" == "${modseparator}" ]; then - # Set mod variables - fn_mod_info - # Test if game is compatible - fn_mod_compatible_test - # If game is compatible - if [ "${modcompatibility}" == "1" ]; then - # Put it into an array to prepare user output - compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) - # Keep available commands in an array to make life easier - availablemodscommands+=( "${modcommand}" ) - fi +## Directory management + +# Create mods files and directories if it doesn't exist +fn_create_mods_dir(){ + # Create mod install directory + if [ ! -d "${modinstalldir}" ]; then + echo "creating mods install directory ${modinstalldir}..." + mkdir -p "${modinstalldir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modinstalldir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modinstalldir}" fi - done + sleep 0.5 + fi + + # Create lgsm/data/${modsinstalledlist} + if [ ! -f "${modsinstalledlistfullpath}" ]; then + touch "${modsinstalledlistfullpath}" + fn_script_log_info "Created ${modsinstalledlistfullpath}" + fi } -# Output available mods in a nice way to the user -fn_mods_show_available(){ - # Set and reset vars - compatiblemodslistindex=0 - # As long as we're within index values - while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do - # Set values for convenience - displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" - displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" - displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" - displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" - # Output mods to the user - echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * ${cyan}${displayedmodcommand}${default}" - # Increment index from the amount of values we just displayed - let "compatiblemodslistindex+=4" - ((totalmods++)) - done - # If no mods are found - if [ -z "${compatiblemodslist}" ]; then - fn_print_fail "No mods are currently available for ${gamename}." - core_exit.sh +# Create tmp download mod directory +fn_mods_create_tmp_dir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + exitcode=$? + echo -ne "creating mod download dir ${modstmpdir}..." + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fi fi - fn_script_log_info "${totalmods} addons/mods are available for install" } -# Checks if mods have been installed -# Also returns ${installedmodscount} if mods were found -fn_check_installed_mods(){ +# Remove the tmp mod download directory when finished +fn_mods_clear_tmp_dir(){ + if [ -d "${modstmpdir}" ]; then + rm -r "${modstmpdir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Clearing mod download directory ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Clearing mod download directory ${modstmpdir}" + fi + + fi + # Clear temp file list as well + if [ -f "${modsdir}/.removedfiles.tmp" ]; then + rm "${modsdir}/.removedfiles.tmp" + fi +} + + +# Exit if no mods were installed +fn_mods_check_installed(){ # Count installed mods if [ -f "${modsinstalledlistfullpath}" ]; then installedmodscount="$(cat "${modsinstalledlistfullpath}" | wc -l)" + else + installedmodscount=0 fi -} - -# A simple function to exit if no mods were installed -# Also returns ${installedmodscount} if mods were found -fn_mods_exit_if_not_installed(){ - # Checks if mods have been installed - # Also returns ${installedmodscount} if mods were found - fn_check_installed_mods - # If no mods lockfile is found or if it is empty - if [ ! -f "${modsinstalledlistfullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then + # If no mods are found + if [ ${installedmodscount} -eq 0 ]; then fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -494,155 +422,26 @@ fn_mods_exit_if_not_installed(){ fi } -# Builds installed mods list and sets available commands according to installed mods -# (requires ${installedmodscount} from fn_check_installed_mods) -fn_mods_available_commands_from_installed(){ - # Set/reset variables - installedmodsline="1" - installedmodslist=() - # Loop through every line of the installed mods list ${modsinstalledlistfullpath} - while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" - # Get mod info to make sure mod exists - fn_mod_get_info_from_command - # Add the mod to available commands - installedmodslist+=( "${modcommand}" ) - # Increment line check - let installedmodsline=installedmodsline+1 - done - if [ -n "${totalmods}" ] ;then - fn_script_log_info "${totalmods} addons/mods are already installed" - fi -} - -# Displays a detailed list of installed mods -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -fn_installed_mods_detailed_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((dlindex=0; dlindex < ${#installedmodslist[@]}; dlindex++)); do - # Current mod is the "dlindex" value of the array we're going through - currentmod="${installedmodslist[dlindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display mod info to the user - echo -e "\e[1m${modprettyname}${default} - ${moddescription} - ${modsite}" - echo -e " * ${cyan}${modcommand}${default}" - done -} - -# Displays a detailed list of installed mods -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -fn_installed_mods_medium_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do - # Current mod is the "mlindex" value of the array we're going through - currentmod="${installedmodslist[mlindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display mod info to the user - echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" - done -} - -# Displays a simple list of installed mods -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -# This list is only displayed when some mods are installed -fn_installed_mods_light_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - if [ "${installedmodscount}" -gt 0 ]; then - echo "Installed addons/mods" - echo "=================================" - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do - # Current mod is the "llindex" value of the array we're going through - currentmod="${installedmodslist[llindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display simple mod info to the user - echo -e " * \e[1m${green}${modcommand}${default}${default}" - ((totalmodsinstalled++)) - done - echo "" - fi -} - -# Displays a simple list of installed mods for mods-update command -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -fn_installed_mods_update_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - echo "=================================" - echo "Installed addons/mods" - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do - # Current mod is the "ulindex" value of the array we're going through - currentmod="${installedmodslist[ulindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display simple mod info to the user according to the update policy - # If modkeepfiles is not set for some reason, that's a problem - if [ -z "${modkeepfiles}" ]; then - fn_script_log_error "Couldn't find update policy for ${modprettyname}" - fn_print_error_nl "Couldn't find update policy for ${modprettyname}" - exitcode="1" +fn_check_mod_files_list(){ + # File list must exist and be valid before any operation on it + if [ -f "${modsdir}/${modcommand}-files.txt" ]; then + # How many lines is the file list + modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" + # If file list is empty + if [ "${modsfilelistsize}" -eq 0 ]; then + fn_print_failure "${modcommand}-files.txt is empty" + echo "* Unable to remove ${modprettyname}" + fn_script_log_fatal "${modcommand}-files.txt is empty: Unable to remove ${modprettyname}." core_exit.sh - # If the mod won't get updated - elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}${default} (won't be updated)" - # If the mode is just overwritten - elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}${default} (overwrite)" - else - echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" - fi - done -} - -# Get details of a mod any (relevant and unique, such as full mod name or install command) value -fn_mod_get_info_from_command(){ - # Variable to know when job is done - modinfocommand="0" - # Find entry in global array - for ((index=0; index <= ${#mods_global_array[@]}; index++)); do - # When entry is found - if [ "${mods_global_array[index]}" == "${currentmod}" ]; then - # Go back to the previous "MOD" separator - for ((index=index; index <= ${#mods_global_array[@]}; index--)); do - # When "MOD" is found - if [ "${mods_global_array[index]}" == "MOD" ]; then - # Get info - fn_mod_info - modinfocommand="1" - break - fi - ((totalmods++)) - done - - fi - # Exit the loop if job is done - if [ "${modinfocommand}" == "1" ]; then - break fi - done - - # What happens if mod is not found - if [ "${modinfocommand}" == "0" ]; then - fn_script_log_error "Could not find information for ${currentmod}" - fn_print_error_nl "Could not find information for ${currentmod}" - exitcode="1" + else + fn_print_failure "${modsdir}/${modcommand}-files.txt does not exist" + fn_script_log_fatal "${modsdir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." core_exit.sh fi } -fn_mods_scrape_urls -fn_mods_info -fn_mods_available +# Database initialisation +mods_list.sh +mods_dir.sh +fn_mods_available \ No newline at end of file diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 73584f3dd..566efedc1 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -17,61 +17,57 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" modseparator="MOD" # Define mods information (required) -fn_mods_info(){ - # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) - # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) - # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) - # None of those values can be empty - # index | Usage - # [0] | MOD: separator, all mods must begin with it - # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) - # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user - # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) - # [4] | "filename": the output filename - # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) - # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) - # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) - # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating - # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value - # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value - # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) - # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install - # [13] | "Short Description" a description showed to the user upon installation +# REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) +# Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) +# Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) +# None of those values can be empty +# index | Usage +# [0] | MOD: separator, all mods must begin with it +# [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) +# [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user +# [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) +# [4] | "filename": the output filename +# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) +# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) +# [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating +# [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value +# [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value +# [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) +# [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install +# [13] | "Short Description" a description showed to the user upon installation - # Source mods - mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) - mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "NOTGAMES" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) - # Garry's Mod Addons - mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) - mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) - mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) - mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) - mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) - mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) - mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) - mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) - mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) - # Oxidemod - mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Rust.zip" "Oxide-Rust_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Rust;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-rust.1659" "Allows for the use of plugins" ) - mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) - mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) +# Source mods +mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) +mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "NOTGAMES" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) +# Garry's Mod Addons +mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) +mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) +mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) +mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) +mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) +mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) +mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) +mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) +mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) +# Oxidemod +mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Rust.zip" "Oxide-Rust_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Rust;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-rust.1659" "Allows for the use of plugins" ) +mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) +mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) - # REQUIRED: Set all mods info into one array for convenience - mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) -} +# REQUIRED: Set all mods info into one array for convenience +mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) # Get a proper URL for mods that don't provide a good one (optional) -fn_mods_scrape_urls(){ - fn_script_log_info "Retrieving latest mods URLs" - # Metamod - metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" - metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" - metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" - metamodurl="${metamoddownloadurl}/${metamodlatestfile}" - # Sourcemod - sourcemodmversion="1.8" - sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" - sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" - sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" - sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" -} +fn_script_log_info "Retrieving latest mods URLs" +# Metamod +metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" +metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" +metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" +metamodurl="${metamoddownloadurl}/${metamodlatestfile}" +# Sourcemod +sourcemodmversion="1.8" +sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" +sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" +sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" +sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" From db3e0c64ebadff7bba1963fd9b1b16e2c5613682 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:06:36 +0000 Subject: [PATCH 152/185] Bug fixes --- lgsm/functions/command_mods_install.sh | 4 -- lgsm/functions/mods_core.sh | 78 ++++++++++++++------------ 2 files changed, 43 insertions(+), 39 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index fc6f78c9e..0519c75c8 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -14,9 +14,6 @@ mods_core.sh fn_print_header -# exits if no mods installed -fn_mods_check_installed - # Displays a list of installed mods fn_mods_installed_list if [ ${installedmodscount} -gt 0 ]; then @@ -104,7 +101,6 @@ fi ## Installation fn_mod_get_info -fn_mod_already_installed fn_create_mods_dir fn_mods_clear_tmp_dir fn_mods_create_tmp_dir diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index f35667c6b..9be5127c0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -44,7 +44,7 @@ fn_mod_lowercase(){ fn_script_log "Converting ${modprettyname} files to lowercase" files=$(find "${extractdir}" -depth | wc -l) echo -en "\r" - while read src; do + while read -r src; do dst=`dirname "${src}"`/`basename "${src}" | tr '[A-Z]' '[a-z]'` if [ "${src}" != "${dst}" ] then @@ -126,7 +126,7 @@ fn_mod_tidy_files_list(){ # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" # Test all subvalue of "removefromlist" using the ";" separator - for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do + for ((filesindex=1; filesindex < removefromlistamount; filesindex++)); do # Put current file into test variable removefilevar="$(echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }')" # Delete matching line(s) @@ -166,31 +166,13 @@ fn_mod_get_info(){ # When "MOD" is found if [ "${mods_global_array[index]}" == "MOD" ]; then # Get info - if [ -z "$index" ]; then - fn_print_error "index variable not set. Please report an issue." - echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - exitcode="1" - core_exit.sh - fi - modcommand="${mods_global_array[index+1]}" - modprettyname="${mods_global_array[index+2]}" - modurl="${mods_global_array[index+3]}" - modfilename="${mods_global_array[index+4]}" - modsubdirs="${mods_global_array[index+5]}" - modlowercase="${mods_global_array[index+6]}" - modinstalldir="${mods_global_array[index+7]}" - modkeepfiles="${mods_global_array[index+8]}" - modengines="${mods_global_array[index+9]}" - modgames="${mods_global_array[index+10]}" - modexcludegames="${mods_global_array[index+11]}" - modsite="${mods_global_array[index+12]}" - moddescription="${mods_global_array[index+13]}" - fi + fn_mod_info modinfocommand="1" break fi ((totalmods++)) done + fi # Exit the loop if job is done if [ "${modinfocommand}" == "1" ]; then @@ -207,12 +189,40 @@ fn_mod_get_info(){ fi } +# Define all variables for a mod at once when index is set to a separator +fn_mods_define(){ +if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + exitcode="1" + core_exit.sh +fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubdirs="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" +} + # Builds list of installed mods # using installed-mods.txt grabing mod info from mods_list.sh fn_mods_installed_list(){ + fn_mods_count_installed # Set/reset variables installedmodsline="1" installedmodslist=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" # Loop through every line of the installed mods list ${modsinstalledlistfullpath} while [ ${installedmodsline} -le ${installedmodscount} ]; do currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" @@ -235,10 +245,6 @@ fn_mods_available(){ # First, reset variables compatiblemodslist=() availablemodscommands=() - modprettynamemaxlength="0" - modsitemaxlength="0" - moddescriptionmaxlength="0" - modcommandmaxlength="0" # Find compatible games # Find separators through the global array for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do @@ -270,7 +276,7 @@ fn_compatible_mod_games(){ # How many games we need to test gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do + for ((gamevarindex=1; gamevarindex < gamesamount; gamevarindex++)); do # Put current game name into modtest variable gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If game name matches @@ -312,7 +318,7 @@ fn_not_compatible_mod_games(){ # How many engines we need to test excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modexcludegames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do + for ((gamevarindex=1; gamevarindex < excludegamesamount; gamevarindex++)); do # Put current engine name into modtest variable excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If engine name matches @@ -404,15 +410,18 @@ fn_mods_clear_tmp_dir(){ fi } - -# Exit if no mods were installed -fn_mods_check_installed(){ - # Count installed mods +fn_mods_count_installed(){ if [ -f "${modsinstalledlistfullpath}" ]; then - installedmodscount="$(cat "${modsinstalledlistfullpath}" | wc -l)" + installedmodscount="$(wc -l < "${modsinstalledlistfullpath}")" else installedmodscount=0 fi +} + +# Exit if no mods were installed +fn_mods_check_installed(){ + # Count installed mods + # If no mods are found if [ ${installedmodscount} -eq 0 ]; then fn_print_information_nl "No installed mods or addons were found" @@ -426,7 +435,7 @@ fn_check_mod_files_list(){ # File list must exist and be valid before any operation on it if [ -f "${modsdir}/${modcommand}-files.txt" ]; then # How many lines is the file list - modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" + modsfilelistsize="$(wc -l < "${modsdir}/${modcommand}-files.txt")" # If file list is empty if [ "${modsfilelistsize}" -eq 0 ]; then fn_print_failure "${modcommand}-files.txt is empty" @@ -443,5 +452,4 @@ fn_check_mod_files_list(){ # Database initialisation mods_list.sh -mods_dir.sh fn_mods_available \ No newline at end of file From 6422904488422178c02934e378e9d1e40824cef5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:09:07 +0000 Subject: [PATCH 153/185] fn_mods_define --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9be5127c0..c8aa5f492 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -166,7 +166,7 @@ fn_mod_get_info(){ # When "MOD" is found if [ "${mods_global_array[index]}" == "MOD" ]; then # Get info - fn_mod_info + fn_mods_define modinfocommand="1" break fi From 63a8193798bb03d814490a3c5efc77497f4caf00 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:19:01 +0000 Subject: [PATCH 154/185] corrected variable --- lgsm/functions/command_mods_remove.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index e0b1623d1..a19a48ae7 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -69,7 +69,7 @@ modfileline="1" tput sc while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove - currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" + currentfileremove="$(sed "${modfileline}q;d" "${modsdir}/${modcommand}-files.txt")" # If file or directory exists, then remove it fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then @@ -93,8 +93,8 @@ sleep 0.5 # Remove file list echo -en "removing ${modcommand}-files.txt..." sleep 0.5 -fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" -rm -rf "${modsdatadir}/${modcommand}-files.txt" +fn_script_log "Removing: ${modsdir}/${modcommand}-files.txt" +rm -rf "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl From c2de5e9c81cc3b16cd0abbf65390905a4996570c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:28:25 +0000 Subject: [PATCH 155/185] corrected var --- lgsm/functions/command_mods_remove.sh | 6 +++--- lgsm/functions/command_mods_update.sh | 2 +- lgsm/functions/mods_core.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index a19a48ae7..662f738bf 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -81,7 +81,7 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do ((modfileline++)) done tput rc; tput ed; -echo -ne "removing ${modprettyname} ${modfileline} / ${modsfilelistsize}..." +echo -ne "sed ${modprettyname} ${modfileline} / ${modsfilelistsize}..." if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl core_exit.sh @@ -106,8 +106,8 @@ fi # Remove mods from installed mods list echo -en "removing ${modcommand} from ${modslockfile}..." sleep 0.5 -fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" -sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" +fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" +sed -i "/^${modcommand}$/d" "${modsinstalledlist}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 123e2b4e8..b89fdf015 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -51,7 +51,7 @@ done # Reset line value installedmodsline="1" while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlist}")" if [ -n "${currentmod}" ]; then fn_mod_get_info # Don not update mod if the policy is set to "NOUPDATE" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c8aa5f492..1760d852f 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -421,7 +421,7 @@ fn_mods_count_installed(){ # Exit if no mods were installed fn_mods_check_installed(){ # Count installed mods - + fn_mods_count_installed # If no mods are found if [ ${installedmodscount} -eq 0 ]; then fn_print_information_nl "No installed mods or addons were found" From 622a3bc8fd76216606bc78a000cf2eb7f67c7ef9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:42:54 +0000 Subject: [PATCH 156/185] messages --- lgsm/functions/mods_core.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1760d852f..1d3edc48d 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -377,14 +377,14 @@ fn_mods_create_tmp_dir(){ if [ ! -d "${modstmpdir}" ]; then mkdir -p "${modstmpdir}" exitcode=$? - echo -ne "creating mod download dir ${modstmpdir}..." + echo -ne "creating mod download directory ${modstmpdir}..." if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + fn_script_log_fatal "Creating mod download directory ${modstmpdir}" core_exit.sh else fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fn_script_log_pass "Creating mod download directory ${modstmpdir}" fi fi } @@ -392,6 +392,7 @@ fn_mods_create_tmp_dir(){ # Remove the tmp mod download directory when finished fn_mods_clear_tmp_dir(){ if [ -d "${modstmpdir}" ]; then + echo -ne "clearing mod download directory ${modstmpdir}..." rm -r "${modstmpdir}" exitcode=$? if [ ${exitcode} -ne 0 ]; then From f51c520d5047d6e7d88607f9f723befc64d8d443 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:45:15 +0000 Subject: [PATCH 157/185] corrected function name --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index b89fdf015..80589bc8d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -75,7 +75,7 @@ while [ ${installedmodsline} -le ${installedmodscount} ]; do ((installedmodsline++)) else fn_print_fail "No mod was selected" - fn_script_log_fail "No mod was selected" + fn_script_log_fatal "No mod was selected" exitcode="1" core_exit.sh fi From 3ca9951ceefcc9dc65f1a76a657625ee467eea42 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:51:30 +0000 Subject: [PATCH 158/185] corrected var --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 80589bc8d..4521df74d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -51,7 +51,7 @@ done # Reset line value installedmodsline="1" while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlist}")" + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" if [ -n "${currentmod}" ]; then fn_mod_get_info # Don not update mod if the policy is set to "NOUPDATE" From 63f2ace5f83688967d4f471a91e6a784fed8a975 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:55:02 +0000 Subject: [PATCH 159/185] Moved function in to correct place --- lgsm/functions/command_mods_update.sh | 56 +++++++++++++-------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 4521df74d..614abf6d0 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -14,6 +14,34 @@ mods_core.sh fn_print_header +# Prevents specific files being overwritten upon update (set by ${modkeepfiles}) +# For that matter, remove cfg files after extraction before copying them to destination +fn_remove_cfg_files(){ + if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then + fn_print_dots "Preventing overwriting of ${modprettyname} config files" + fn_script_log "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + # Count how many files there are to remove + removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + # Test all subvalues of "modkeepfiles" using the ";" separator + for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + # Put the current file we are looking for into a variable + filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + # If it matches an existing file that have been extracted delete the file + if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then + rm -r "${extractdir}/${filetoremove}" + # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update + if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then + touch "${modsdir}/.removedfiles.tmp" + fi + echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" + fi + done + fn_print_ok "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + fi +} + echo "Update addons/mods" echo "=================================" fn_mods_check_installed @@ -84,32 +112,4 @@ echo "" fn_print_ok_nl "Mods update complete" fn_script_log "Mods update complete" -# Prevents specific files being overwritten upon update (set by ${modkeepfiles}) -# For that matter, remove cfg files after extraction before copying them to destination -fn_remove_cfg_files(){ - if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - fn_print_dots "Preventing overwriting of ${modprettyname} config files" - fn_script_log "Preventing overwriting of ${modprettyname} config files" - sleep 0.5 - # Count how many files there are to remove - removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" - # Test all subvalues of "modkeepfiles" using the ";" separator - for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do - # Put the current file we are looking for into a variable - filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - # If it matches an existing file that have been extracted delete the file - if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - rm -r "${extractdir}/${filetoremove}" - # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update - if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then - touch "${modsdir}/.removedfiles.tmp" - fi - echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" - fi - done - fn_print_ok "Preventing overwriting of ${modprettyname} config files" - sleep 0.5 - fi -} - core_exit.sh From 33b94670093dada8287d7cfa2af236db30b68a1a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:03:41 +0000 Subject: [PATCH 160/185] used correct var --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 662f738bf..e9c6031f3 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -107,7 +107,7 @@ fi echo -en "removing ${modcommand} from ${modslockfile}..." sleep 0.5 fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" -sed -i "/^${modcommand}$/d" "${modsinstalledlist}" +sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl From 9cbca7b20b2478332fd70f0da7fb8fe3f9e17861 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:33:02 +0000 Subject: [PATCH 161/185] Altered UI of update function --- lgsm/functions/command_mods_update.sh | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 614abf6d0..0b42fdaa6 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -42,15 +42,13 @@ fn_remove_cfg_files(){ fi } -echo "Update addons/mods" -echo "=================================" +fn_print_dots "Update addons/mods" +sleep 0.5 fn_mods_check_installed -fn_print_information_nl "${installedmodscount} addons/mods will be updated" +fn_print_info "Update addons/mods: ${installedmodscount} addons/mods will be updated" +sleep 0.5 fn_script_log_info "${installedmodscount} mods or addons will be updated" fn_mods_installed_list -echo "" -echo "Installed addons/mods" -echo "=================================" # Go through all available commands, get details and display them to the user for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do # Current mod is the "ulindex" value of the array we're going through @@ -59,8 +57,8 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do # Display installed mods and the update policy if [ -z "${modkeepfiles}" ]; then # If modkeepfiles is not set for some reason, that's a problem - fn_script_log_error "Couldn't find update policy for ${modprettyname}" - fn_print_error_nl "Couldn't find update policy for ${modprettyname}" + fn_script_log_error "Could not find update policy for ${modprettyname}" + fn_print_error_nl "Could not find update policy for ${modprettyname}" exitcode="1" core_exit.sh # If the mod won't get updated From 57d12ceca21a99f0b2c77aabd9f81dea1e8190f0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:43:14 +0000 Subject: [PATCH 162/185] Further ui changes --- lgsm/functions/command_mods_update.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 0b42fdaa6..d4233a43d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -12,8 +12,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh -fn_print_header - # Prevents specific files being overwritten upon update (set by ${modkeepfiles}) # For that matter, remove cfg files after extraction before copying them to destination fn_remove_cfg_files(){ @@ -45,8 +43,7 @@ fn_remove_cfg_files(){ fn_print_dots "Update addons/mods" sleep 0.5 fn_mods_check_installed -fn_print_info "Update addons/mods: ${installedmodscount} addons/mods will be updated" -sleep 0.5 +fn_print_info_nl "Update addons/mods: ${installedmodscount} addons/mods will be updated" fn_script_log_info "${installedmodscount} mods or addons will be updated" fn_mods_installed_list # Go through all available commands, get details and display them to the user @@ -63,14 +60,15 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do core_exit.sh # If the mod won't get updated elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}${default} (won't be updated)" + echo -e " * \e[31m${modprettyname}${default} (won't be updated)" # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}${default} (overwrite)" + echo -e " * \e[1m${modprettyname}${default} (overwrite)" else - echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" + echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi done +sleep 1 ## Update # List all installed mods and apply update From 53b528f996ccd4ea8aa96867742d9a9dfd835c0b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:46:49 +0000 Subject: [PATCH 163/185] added header to separate mods --- lgsm/functions/command_mods_update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index d4233a43d..73827c50c 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -84,6 +84,7 @@ while [ ${installedmodsline} -le ${installedmodscount} ]; do fn_script_log_info "${modprettyname} will not be updated to preserve custom files" else echo "" + echo "==> Updating ${modprettyname}" fn_create_mods_dir fn_mods_clear_tmp_dir fn_mods_create_tmp_dir From b8ea04d06255f35116d473c25472f5051ae7c15f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:54:18 +0000 Subject: [PATCH 164/185] re arrainged to fix sm and mm not downloading --- lgsm/functions/mods_list.sh | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 566efedc1..4b586df1b 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -12,7 +12,20 @@ local commandname="MODS" local commandaction="List Mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -## Useful variables +# Get a proper URL for mods that don't provide a good one (optional) +fn_script_log_info "Retrieving latest mods URLs" +# Metamod +metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" +metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" +metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" +metamodurl="${metamoddownloadurl}/${metamodlatestfile}" +# Sourcemod +sourcemodmversion="1.8" +sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" +sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" +sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" +sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" + # Separator name modseparator="MOD" @@ -58,16 +71,3 @@ mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.gith # REQUIRED: Set all mods info into one array for convenience mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) -# Get a proper URL for mods that don't provide a good one (optional) -fn_script_log_info "Retrieving latest mods URLs" -# Metamod -metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" -metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" -metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" -metamodurl="${metamoddownloadurl}/${metamodlatestfile}" -# Sourcemod -sourcemodmversion="1.8" -sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" -sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" -sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" -sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" From bb99b30bd1b7d416151b4ab357214586c3c06d12 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 00:03:12 +0100 Subject: [PATCH 165/185] get mod info at the right time --- lgsm/functions/command_mods_install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 0519c75c8..de1be8046 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -72,7 +72,9 @@ while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done +# Get mod info currentmod="${usermodselect}" +fn_mod_get_info echo "" echo "Installing ${modprettyname}" @@ -100,7 +102,6 @@ fi ## Installation -fn_mod_get_info fn_create_mods_dir fn_mods_clear_tmp_dir fn_mods_create_tmp_dir @@ -114,4 +115,4 @@ fn_mods_clear_tmp_dir echo "${modprettyname} installed" fn_script_log_pass "${modprettyname} installed." -core_exit.sh \ No newline at end of file +core_exit.sh From 3c3d68fbdc18cb7794fbea76a67f7f3c7a3d628f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 00:23:37 +0100 Subject: [PATCH 166/185] check fails in the loop and echo the right files amount --- lgsm/functions/command_mods_remove.sh | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index e9c6031f3..3ea2c7e87 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -75,19 +75,17 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir}/${currentfileremove}" local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi fi tput rc; tput el printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done -tput rc; tput ed; -echo -ne "sed ${modprettyname} ${modfileline} / ${modsfilelistsize}..." -if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh -else - fn_print_ok_eol_nl -fi sleep 0.5 # Remove file list From b62d58fe8515ae0d66fe53f3d1223bd9c1c22315 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 00:31:26 +0100 Subject: [PATCH 167/185] added missing fn_print_ok_eol_nl --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 3ea2c7e87..28a1a6a43 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -86,8 +86,8 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done +fn_print_ok_eol_nl sleep 0.5 - # Remove file list echo -en "removing ${modcommand}-files.txt..." sleep 0.5 From 75295065d2a8a6180334b73f678931e061d22324 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 13:59:29 +0100 Subject: [PATCH 168/185] comments & form revision --- lgsm/functions/mods_list.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 4b586df1b..abbe3299e 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -3,10 +3,10 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Lists and defines available mods for LGSM supported servers. -# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. +# Description: Lists and defines available mods for LGSM supported servers; works along with mods_core.sh. +# Usage: To add a mod, you need to add an array variable following the guide to set proper values; # Usage: Then add this array to the mods_global_array. -# Usage: If needed, you can scrape to define the download URL inside the fn_mods_scrape_urls function. +# Usage: If needed, you can scrape the download URL first. local commandname="MODS" local commandaction="List Mods" @@ -26,10 +26,11 @@ sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" +# Define mods information (required) + # Separator name modseparator="MOD" -# Define mods information (required) # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) @@ -38,17 +39,17 @@ modseparator="MOD" # [0] | MOD: separator, all mods must begin with it # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user -# [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) +# [3] | "URL": link to the mod archive file; can be a variable previously defined while scraping a URL # [4] | "filename": the output filename -# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) -# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) +# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) +# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) -# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install -# [13] | "Short Description" a description showed to the user upon installation +# [13] | "Short Description" a description showed to the user upon installation/removal # Source mods mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) @@ -68,6 +69,5 @@ mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercon mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) -# REQUIRED: Set all mods info into one array for convenience +# REQUIRED: Set all mods info into the global array mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) - From eb91545efc8ac4dacd8aa6aef835650d2a988ca2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:00:14 +0100 Subject: [PATCH 169/185] tab fix --- lgsm/functions/mods_list.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index abbe3299e..46fc8f046 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -41,10 +41,10 @@ modseparator="MOD" # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user # [3] | "URL": link to the mod archive file; can be a variable previously defined while scraping a URL # [4] | "filename": the output filename -# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) -# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) +# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) +# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) -# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) From 9819ada0a49ecce4bf7d57560e182c1fef35b374 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:11:48 +0100 Subject: [PATCH 170/185] added fn_mod_tidy_files_list info --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 46fc8f046..730aeb081 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -44,7 +44,7 @@ modseparator="MOD" # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) -# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating; for files to keep upon uninstall, see fn_mod_tidy_files_list from mods_core.sh # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) From d19313569594032224bf6447fb7b7dd6006ab8c6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:23:47 +0100 Subject: [PATCH 171/185] check_logs.sh for mods commands --- lgsm/functions/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 255ab5ee1..577579171 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -34,7 +34,7 @@ do fi done -local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh ) +local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh command_mods_install.sh command_mods_update.sh command_mods_remove.sh ) for allowed_command in "${allowed_commands_array[@]}" do if [ "${allowed_command}" == "${function_selfname}" ]; then From ef05b348aeaa77fea09675c080d14864ec791e01 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:44:59 +0100 Subject: [PATCH 172/185] Comments, output and exits improvements --- lgsm/functions/mods_core.sh | 38 ++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1d3edc48d..6169d95fb 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -112,9 +112,9 @@ fn_mod_add_list(){ fi } +# Prevent sensitive directories from being erased upon uninstall by removing them from: ${modcommand}-files.txt fn_mod_tidy_files_list(){ - # Prevent sensitive directories from being erased by removing them from: ${modcommand}-files.txt - # Check file validity + # Check file list validity fn_check_mod_files_list # Output to the user echo -ne "tidy up ${modcommand}-files.txt..." @@ -129,19 +129,18 @@ fn_mod_tidy_files_list(){ for ((filesindex=1; filesindex < removefromlistamount; filesindex++)); do # Put current file into test variable removefilevar="$(echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }')" - # Delete matching line(s) + # Delete line(s) matching exactly sed -i "/^${removefilevar}$/d" "${modsdir}/${modcommand}-files.txt" + # Exit on error local exitcode=$? if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Error while tidying line: ${removefilevar} from: ${modsdir}/${modcommand}-files.txt" + core_exit.sh break fi done - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - else - fn_print_ok_eol_nl - fi - + fn_print_ok_eol_nl # Sourcemod fix # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then @@ -172,7 +171,6 @@ fn_mod_get_info(){ fi ((totalmods++)) done - fi # Exit the loop if job is done if [ "${modinfocommand}" == "1" ]; then @@ -192,9 +190,9 @@ fn_mod_get_info(){ # Define all variables for a mod at once when index is set to a separator fn_mods_define(){ if [ -z "$index" ]; then + fn_script_log_fatal "index variable not set. Please report an issue." fn_print_error "index variable not set. Please report an issue." echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - exitcode="1" core_exit.sh fi modcommand="${mods_global_array[index+1]}" @@ -238,9 +236,7 @@ fn_mods_installed_list(){ fi } -# Checks if a mod is compatible for installation -# Provides available mods for installation -# Provides commands for mods installation +# Loops through mods_global_array to define available mods & provide available commands for mods installation fn_mods_available(){ # First, reset variables compatiblemodslist=() @@ -302,7 +298,7 @@ fn_compatible_mod_engines(){ enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If engine name matches if [ "${enginemodtest}" == "${engine}" ]; then - # Mod is compatible ! + # Mod is compatible! modcompatibleengine="1" fi done @@ -323,7 +319,7 @@ fn_not_compatible_mod_games(){ excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If engine name matches if [ "${excludegamemodtest}" == "${gamename}" ]; then - # Mod is compatible ! + # Mod is compatible! modeincompatiblegame="1" fi done @@ -411,6 +407,7 @@ fn_mods_clear_tmp_dir(){ fi } +# Counts how many mods were installed fn_mods_count_installed(){ if [ -f "${modsinstalledlistfullpath}" ]; then installedmodscount="$(wc -l < "${modsinstalledlistfullpath}")" @@ -419,12 +416,13 @@ fn_mods_count_installed(){ fi } -# Exit if no mods were installed +# Exits if no mods were installed fn_mods_check_installed(){ # Count installed mods fn_mods_count_installed # If no mods are found if [ ${installedmodscount} -eq 0 ]; then + echo "" fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -432,6 +430,7 @@ fn_mods_check_installed(){ fi } +# Checks that mod files list exists and isn't empty fn_check_mod_files_list(){ # File list must exist and be valid before any operation on it if [ -f "${modsdir}/${modcommand}-files.txt" ]; then @@ -451,6 +450,7 @@ fn_check_mod_files_list(){ fi } -# Database initialisation +## Database initialisation + mods_list.sh -fn_mods_available \ No newline at end of file +fn_mods_available From 2b302fc0ac550e298514511b9a3fcd31ad725aac Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:58:02 +0100 Subject: [PATCH 173/185] "User selected to continue" to be in check loop --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index de1be8046..4e563b7b9 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -96,8 +96,8 @@ if [ -f "${modsinstalledlistfullpath}" ]; then * ) echo "Please answer yes or no.";; esac done + fn_script_log_info "User selected to continue" fi -fn_script_log_info "User selected to continue" fi ## Installation From a86030b551353596c91e710986d75820f9a7d100 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:40:25 +0100 Subject: [PATCH 174/185] Total mods fix --- lgsm/functions/mods_core.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 6169d95fb..0ccc548de 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -169,7 +169,7 @@ fn_mod_get_info(){ modinfocommand="1" break fi - ((totalmods++)) + ((totalmodsavailable++)) done fi # Exit the loop if job is done @@ -231,8 +231,8 @@ fn_mods_installed_list(){ # Increment line check ((installedmodsline++)) done - if [ -n "${totalmods}" ] ;then - fn_script_log_info "${totalmods} addons/mods are already installed" + if [ -n "${installedmodscount}" ] ;then + fn_script_log_info "${installedmodscount} addons/mods are already installed" fi } From 94c1b57f8561ea5303d11df91174711047c589a9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:41:57 +0100 Subject: [PATCH 175/185] total mods fix --- lgsm/functions/mods_core.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 0ccc548de..8d0eaf19d 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -169,7 +169,6 @@ fn_mod_get_info(){ modinfocommand="1" break fi - ((totalmodsavailable++)) done fi # Exit the loop if job is done From 0ddc146631cb4af34cc17c9adf3153ac2277e5d2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:45:36 +0100 Subject: [PATCH 176/185] total mods fix --- lgsm/functions/command_mods_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 4e563b7b9..f8e5a40da 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -48,7 +48,7 @@ while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" - ((totalmods++)) + ((totalmodsavailable++)) done # If no mods are available for a specific game @@ -57,7 +57,7 @@ if [ -z "${compatiblemodslist}" ]; then fn_script_log_info "No mods are currently available for ${gamename}." core_exit.sh fi -fn_script_log_info "${totalmods} addons/mods are available for install" +fn_script_log_info "${totalmodsavailable} addons/mods are available for install" ## User selects a mod echo "" From 82441e5d6db0cd520e3d7798eb55640a7bef9f39 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:57:10 +0100 Subject: [PATCH 177/185] ((totalmodsinstalled++)) not needed anymore --- lgsm/functions/command_mods_install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index f8e5a40da..7e76ac727 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -26,7 +26,6 @@ if [ ${installedmodscount} -gt 0 ]; then fn_mod_get_info # Display mod info to the user echo -e " * \e[1m${green}${modcommand}${default}${default}" - ((totalmodsinstalled++)) done echo "" fi From f1c753d4159122728f7d8a7b4a99375c102fad92 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 19:04:41 +0100 Subject: [PATCH 178/185] keep files usually customized for ACF mod --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 730aeb081..8b0beb604 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -59,7 +59,7 @@ mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/ mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) -mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) +mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "acf-master/lua/acf/shared/guns;" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) From ae864bb92bba5cc040ee96c9b1dc6cb8a90c8087 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 19:46:00 +0000 Subject: [PATCH 179/185] More UI modifications --- lgsm/functions/command_mods_remove.sh | 19 +++++++++---------- lgsm/functions/mods_core.sh | 4 ++-- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 28a1a6a43..1a0799122 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -74,19 +74,18 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir}/${currentfileremove}" - local exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl - fi + ((exitcode=$?)) fi tput rc; tput el - printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." + printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done -fn_print_ok_eol_nl +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi sleep 0.5 # Remove file list echo -en "removing ${modcommand}-files.txt..." @@ -102,7 +101,7 @@ else fi # Remove mods from installed mods list -echo -en "removing ${modcommand} from ${modslockfile}..." +echo -en "removing ${modcommand} from ${modsinstalledlist}..." sleep 0.5 fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 6169d95fb..5d42e15e0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -423,9 +423,9 @@ fn_mods_check_installed(){ # If no mods are found if [ ${installedmodscount} -eq 0 ]; then echo "" - fn_print_information_nl "No installed mods or addons were found" + fn_print_failure_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" - fn_script_log_info "No installed mods or addons were found." + fn_script_log_fail "No installed mods or addons were found." core_exit.sh fi } From 8acf2189a919ef08f2618d5a3e6c46ea55b7e163 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 19:48:27 +0000 Subject: [PATCH 180/185] corrected script_log --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 959476b2d..5fa8e21c9 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -26,7 +26,7 @@ fn_mod_install_files(){ # Check if variable is valid checking if file has been downloaded and exists if [ ! -f "${modstmpdir}/${modfilename}" ]; then fn_print_failure "An issue occurred downloading ${modprettyname}" - fn_script_log_fail "An issue occurred downloading ${modprettyname}" + fn_script_log_fatal "An issue occurred downloading ${modprettyname}" core_exit.sh fi if [ ! -d "${extractdir}" ]; then From d83666625d217d438b071fd67cbca6369552fcb3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 20:44:10 +0000 Subject: [PATCH 181/185] update wording for script log --- lgsm/functions/command_mods_install.sh | 4 ++-- lgsm/functions/command_mods_remove.sh | 2 +- lgsm/functions/command_mods_update.sh | 24 +++++++++++------------- lgsm/functions/core_dl.sh | 8 ++++---- lgsm/functions/mods_core.sh | 4 ++-- 5 files changed, 20 insertions(+), 22 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 7e76ac727..2d85c12f6 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -25,7 +25,7 @@ if [ ${installedmodscount} -gt 0 ]; then currentmod="${installedmodslist[llindex]}" fn_mod_get_info # Display mod info to the user - echo -e " * \e[1m${green}${modcommand}${default}${default}" + echo -e " * ${green}${modcommand}${default}${default}" done echo "" fi @@ -43,7 +43,7 @@ while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" + echo -e "${displayedmodname} - ${displayedmoddescription} - ${displayedmodsite}" echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 1a0799122..adf30adea 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -26,7 +26,7 @@ for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do # Get mod info fn_mod_get_info # Display mod info to the user - echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" + echo -e "${red}${modcommand}${default} - ${modprettyname} - ${moddescription}" done echo "" diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 73827c50c..0b12e04aa 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -16,27 +16,25 @@ mods_core.sh # For that matter, remove cfg files after extraction before copying them to destination fn_remove_cfg_files(){ if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - fn_print_dots "Preventing overwriting of ${modprettyname} config files" - fn_script_log "Preventing overwriting of ${modprettyname} config files" + echo -e "the following files/directories will be preserved:" sleep 0.5 # Count how many files there are to remove - removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + filestopreserve="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalues of "modkeepfiles" using the ";" separator - for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + for ((preservefilesindex=1; preservefilesindex < ${filestopreserve}; preservefilesindex++)); do # Put the current file we are looking for into a variable - filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + filetopreserve="$(echo "${modkeepfiles}" | awk -F ';' -v x=${preservefilesindex} '{ print $x }' )" + echo -e " * serverfiles/${filetopreserve}" # If it matches an existing file that have been extracted delete the file - if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - rm -r "${extractdir}/${filetoremove}" + if [ -f "${extractdir}/${filetopreserve}" ]||[ -d "${extractdir}/${filetopreserve}" ]; then + rm -r "${extractdir}/${filetopreserve}" # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then touch "${modsdir}/.removedfiles.tmp" fi - echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" + echo "${filetopreserve}" >> "${modsdir}/.removedfiles.tmp" fi done - fn_print_ok "Preventing overwriting of ${modprettyname} config files" - sleep 0.5 fi } @@ -60,12 +58,12 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do core_exit.sh # If the mod won't get updated elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}${default} (won't be updated)" + echo -e " * ${red}{modprettyname}${default} (won't be updated)" # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}${default} (overwrite)" + echo -e " * ${modprettyname} (overwrite)" else - echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" + echo -e " * ${yellow}${modprettyname}${default} (retain common custom files)" fi done sleep 1 diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index f7768a7cf..aad8f1963 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -80,12 +80,12 @@ fn_fetch_trap(){ echo "" echo -ne "downloading ${filename}..." fn_print_canceled_eol_nl - fn_script_log_info "downloading ${filename}...CANCELED" + fn_script_log_info "Downloading ${filename}...CANCELED" sleep 1 rm -f "${filedir}/${filename}" | tee -a "${scriptlog}" echo -ne "downloading ${filename}..." fn_print_removed_eol_nl - fn_script_log_info "downloading ${filename}...REMOVED" + fn_script_log_info "Downloading ${filename}...REMOVED" core_exit.sh } @@ -130,7 +130,7 @@ fn_fetch_file(){ if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl if [ -f "${scriptlog}" ]; then - fn_script_log_fatal "downloading ${filename}: FAIL" + fn_script_log_fatal "Downloading ${filename}: FAIL" fi echo -e "${fileurl}" | tee -a "${scriptlog}" echo "${curlcmd}" | tee -a "${scriptlog}" @@ -138,7 +138,7 @@ fn_fetch_file(){ else fn_print_ok_eol_nl if [ -f "${scriptlog}" ]; then - fn_script_log_pass "downloading ${filename}: OK" + fn_script_log_pass "Downloading ${filename}: OK" fi fi # remove trap diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 5fa8e21c9..1eb5984b0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -41,7 +41,7 @@ fn_mod_lowercase(){ echo -ne "converting ${modprettyname} files to lowercase..." sleep 0.5 - fn_script_log "Converting ${modprettyname} files to lowercase" + fn_script_log_info "Converting ${modprettyname} files to lowercase" files=$(find "${extractdir}" -depth | wc -l) echo -en "\r" while read -r src; do @@ -231,7 +231,7 @@ fn_mods_installed_list(){ ((installedmodsline++)) done if [ -n "${installedmodscount}" ] ;then - fn_script_log_info "${installedmodscount} addons/mods are already installed" + fn_script_log_info "${installedmodscount} addons/mods are currently installed" fi } From 8311e2c972aa186c72a26671bac474ed3e6e65c4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 20:48:09 +0000 Subject: [PATCH 182/185] script_log to info --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 0b12e04aa..e93303016 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -105,6 +105,6 @@ while [ ${installedmodsline} -le ${installedmodscount} ]; do done echo "" fn_print_ok_nl "Mods update complete" -fn_script_log "Mods update complete" +fn_script_log_info "Mods update complete" core_exit.sh From b9f47518b955edccfba96f99f5111cbee28dfa40 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 20:52:49 +0000 Subject: [PATCH 183/185] uf was missing a commandname --- lgsm/functions/command_update_functions.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_update_functions.sh b/lgsm/functions/command_update_functions.sh index 538a8dee8..e3d96d378 100644 --- a/lgsm/functions/command_update_functions.sh +++ b/lgsm/functions/command_update_functions.sh @@ -4,6 +4,7 @@ # Website: https://gameservermanagers.com # Description: Deletes the functions dir to allow re-downloading of functions from GitHub. +local commandname="UPDATE LGSM" local commandaction="Update LGSM" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" From bea65fb35ac102fa95b984013d8ecacd5e47f4f4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 21:11:25 +0000 Subject: [PATCH 184/185] script log message capital --- lgsm/functions/command_backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 8e18a619b..b4bff70b0 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -16,12 +16,12 @@ fn_backup_trap(){ echo "" echo -ne "backup ${backupname}.tar.gz..." fn_print_canceled_eol_nl - fn_script_log_info "backup ${backupname}.tar.gz: CANCELED" + fn_script_log_info "Backup ${backupname}.tar.gz: CANCELED" sleep 1 rm -f "${backupdir}/${backupname}.tar.gz" | tee -a "${scriptlog}" echo -ne "backup ${backupname}.tar.gz..." fn_print_removed_eol_nl - fn_script_log_info "backup ${backupname}.tar.gz: REMOVED" + fn_script_log_info "Backup ${backupname}.tar.gz: REMOVED" # Remove lock file rm -f "${tmpdir}/.backup.lock" core_exit.sh From 3ea100cc723a11797160f9743303862527e442c0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 21:18:26 +0000 Subject: [PATCH 185/185] improvements to script log messages --- lgsm/functions/command_mods_remove.sh | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index adf30adea..7b96503ec 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -59,7 +59,7 @@ fn_mod_get_info fn_check_mod_files_list # Uninstall the mod -fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" +fn_script_log_info "Removing ${modsfilelistsize} files from ${modprettyname}" echo -e "removing ${modprettyname}" echo -e "* ${modsfilelistsize} files to be removed" echo -e "* location: ${modinstalldir}" @@ -71,10 +71,16 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdir}/${modcommand}-files.txt")" # If file or directory exists, then remove it - fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir}/${currentfileremove}" ((exitcode=$?)) + if [ ${exitcode} -ne 0 ]; then + fn_script_log_fatal "Removing ${modinstalldir}/${currentfileremove}" + break + else + fn_script_log_pass "Removing ${modinstalldir}/${currentfileremove}" + fi fi tput rc; tput el printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." @@ -90,26 +96,29 @@ sleep 0.5 # Remove file list echo -en "removing ${modcommand}-files.txt..." sleep 0.5 -fn_script_log "Removing: ${modsdir}/${modcommand}-files.txt" rm -rf "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then + fn_script_log_fatal "Removing ${modsdir}/${modcommand}-files.txt" fn_print_fail_eol_nl core_exit.sh else + fn_script_log_pass "Removing ${modsdir}/${modcommand}-files.txt" fn_print_ok_eol_nl fi # Remove mods from installed mods list echo -en "removing ${modcommand} from ${modsinstalledlist}..." sleep 0.5 -fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" + sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then + fn_script_loga_fatal "Removing ${modcommand} from ${modsinstalledlist}" fn_print_fail_eol_nl core_exit.sh else + fn_script_loga_pass "Removing ${modcommand} from ${modsinstalledlist}" fn_print_ok_eol_nl fi