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. 50
      lgsm/functions/command_mods_remove.sh
  2. 36
      lgsm/functions/mods_core.sh
  3. 2
      lgsm/functions/mods_list.sh

50
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 ""
@ -35,7 +34,7 @@ fn_mods_remove_init(){
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
@ -50,34 +49,71 @@ fn_mods_remove_init(){
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
if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then
fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" fn_script_log "Removing: ${modinstalldir}/${currentfileremove}"
if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then
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

36
lgsm/functions/mods_core.sh

@ -93,20 +93,22 @@ 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"
local exitcode=$?
((renamedwc++)) ((renamedwc++))
fi 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
core_exit.sh
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fi fi
@ -213,18 +215,15 @@ 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"
exitcode="2"
core_exit.sh core_exit.sh
fi fi
} }
@ -578,6 +577,8 @@ fn_installed_mods_update_list(){
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

2
lgsm/functions/mods_list.sh

@ -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