Browse Source

Various UI and code changes.

pull/1255/head
Daniel Gibbs 8 years ago
parent
commit
4d692f59e2
  1. 67
      lgsm/functions/command_mods_install.sh
  2. 6
      lgsm/functions/command_mods_remove.sh
  3. 144
      lgsm/functions/mods_core.sh

67
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." fn_print_error2_nl "${usermodselect} is not a valid addon/mod."
fi fi
done done
echo ""
echo "Installing ${modprettyname}"
echo "================================="
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}"
fn_mod_get_info_from_command
fn_print_dots_nl "Installing ${modprettyname}"
sleep 1
fn_script_log "Installing ${modprettyname}."
} }
# Run all required operation # Run all required operation
fn_mod_installation(){ fn_mod_installation(){
# If a mod was selected # Get mod info
if [ -n "${currentmod}" ]; then fn_mod_get_info_from_command
# Get mod info # Check if mod is already installed
fn_mod_get_info_from_command fn_mod_already_installed
# Check if mod is already installed # Check and create required files
fn_mod_already_installed fn_mods_files
# Check and create required files # Clear lgsm/tmp/mods dir if exists then recreate it
fn_mods_files fn_clear_tmp_mods
# Clear lgsm/tmp/mods dir if exists then recreate it fn_mods_tmpdir
fn_clear_tmp_mods # Download & extract mod
fn_mods_tmpdir fn_install_mod_dl_extract
# Download mod # Convert to lowercase if needed
fn_mod_dl fn_mod_lowercase
# Extract the mod # Build a file list
fn_mod_extract fn_mod_fileslist
# Convert to lowercase if needed # Copying to destination
fn_mod_lowercase fn_mod_copy_destination
# Build a file list # Ending with installation routines
fn_mod_fileslist fn_mod_add_list
# Copying to destination # Post install fixes
fn_mod_copy_destination fn_postinstall_tasks
# Ending with installation routines # Cleaning
fn_mod_add_list fn_clear_tmp_mods
# Post install fixes echo "${modprettyname} installed"
fn_postinstall_tasks fn_script_log "${modprettyname} installed."
# 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
} }
fn_mods_install_init fn_mods_install_init

6
lgsm/functions/command_mods_remove.sh

