Browse Source

merged copy code in to one

pull/1331/head
Daniel Gibbs 8 years ago
parent
commit
96ac99b543
  1. 219
      lgsm/functions/command_fastdl.sh

219
lgsm/functions/command_fastdl.sh

@ -306,179 +306,76 @@ fn_fastdl_source(){
fn_script_log "analyzing required files" fn_script_log "analyzing required files"
fi fi
# Maps local directorys_array_=( "maps" "materials" "particles" "sounds" "*.txt" )
if [ -d "${systemdir}/maps" ]; then for directory in "${directorys_array[@]}"
local allowed_extentions_array_=( "*.bsp" "*.ain" "*.nav" "*.jpg" "*.txt" ) do
for allowed_extention in "${allowed_extentions_array[@]}" if [ -d "${systemdir}/${directory}" ]; then
do if [ "${directory}" == "maps" ]; then
fileswc=0 local allowed_extentions_array_=( "*.bsp" "*.ain" "*.nav" "*.jpg" "*.txt" )
tput sc elif [ "${directory}" == "materials" ]; then
if [ -z "${copyflag}" ]; then local allowed_extentions_array=( "*.vtf" "*.vmt" "*.vbf" )
tput rc; tput el elif [ "${directory}" == "particles" ]; then
printf "gathering maps ${allowed_extention} : ${fileswc}..." local allowed_extentions_array=( "*.pcf" )
elif [ "${directory}" == "sounds" ]; then
local allowed_extentions_array=( "*.vtx" "*.vvd" "*.mdl" "*.mdl" "*.phy" "*.jpg" "*.png" )
fi fi
while read -r mapfile; do for allowed_extention in "${allowed_extentions_array[@]}"
((fileswc++)) do
if [ -n "${copyflag}" ]; then fileswc=0
tput sc
if [ -z "${copyflag}" ]; then
tput rc; tput el tput rc; tput el
printf "copying maps ${allowed_extention} : ${fileswc}..." printf "gathering ${directory} ${allowed_extention} : ${fileswc}..."
if [ ! -d "${fastdldir}/maps" ]; then
mkdir "${fastdldir}/maps"
fi
cp "${mapfile}" "${fastdldir}/maps"
else
tput rc; tput el
printf "gathering maps ${allowed_extention} : ${fileswc}..."
sleep 0.01
echo "${mapfile}" >> "${tmpdir}/fastdl_files_to_compress.txt"
fi fi
done < <(find "${systemdir}/maps" -type f -iname ${allowed_extention}) while read -r mapfile; do
((fileswc++))
if [ -z "${copyflag}" ]; then if [ -n "${copyflag}" ]; then
tput rc; tput el tput rc; tput el
printf "gathering maps ${allowed_extention} : ${fileswc}..." printf "copying ${directory} ${allowed_extention} : ${fileswc}..."
fi if [ ! -d "${fastdldir}/${directory}" ]; then
if [ ${fileswc} != 0 ]&&[ -n "${copyflag}" ]||[ -z "${copyflag}" ]; then mkdir "${fastdldir}/${directory}"
fn_print_ok_eol_nl fi
fi cp "${mapfile}" "${fastdldir}/${directory}"
done else
fi tput rc; tput el
printf "gathering ${directory} ${allowed_extention} : ${fileswc}..."
# Materials sleep 0.01
if [ -d "${systemdir}/materials" ]; then echo "${mapfile}" >> "${tmpdir}/fastdl_files_to_compress.txt"
local allowed_extentions_array=( "*.vtf" "*.vmt" "*.vbf" )
for allowed_extention in "${allowed_extentions_array[@]}"
do
fileswc=0
tput sc
if [ -z "${copyflag}" ]; then
tput rc; tput el
printf "gathering materials ${allowed_extention} : ${fileswc}..."
fi
while read -r mapfile; do
((fileswc++))
if [ -n "${copyflag}" ]; then
tput rc; tput el
printf "copying materials ${allowed_extention} : ${fileswc}..."
if [ ! -d "${fastdldir}/materials" ]; then
mkdir "${fastdldir}/materials"
fi fi
cp "${mapfile}" "${fastdldir}/materials" done < <(find "${systemdir}/${directory}" -type f -iname ${allowed_extention})
else
tput rc; tput el
printf "gathering materials ${allowed_extention} : ${fileswc}..."
sleep 0.01
echo "${mapfile}" >> "${tmpdir}/fastdl_files_to_compress.txt"
fi
done < <(find "${systemdir}/materials" -type f -iname ${allowed_extention})
if [ -z "${copyflag}" ]; then if [ -z "${copyflag}" ]; then
tput rc; tput el
printf "gathering materials ${allowed_extention} : ${fileswc}..."
fi
if [ ${fileswc} != 0 ]&&[ -n "${copyflag}" ]||[ -z "${copyflag}" ]; then
fn_print_ok_eol_nl
fi
done
fi
# Particles
if [ -d "${systemdir}/particles" ]; then
local allowed_extentions_array=( "*.pcf" )
for allowed_extention in "${allowed_extentions_array[@]}"
do
fileswc=0
tput sc
if [ -z "${copyflag}" ]; then
tput rc; tput el
printf "gathering particles ${allowed_extention} : ${fileswc}..."
fi
while read -r mapfile; do
((fileswc++))
if [ -n "${copyflag}" ]; then
tput rc; tput el tput rc; tput el
printf "copying particles ${allowed_extention} : ${fileswc}..." printf "gathering ${directory} ${allowed_extention} : ${fileswc}..."
if [ ! -d "${fastdldir}/particles" ]; then
mkdir "${fastdldir}/particles"
fi
cp "${mapfile}" "${fastdldir}/particles"
else
tput rc; tput el
printf "gathering particles ${allowed_extention} : ${fileswc}..."
sleep 0.01
echo "${mapfile}" >> "${tmpdir}/fastdl_files_to_compress.txt"
fi fi
done < <(find "${systemdir}/particles" -type f -iname ${allowed_extention}) if [ ${fileswc} != 0 ]&&[ -n "${copyflag}" ]||[ -z "${copyflag}" ]; then
fn_print_ok_eol_nl
if [ -z "${copyflag}" ]; then
tput rc; tput el
printf "gathering particles ${allowed_extention} : ${fileswc}..."
fi
if [ ${fileswc} != 0 ]&&[ -n "${copyflag}" ]||[ -z "${copyflag}" ]; then
fn_print_ok_eol_nl
fi
done
fi
# Sounds
if [ -d "${systemdir}/sounds" ]; then
local allowed_extentions_array=( "*.vtx" "*.vvd" "*.mdl" "*.mdl" "*.phy" "*.jpg" "*.png" )
for allowed_extention in "${allowed_extentions_array[@]}"
do
fileswc=0
tput sc
if [ -z "${copyflag}" ]; then
tput rc; tput el
printf "gathering sounds ${allowed_extention} : ${fileswc}..."
fi
while read -r mapfile; do
((fileswc++))
if [ -n "${copyflag}" ]; then
tput rc; tput el
printf "copying soundss ${allowed_extention} : ${fileswc}..."
if [ ! -d "${fastdldir}/sounds" ]; then
mkdir "${fastdldir}/sounds"
fi
cp "${mapfile}" "${fastdldir}/sounds"
else
tput rc; tput el
printf "gathering sounds ${allowed_extention} : ${fileswc}..."
sleep 0.01
echo "${mapfile}" >> "${tmpdir}/fastdl_files_to_compress.txt"
fi fi
done < <(find "${systemdir}/sounds" -type f -iname ${allowed_extention}) done
fi
if [ -z "${copyflag}" ]; then done
tput rc; tput el
printf "gathering sounds ${allowed_extention} : ${fileswc}..." if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then
fi totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt")
if [ ${fileswc} != 0 ]&&[ -n "${copyflag}" ]||[ -z "${copyflag}" ]; then # Calculates total file size
fn_print_ok_eol_nl while read dufile; do
fi filesize=$(du -b "${dufile}"| awk '{ print $1 }')
done filesizetotal=$(( ${filesizetotal} + ${filesize} ))
done <"${tmpdir}/fastdl_files_to_compress.txt"
fi fi
if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then if [ -z "${copyflag}" ]; then
totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt") echo "about to compress ${totalfiles} files, total size $(fn_human_readable_file_size ${filesizetotal} 0) "
# Calculates total file size rm "${tmpdir}/fastdl_files_to_compress.txt"
while read dufile; do if fn_prompt_yn "Continue?" Y; then
filesize=$(du -b "${dufile}"| awk '{ print $1 }') copyflag=1
filesizetotal=$(( ${filesizetotal} + ${filesize} )) fn_fastdl_source
done <"${tmpdir}/fastdl_files_to_compress.txt" else
fi core_exit.sh
fi
if [ -z "${copyflag}" ]; then
echo "about to compress ${totalfiles} files, total size $(fn_human_readable_file_size ${filesizetotal} 0) "
rm "${tmpdir}/fastdl_files_to_compress.txt"
if fn_prompt_yn "Continue?" Y; then
copyflag=1
fn_fastdl_source
else else
core_exit.sh fn_fastdl_bzip2
fi fi
else
fn_fastdl_bzip2
fi
} }
# Generate lua file that will force download any file into the FastDL directory # Generate lua file that will force download any file into the FastDL directory

Loading…
Cancel
Save