|
|
@ -306,157 +306,54 @@ fn_fastdl_source(){ |
|
|
|
fn_script_log "analyzing required files" |
|
|
|
fi |
|
|
|
|
|
|
|
# Maps |
|
|
|
if [ -d "${systemdir}/maps" ]; then |
|
|
|
local allowed_extentions_array_=( "*.bsp" "*.ain" "*.nav" "*.jpg" "*.txt" ) |
|
|
|
for allowed_extention in "${allowed_extentions_array[@]}" |
|
|
|
local directorys_array_=( "maps" "materials" "particles" "sounds" "*.txt" ) |
|
|
|
for directory in "${directorys_array[@]}" |
|
|
|
do |
|
|
|
fileswc=0 |
|
|
|
tput sc |
|
|
|
if [ -z "${copyflag}" ]; then |
|
|
|
tput rc; tput el |
|
|
|
printf "gathering maps ${allowed_extention} : ${fileswc}..." |
|
|
|
fi |
|
|
|
while read -r mapfile; do |
|
|
|
((fileswc++)) |
|
|
|
if [ -n "${copyflag}" ]; then |
|
|
|
tput rc; tput el |
|
|
|
printf "copying maps ${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 |
|
|
|
done < <(find "${systemdir}/maps" -type f -iname ${allowed_extention}) |
|
|
|
|
|
|
|
if [ -z "${copyflag}" ]; then |
|
|
|
tput rc; tput el |
|
|
|
printf "gathering maps ${allowed_extention} : ${fileswc}..." |
|
|
|
fi |
|
|
|
if [ ${fileswc} != 0 ]&&[ -n "${copyflag}" ]||[ -z "${copyflag}" ]; then |
|
|
|
fn_print_ok_eol_nl |
|
|
|
fi |
|
|
|
done |
|
|
|
fi |
|
|
|
|
|
|
|
# Materials |
|
|
|
if [ -d "${systemdir}/materials" ]; then |
|
|
|
if [ -d "${systemdir}/${directory}" ]; then |
|
|
|
if [ "${directory}" == "maps" ]; then |
|
|
|
local allowed_extentions_array_=( "*.bsp" "*.ain" "*.nav" "*.jpg" "*.txt" ) |
|
|
|
elif [ "${directory}" == "materials" ]; then |
|
|
|
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 |
|
|
|
cp "${mapfile}" "${fastdldir}/materials" |
|
|
|
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 |
|
|
|
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 |
|
|
|
elif [ "${directory}" == "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 |
|
|
|
printf "copying particles ${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 |
|
|
|
done < <(find "${systemdir}/particles" -type f -iname ${allowed_extention}) |
|
|
|
|
|
|
|
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 |
|
|
|
elif [ "${directory}" == "sounds" ]; then |
|
|
|
local allowed_extentions_array=( "*.vtx" "*.vvd" "*.mdl" "*.mdl" "*.phy" "*.jpg" "*.png" ) |
|
|
|
fi |
|
|
|
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}..." |
|
|
|
printf "gathering ${directory} ${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" |
|
|
|
printf "copying ${directory} ${allowed_extention} : ${fileswc}..." |
|
|
|
if [ ! -d "${fastdldir}/${directory}" ]; then |
|
|
|
mkdir "${fastdldir}/${directory}" |
|
|
|
fi |
|
|
|
cp "${mapfile}" "${fastdldir}/sounds" |
|
|
|
cp "${mapfile}" "${fastdldir}/${directory}" |
|
|
|
else |
|
|
|
tput rc; tput el |
|
|
|
printf "gathering sounds ${allowed_extention} : ${fileswc}..." |
|
|
|
printf "gathering ${directory} ${allowed_extention} : ${fileswc}..." |
|
|
|
sleep 0.01 |
|
|
|
echo "${mapfile}" >> "${tmpdir}/fastdl_files_to_compress.txt" |
|
|
|
fi |
|
|
|
done < <(find "${systemdir}/sounds" -type f -iname ${allowed_extention}) |
|
|
|
done < <(find "${systemdir}/${directory}" -type f -iname ${allowed_extention}) |
|
|
|
|
|
|
|
if [ -z "${copyflag}" ]; then |
|
|
|
tput rc; tput el |
|
|
|
printf "gathering sounds ${allowed_extention} : ${fileswc}..." |
|
|
|
printf "gathering ${directory} ${allowed_extention} : ${fileswc}..." |
|
|
|
fi |
|
|
|
if [ ${fileswc} != 0 ]&&[ -n "${copyflag}" ]||[ -z "${copyflag}" ]; then |
|
|
|
fn_print_ok_eol_nl |
|
|
|
fi |
|
|
|
done |
|
|
|
fi |
|
|
|
done |
|
|
|
|
|
|
|
if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then |
|
|
|
totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt") |
|
|
|