@ -60,7 +60,7 @@ fn_mod_remove_process(){
modfileline="1" modfileline="1"
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.list")" 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 if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then
fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" fn_script_log "Removing: ${modinstalldir}/${currentfileremove}"
@ -69,8 +69,8 @@ fn_mod_remove_process(){
let modfileline=modfileline+1 let modfileline=modfileline+1
done done
# Remove file list # Remove file list
fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.list" fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt"
rm -rf "${modsdatadir}/${modcommand}-files.list" rm -rf "${modsdatadir}/${modcommand}-files.txt"
# Remove from installed mods 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}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}"

144
lgsm/functions/mods_core.sh

@ -11,9 +11,10 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
## Useful variables ## Useful variables
# Files and Directories # Files and Directories
modstmpdir="${tmpdir}/mods" modsdir="${lgsmdir}/mods"
extractdir="${modstmpdir}/extracted" modstmpdir="${modsdir}/tmp"
modsdatadir="${lgsmdir}/data/mods" extractdir="${modstmpdir}/extract"
modsdatadir="${modsdir}"
modslockfile="installed-mods-listing" modslockfile="installed-mods-listing"
modslockfilefullpath="${modsdatadir}/${modslockfile}" modslockfilefullpath="${modsdatadir}/${modslockfile}"
# Database initialisation # Database initialisation
@ -34,13 +35,11 @@ fn_lgsm_requirements(){
fn_mods_files(){ fn_mods_files(){
if [ ! -d "${modinstalldir}" ]; then if [ ! -d "${modinstalldir}" ]; then
fn_script_log_info "Creating mods directory: ${modinstalldir}" fn_script_log_info "Creating mods directory: ${modinstalldir}"
fn_print_dots "Creating mods directory" echo "Creating mods directory"
sleep 0.5
mkdir -p "${modinstalldir}"
fn_print_ok "Created mods directory"
sleep 0.5 sleep 0.5
mkdir -pv "${modinstalldir}"
fi fi
# Create lgsm/data/mods directory # Create data/mods directory
if [ ! -d "${modsdatadir}" ]; then if [ ! -d "${modsdatadir}" ]; then
mkdir -p "${modsdatadir}" mkdir -p "${modsdatadir}"
fn_script_log "Created ${modsdatadir}" fn_script_log "Created ${modsdatadir}"
@ -52,11 +51,11 @@ fn_mods_files(){
fi 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(){ fn_clear_tmp_mods(){
if [ -d "${modstmpdir}" ]; then if [ -d "${modstmpdir}" ]; then
rm -r "${modstmpdir}" rm -r "${modstmpdir}"
fn_script_log "Clearing temp mod download directory: ${modstmpdir}" fn_script_log "Clearing mod download directory: ${modstmpdir}"
fi fi
# Clear temp file list as well # Clear temp file list as well
if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then
@ -68,44 +67,49 @@ fn_clear_tmp_mods(){
fn_mods_tmpdir(){ fn_mods_tmpdir(){
if [ ! -d "${modstmpdir}" ]; then if [ ! -d "${modstmpdir}" ]; then
mkdir -p "${modstmpdir}" mkdir -p "${modstmpdir}"
fn_script_log "Creating temp mod download directory: ${modstmpdir}" fn_script_log "Creating mod download directory: ${modstmpdir}"
fi fi
} }
# Fetches mod URL fn_install_mod_dl_extract(){
fn_mod_dl(){ fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}"
# 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 # Check if variable is valid checking if file has been downloaded and exists
if [ ! -f "${modstmpdir}/${modfilename}" ]; then 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 core_exit.sh
fi fi
}
# Extract the mod
fn_mod_extract(){
# fn_dl_extract "${filedir}" "${filename}" "${extractdir}"
filename="${modfilename}"
if [ ! -d "${extractdir}" ]; then if [ ! -d "${extractdir}" ]; then
mkdir -p "${extractdir}" mkdir -p "${extractdir}"
fi fi
fn_script_log "Extracting ${modprettyname} to ${extractdir}" fn_dl_extract "${modstmpdir}" "${filename}" "${extractdir}"
fn_dl_extract "${filedir}" "${filename}" "${extractdir}"
} }
# Convert mod files to lowercase if needed # Convert mod files to lowercase if needed
fn_mod_lowercase(){ fn_mod_lowercase(){
if [ "${modlowercase}" == "LowercaseOn" ]; then if [ "${modlowercase}" == "LowercaseOn" ]; then
fn_print_dots "Converting ${modprettyname} files to lowercase"
echo -ne "converting ${modprettyname} files to lowercase..."
sleep 0.5 sleep 0.5
fn_script_log "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase"
find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; files=$(find "${extractdir}" -depth | wc -l)
fn_print_ok "Converting ${modprettyname} files to lowercase" 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 sleep 0.5
fi fi
} }
@ -139,30 +143,39 @@ fn_remove_cfg_files(){
fi 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_mod_fileslist(){
fn_print_dots "Building ${modcommand}-files.list" echo -ne "building ${modcommand}-files.txt..."
fn_script_log "Building ${modcommand}-files.list" fn_script_log "Building ${modcommand}-files.txt"
sleep 0.5 sleep 0.5
# ${modsdatadir}/${modcommand}-files.list # ${modsdatadir}/${modcommand}-files.txt
find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.txt
fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" 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 # Adding removed files if needed
if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then
cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.list cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.txt
fi fi
fn_print_ok "Building ${modcommand}-files.list"
sleep 0.5 sleep 0.5
} }
# Copy the mod to the destination ${modinstalldir} # Copy the mod to the destination ${modinstalldir}
fn_mod_copy_destination(){ fn_mod_copy_destination(){
fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" echo -ne "copying ${modprettyname} to ${modinstalldir}..."
fn_script_log "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}"
sleep 0.5 sleep 0.5
cp -Rf "${extractdir}/." "${modinstalldir}/" cp -Rf "${extractdir}/." "${modinstalldir}/"
fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" local exitcode=$?
sleep 0.5 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 # Check if the mod is already installed and warn the user
@ -196,21 +209,21 @@ fn_mod_add_list(){
fn_check_files_list(){ fn_check_files_list(){
# File list must exist and be valid before any operation on it # 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 # 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 file list is empty
if [ $modsfilelistsize -eq 0 ]; then 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." echo "Exiting."
fn_scrip_log_fatal "${modcommand}-files.list is empty" fn_scrip_log_fatal "${modcommand}-files.txt is empty"
exitcode="2" exitcode="2"
core_exit.sh core_exit.sh
fi fi
else 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." 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" exitcode="2"
core_exit.sh core_exit.sh
fi fi
@ -218,13 +231,13 @@ fn_check_files_list(){
# Apply some post-install fixes to make sure everything will be fine # Apply some post-install fixes to make sure everything will be fine
fn_postinstall_tasks(){ 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 # Check file validity
fn_check_files_list fn_check_files_list
# Output to the user # Output to the user
fn_print_dots "Rearranging ${modcommand}-files.list" echo -ne "tidy up ${modcommand}-files.txt..."
sleep 0.5 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) # What lines/files to remove from file list (end var with a ";" separator)
removefromlist="cfg;addons;" removefromlist="cfg;addons;"
# Loop through files to remove from file list, # Loop through files to remove from file list,
@ -236,18 +249,25 @@ fn_postinstall_tasks(){
# Put current file into test variable # Put current file into test variable
removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )"
# Then delete matching line(s)! # Then delete matching line(s)!
sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.txt"
done 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 # Sourcemod fix
# Remove metamod from sourcemod fileslist # Remove metamod from sourcemod fileslist
if [ "${modcommand}" == "sourcemod" ]; then if [ "${modcommand}" == "sourcemod" ]; then
# Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.list # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.txt
sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.list" sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.txt"
sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.txt"
fi fi
fn_print_ok "Rearranging ${modcommand}-files.list"
sleep 0.5
} }
# Apply some post-uninstall fixes to make sure everything will be fine # 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 # Also returns ${installedmodscount} if mods were found
fn_check_installed_mods fn_check_installed_mods
# If no mods lockfile is found or if it is empty # 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" fn_print_information_nl "No installed mods or addons were found"
echo " * Install mods using LGSM first with: ./${selfname} mods-install" echo " * Install mods using LGSM first with: ./${selfname} mods-install"
fn_script_log_info "No installed mods or addons were found." fn_script_log_info "No installed mods or addons were found."
@ -459,7 +479,7 @@ fn_mods_available_commands_from_installed(){
installedmodsline="1" installedmodsline="1"
installedmodslist=() installedmodslist=()
# Loop through every line of the installed mods list ${modslockfilefullpath} # 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}")" currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")"
# Get mod info to make sure mod exists # Get mod info to make sure mod exists
fn_mod_get_info_from_command fn_mod_get_info_from_command
@ -556,7 +576,7 @@ fn_installed_mods_update_list(){
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 " * \e[33m${modprettyname}${default} (common custom files remain untouched)" echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)"
fi fi
done done
} }

Loading…
Cancel
Save