Browse Source

Loads of UI improvements and fixes

still lots of testing to do
pull/1255/head
Daniel Gibbs 8 years ago
parent
commit
1985955f3a
  1. 4
      lgsm/functions/command_mods_install.sh
  2. 54
      lgsm/functions/command_mods_remove.sh
  3. 60
      lgsm/functions/mods_core.sh
  4. 6
      lgsm/functions/mods_list.sh

4
lgsm/functions/command_mods_install.sh

@ -29,14 +29,14 @@ fn_mods_install_init(){
# Exit if user says exit or abort # Exit if user says exit or abort
if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then
core_exit.sh core_exit.sh
# Supplementary output upon invalid user input # Supplementary output upon invalid user input
elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then
fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fn_print_error2_nl "${usermodselect} is not a valid addon/mod."
fi fi
done done
echo "" echo ""
echo "Installing ${modprettyname}" echo "Installing ${modprettyname}"
echo "=================================" echo "================================="
fn_script_log "Installing ${modprettyname}." fn_script_log "Installing ${modprettyname}."
# Gives a pretty name to the user and get all mod info # Gives a pretty name to the user and get all mod info
currentmod="${usermodselect}" currentmod="${usermodselect}"

54
lgsm/functions/command_mods_remove.sh

@ -19,7 +19,6 @@ fn_mods_remove_init(){
# A simple function to exit if no mods were installed # A simple function to exit if no mods were installed
# Also returns ${installedmodscount} if mods were found # Also returns ${installedmodscount} if mods were found
fn_mods_exit_if_not_installed fn_mods_exit_if_not_installed
echo ""
# Displays installed addons to the user # Displays installed addons to the user
fn_installed_mods_medium_list fn_installed_mods_medium_list
echo "" echo ""
@ -30,12 +29,12 @@ fn_mods_remove_init(){
# Exit if user says exit or abort # Exit if user says exit or abort
if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then
core_exit.sh core_exit.sh
# Supplementary output upon invalid user input # Supplementary output upon invalid user input
elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then
fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fn_print_error2_nl "${usermodselect} is not a valid addon/mod."
fi fi
done 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." echo " * Any custom files/configuration will be removed."
while true; do while true; do
read -e -i "y" -p "Continue? [Y/n]" yn read -e -i "y" -p "Continue? [Y/n]" yn
@ -44,40 +43,77 @@ fn_mods_remove_init(){
[Nn]* ) echo Exiting; exit;; [Nn]* ) echo Exiting; exit;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
# Gives a pretty name to the user and get all mod info # Gives a pretty name to the user and get all mod info
currentmod="${usermodselect}" currentmod="${usermodselect}"
fn_mod_get_info_from_command fn_mod_get_info_from_command
# Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize}) # Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize})
fn_check_files_list fn_check_files_list
fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}"
fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}"
} }
# Uninstall the mod # Uninstall the mod
fn_mod_remove_process(){ 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 # Go through every file and remove it
modfileline="1" modfileline="1"
tput sc
while [ "${modfileline}" -le "${modsfilelistsize}" ]; do while [ "${modfileline}" -le "${modsfilelistsize}" ]; do
# Current line defines current file to remove # Current line defines current file to remove
currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")"
# If file or directory exists, then remove it # If file or directory exists, then remove it
fn_script_log "Removing: ${modinstalldir}/${currentfileremove}"
if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then
fn_script_log "Removing: ${modinstalldir}/${currentfileremove}"
rm -rf "${modinstalldir}/${currentfileremove}" rm -rf "${modinstalldir}/${currentfileremove}"
local exitcode=$?
fi fi
tput rc; tput el
printf "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize} : ${currentfileremove}..."
((totalfileswc++))
let modfileline=modfileline+1 let modfileline=modfileline+1
done 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 # Remove file list
echo -en "removing ${modcommand}-files.txt..."
sleep 0.5
fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt"
rm -rf "${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 # Remove from installed mods list
echo -en "removing ${modcommand} from ${modslockfile}..."
sleep 0.5
fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}"
sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}"
# Post install tasks to solve potential issues # 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_postuninstall_tasks
fn_print_ok_nl "Removed ${modprettyname}" echo "${modprettyname} removed"
fn_script_log "Removed ${modprettyname}" fn_script_log "${modprettyname} removed"
} }
fn_mods_remove_init fn_mods_remove_init

60
lgsm/functions/mods_core.sh

@ -93,21 +93,23 @@ fn_mod_lowercase(){
fn_script_log "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase"
files=$(find "${extractdir}" -depth | wc -l) files=$(find "${extractdir}" -depth | wc -l)
echo -en "\r" echo -en "\r"
while read SRC; do while read src; do
DST=`dirname "${SRC}"`/`basename "${SRC}" | tr '[A-Z]' '[a-z]'` dst=`dirname "${src}"`/`basename "${src}" | tr '[A-Z]' '[a-z]'`
if [ "${SRC}" != "${DST}" ] if [ "${src}" != "${dst}" ]
then then
[ ! -e "${DST}" ] && mv -T "${SRC}" "${DST}" || echo "${SRC} was not renamed" [ ! -e "${dst}" ] && mv -T "${src}" "${dst}" || echo "${src} was not renamed"
((renamedwc++)) local exitcode=$?
fi ((renamedwc++))
fi
echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." $'\r' echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." $'\r'
((totalfileswc++)) ((totalfileswc++))
done < <(find "${extractdir}" -depth) done < <(find "${extractdir}" -depth)
echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..."
local exitcode=$?
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
else core_exit.sh
else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fi fi
sleep 0.5 sleep 0.5
@ -153,7 +155,7 @@ fn_mod_fileslist(){
local exitcode=$? local exitcode=$?
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fi fi
fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}" fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}"
@ -173,7 +175,7 @@ fn_mod_copy_destination(){
local exitcode=$? local exitcode=$?
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fi fi
} }
@ -213,19 +215,16 @@ fn_check_files_list(){
# How many lines is the file list # How many lines is the file list
modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)" modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)"
# If file list is empty # If file list is empty
if [ $modsfilelistsize -eq 0 ]; then if [ "${modsfilelistsize}" -eq 0 ]; then
fn_print_error_nl "${modcommand}-files.txt is empty" fn_print_failure "${modcommand}-files.txt is empty"
echo "Exiting." echo "* Unable to remove ${modprettyname}"
fn_scrip_log_fatal "${modcommand}-files.txt is empty" fn_script_log_fatal "${modcommand}-files.txt is empty: Unable to remove ${modprettyname}."
exitcode="2"
core_exit.sh core_exit.sh
fi fi
else else
fn_print_error_nl "${modsdatadir}/${modcommand}-files.txt don't exist" fn_print_failure "${modsdatadir}/${modcommand}-files.txt does not exist"
echo "Exiting." fn_script_log_fatal "${modsdatadir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}."
fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.txt don't exist" core_exit.sh
exitcode="2"
core_exit.sh
fi fi
} }
@ -253,11 +252,11 @@ fn_postinstall_tasks(){
local exitcode=$? local exitcode=$?
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then
break break
fi fi
done done
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fi fi
@ -527,7 +526,7 @@ fn_installed_mods_medium_list(){
# Displays a simple list of installed mods # Displays a simple list of installed mods
# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run # 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_installed_mods_light_list(){
fn_check_installed_mods fn_check_installed_mods
fn_mods_available_commands_from_installed fn_mods_available_commands_from_installed
@ -575,9 +574,11 @@ fn_installed_mods_update_list(){
# If the mode is just overwritten # If the mode is just overwritten
elif [ "${modkeepfiles}" == "OVERWRITE" ]; then elif [ "${modkeepfiles}" == "OVERWRITE" ]; then
echo -e " * \e[1m${modprettyname}${default} (overwrite)" echo -e " * \e[1m${modprettyname}${default} (overwrite)"
else else
echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)"
fi fi
((totalmodsinstalled++))
fn_script_log_info "${totalmodsinstalled} are already installed"
done done
} }
@ -598,17 +599,20 @@ fn_mod_get_info_from_command(){
modinfocommand="1" modinfocommand="1"
break break
fi fi
((totalmods++))
done done
fi fi
# Exit the loop if job is done # Exit the loop if job is done
if [ "${modinfocommand}" == "1" ]; then if [ "${modinfocommand}" == "1" ]; then
break break
fi fi
done done
fn_script_log_info "${totalmods} are available for install"
# What happens if mod is not found # What happens if mod is not found
if [ "${modinfocommand}" == "0" ]; then if [ "${modinfocommand}" == "0" ]; then
fn_script_log_error "Couldn't find information for ${currentmod}" fn_script_log_error "Could not find information for ${currentmod}"
fn_print_error_nl "Couldn't find information for ${currentmod}" fn_print_error_nl "Could not find information for ${currentmod}"
exitcode="1" exitcode="1"
core_exit.sh core_exit.sh
fi fi

6
lgsm/functions/mods_list.sh

@ -4,7 +4,7 @@
# Contributor: UltimateByte # Contributor: UltimateByte
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Lists and defines available mods for LGSM supported servers. # 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: 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 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}) # [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" 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 # [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) # [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 # [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
@ -64,7 +64,7 @@ fn_mods_info(){
# Get a proper URL for mods that don't provide a good one (optional) # Get a proper URL for mods that don't provide a good one (optional)
fn_mods_scrape_urls(){ fn_mods_scrape_urls(){
fn_script_log "Retriving latest mods URLs" fn_script_log_info "retrieving latest mods URLs"
# Metamod # Metamod
metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" 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}')" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')"

Loading…
Cancel
Save