gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
445 lines
14 KiB
445 lines
14 KiB
#!/bin/bash
|
|
# LinuxGSM command_fastdl.sh function
|
|
# Author: Daniel Gibbs
|
|
# Contributor: UltimateByte
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Creates a FastDL directory.
|
|
|
|
local commandname="FASTDL"
|
|
local commandaction="FastDL Generator"
|
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
check.sh
|
|
|
|
# Only Source supports FastDL
|
|
if [ "${engine}" != "source" ]; then
|
|
fn_print_error "${gamename} does not support FastDL"
|
|
fn_script_log_error "${gamename} does not support FastDL"
|
|
core_exit.sh
|
|
fi
|
|
|
|
# Directories
|
|
webdir="${rootdir}/public_html"
|
|
fastdldir="${webdir}/fastdl"
|
|
addonsdir="${systemdir}/addons"
|
|
# Server lua autorun dir, used to autorun lua on client connect to the server
|
|
luasvautorundir="${systemdir}/lua/autorun/server"
|
|
luafastdlfile="lgsm_cl_force_fastdl.lua"
|
|
luafastdlfullpath="${luasvautorundir}/${luafastdlfile}"
|
|
|
|
fn_check_bzip2(){
|
|
# Returns true if not installed
|
|
if [ -z "$(command -v bzip2)" ]; then
|
|
bzip2installed="0"
|
|
fn_print_info "bzip2 is not installed! Install it to enable file compression"
|
|
fn_script_log_info "bzip2 is not installed. Install it to enable file compression."
|
|
fn_script_log_info "https://github.com/GameServerManagers/LinuxGSM/wiki/FastDL#bzip2-compression"
|
|
echo -en "\n"
|
|
sleep 1
|
|
echo " * https://github.com/GameServerManagers/LinuxGSM/wiki/FastDL#bzip2-compression"
|
|
sleep 2
|
|
echo ""
|
|
else
|
|
bzip2installed="1"
|
|
fi
|
|
}
|
|
|
|
# Initiates FastDL
|
|
fn_fastdl_init(){
|
|
fn_print_header
|
|
fn_script_log "Started FastDL Generator"
|
|
sleep 1
|
|
fn_check_bzip2
|
|
# User confirmation
|
|
if ! fn_prompt_yn "Build FastDL directory?" Y; then
|
|
exit
|
|
fi
|
|
fn_script_log "Initiating FastDL creation"
|
|
|
|
# Check and create directories
|
|
if [ ! -d "${webdir}" ]; then
|
|
echo ""
|
|
fn_print_info "Creating FastDL directories"
|
|
echo -en "\n"
|
|
sleep 1
|
|
fn_print_dots "Creating ${webdir} directory"
|
|
sleep 0.5
|
|
mkdir "${webdir}"
|
|
fn_print_ok "Created ${webdir} directory"
|
|
fn_script_log "FastDL created ${webdir} directory"
|
|
sleep 1
|
|
echo -en "\n"
|
|
fi
|
|
if [ ! -d "${fastdldir}" ]; then
|
|
# No directory, won't ask for removing old ones
|
|
newfastdl="true"
|
|
fn_print_dots "Creating fastdl directory"
|
|
sleep 0.5
|
|
mkdir "${fastdldir}"
|
|
fn_print_ok "Created fastdl directory"
|
|
fn_script_log "Created fastdl directory"
|
|
sleep 1
|
|
echo -en "\n"
|
|
clearoldfastdl="off" # Nothing to clear
|
|
elif [ "$(ls -A "${fastdldir}")" ]; then
|
|
newfastdl="false"
|
|
else
|
|
newfastdl="true"
|
|
fi
|
|
}
|
|
|
|
# Prompts user for FastDL creation settings
|
|
fn_fastdl_config(){
|
|
fn_print_info "Entering configuration"
|
|
fn_script_log "Configuration"
|
|
sleep 2
|
|
echo -en "\n"
|
|
# Prompt for clearing old files if directory was already here
|
|
if [ "${newfastdl}" == "false" ]; then
|
|
fn_print_dots
|
|
if fn_prompt_yn "Clear old FastDL files?" Y; then
|
|
clearoldfastdl="on"; fn_script_log "clearoldfastdl enabled"; fn_print_ok "Clearing Enabled"
|
|
else
|
|
clearoldfastdl="off"; fn_script_log "clearoldfastdl disabled"; fn_print_ok "Clearing Disabled"
|
|
fi
|
|
echo -en "\n"
|
|
fi
|
|
# Settings for bzip2 users
|
|
if [ ${bzip2installed} == 1 ]; then
|
|
# Prompt for using bzip2 if it's installed
|
|
fn_print_dots
|
|
if fn_prompt_yn "Enable bzip2 file compression?" Y; then
|
|
bzip2enable="on"; fn_script_log "bzip2 enabled"; fn_print_ok "bzip2 Enabled"
|
|
else
|
|
bzip2enable="off"; fn_script_log "bzip2 disabled"; fn_print_ok "bzip2 Disabled"
|
|
fi
|
|
echo -en "\n"
|
|
if [ "${gamename}" == "Garry's Mod" ]&&[ "${bzip2enable}" == "on" ]; then
|
|
# Prompt for clearing uncompressed files, can save some space but might cause issues for gmod
|
|
fn_print_dots
|
|
if fn_prompt_yn "Clear non-bzip2 FastDL files?" Y; then
|
|
clearnonbzip2="on"; fn_script_log "Clearing non-bzip2 files Enabled."; fn_print_ok "Clearing non-bzip2 files Enabled"
|
|
else
|
|
clearnonbzip2="off"; fn_script_log "Clearing non-bzip2 files Disabled."; fn_print_ok "Clearing non-bzip2 files Disabled"
|
|
fi
|
|
echo -en "\n"
|
|
else
|
|
# Other games default remove non bzip2 files
|
|
clearnonbzip2="on"
|
|
fn_script_log "Original uncompressed fastDL files won't be kept."
|
|
fi
|
|
fi
|
|
# Garry's Mod Specific
|
|
if [ "${gamename}" == "Garry's Mod" ]; then
|
|
# Prompt to clear addons dir from fastdl, can use unnecessary space or be required depending on addon's file structures
|
|
fn_print_dots
|
|
if fn_prompt_yn "Clear addons dir from fastdl dir?" Y; then
|
|
cleargmodaddons="on"; fn_script_log "Addons clearing Enabled."; fn_print_ok "Addons clearing Enabled"
|
|
else
|
|
cleargmodaddons="off"; fn_script_log "Addons clearing Disabled."; fn_print_ok "Addons clearing Disabled"
|
|
fi
|
|
echo -en "\n"
|
|
# Prompt for download enforcer, which is using a .lua addfile resource generator
|
|
fn_print_dots
|
|
if fn_prompt_yn "Use client download enforcer?" Y; then
|
|
luaressource="on"; fn_script_log "DL enforcer Enabled."; fn_print_ok "Enforcer Enabled"
|
|
else
|
|
luaressource="off"; fn_script_log "DL enforcer Disabled."; fn_print_ok "Enforcer Disabled"
|
|
fi
|
|
echo -en "\n"
|
|
fi
|
|
}
|
|
|
|
fn_clear_old_fastdl(){
|
|
# Clearing old FastDL if user answered yes
|
|
if [ "${clearoldfastdl}" == "on" ]; then
|
|
fn_print_info "Clearing existing FastDL directory"
|
|
fn_script_log "Clearing existing FastDL directory"
|
|
sleep 0.5
|
|
rm -R "${fastdldir:?}"/*
|
|
fn_print_ok "Old FastDL directory cleared"
|
|
fn_script_log "Old FastDL directory cleared"
|
|
sleep 1
|
|
echo -en "\n"
|
|
fi
|
|
}
|
|
|
|
fn_fastdl_gmod(){
|
|
# Copy all needed files for FastDL
|
|
echo ""
|
|
fn_print_dots "Starting gathering all needed files"
|
|
fn_script_log "Starting gathering all needed files"
|
|
sleep 1
|
|
echo -en "\n"
|
|
|
|
# No choice to cd to the directory, as find can't then display relative directory
|
|
cd "${systemdir}" || exit
|
|
|
|
# Map Files
|
|
fn_print_dots "Copying map files..."
|
|
fn_script_log "Copying map files"
|
|
sleep 0.5
|
|
find . -name '*.bsp' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.ain' | cpio --quiet -updm "${fastdldir}"
|
|
fn_print_ok "Map files copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Materials
|
|
fn_print_dots "Copying materials..."
|
|
fn_script_log "Copying materials"
|
|
sleep 0.5
|
|
find . -name '*.vtf' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.vmt' | cpio --quiet -updm "${fastdldir}"
|
|
fn_print_ok "Materials copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Models
|
|
fn_print_dots "Copying models..."
|
|
fn_script_log "Copying models"
|
|
sleep 1
|
|
find . -name '*.vtx' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.vvd' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.mdl' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.phy' | cpio --quiet -updm "${fastdldir}"
|
|
fn_print_ok "Models copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Particles
|
|
fn_print_dots "Copying particles..."
|
|
fn_script_log "Copying particles"
|
|
sleep 0.5
|
|
find . -name '*.pcf' | cpio --quiet -updm "${fastdldir}"
|
|
fn_print_ok "Particles copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Sounds
|
|
fn_print_dots "Copying sounds..."
|
|
fn_script_log "Copying sounds"
|
|
sleep 0.5
|
|
find . -name '*.wav' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.mp3' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.ogg' | cpio --quiet -updm "${fastdldir}"
|
|
fn_print_ok "Sounds copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Resources (mostly fonts)
|
|
fn_print_dots "Copying fonts and png..."
|
|
fn_script_log "Copying fonts and png"
|
|
sleep 1
|
|
find . -name '*.otf' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.ttf' | cpio --quiet -updm "${fastdldir}"
|
|
find . -name '*.png' | cpio --quiet -updm "${fastdldir}"
|
|
fn_print_ok "Fonts and png copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Going back to rootdir in order to prevent mistakes
|
|
cd "${rootdir}"
|
|
|
|
# Correct addons directory structure for FastDL
|
|
if [ -d "${fastdldir}/addons" ]; then
|
|
fn_print_info "Adjusting addons' file structure"
|
|
fn_script_log "Adjusting addons' file structure"
|
|
sleep 1
|
|
cp -Rf "${fastdldir}"/addons/*/* "${fastdldir}"
|
|
fn_print_ok "Adjusted addons' file structure"
|
|
sleep 1
|
|
echo -en "\n"
|
|
# Clear addons directory in fastdl
|
|
if [ "${cleargmodaddons}" == "on" ]; then
|
|
fn_print_info "Clearing addons dir from fastdl dir"
|
|
fn_script_log "Clearing addons dir from fastdl dir"
|
|
sleep 1
|
|
rm -R "${fastdldir:?}/addons"
|
|
fn_print_ok "Cleared addons dir from fastdl dir"
|
|
sleep 1
|
|
echo -en "\n"
|
|
fi
|
|
fi
|
|
|
|
# Correct content that may be into a lua directory by mistake like some darkrpmodification addons
|
|
if [ -d "${fastdldir}/lua" ]; then
|
|
fn_print_dots "Typical DarkRP files detected, fixing"
|
|
sleep 2
|
|
cp -Rf "${fastdldir}/lua/"* "${fastdldir}"
|
|
fn_print_ok "Stupid DarkRP file structure fixed"
|
|
sleep 2
|
|
echo -en "\n"
|
|
fi
|
|
}
|
|
|
|
fn_fastdl_source(){
|
|
# Copy all needed files for FastDL
|
|
echo ""
|
|
fn_print_dots "Starting gathering all needed files"
|
|
fn_script_log "Starting gathering all needed files"
|
|
sleep 1
|
|
echo -en "\n"
|
|
|
|
# Map Files
|
|
fn_print_dots "Copying map files..."
|
|
fn_script_log "Copying map files"
|
|
sleep 0.5
|
|
mkdir "${fastdldir}/maps"
|
|
find "${systemdir}/maps" -name '*.bsp' -exec cp {} "${fastdldir}/maps" \;
|
|
find "${systemdir}/maps" -name '*.ain' -exec cp {} "${fastdldir}/maps" \;
|
|
find "${systemdir}/maps" -name '*.nav' -exec cp {} "${fastdldir}/maps" \;
|
|
find "${systemdir}/maps" -name '*.jpg' -exec cp {} "${fastdldir}/maps" \;
|
|
find "${systemdir}/maps" -name '*.txt' -exec cp {} "${fastdldir}/maps" \;
|
|
fn_print_ok "Map files copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Materials
|
|
fn_print_dots "Copying materials..."
|
|
fn_script_log "Copying materials"
|
|
sleep 0.5
|
|
mkdir "${fastdldir}/materials"
|
|
find "${systemdir}/materials" -name '*.vtf' -exec cp {} "${fastdldir}/materials" \;
|
|
find "${systemdir}/materials" -name '*.vmt' -exec cp {} "${fastdldir}/materials" \;
|
|
find "${systemdir}/materials" -name '*.vbf' -exec cp {} "${fastdldir}/materials" \;
|
|
fn_print_ok "Materials copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Models
|
|
fn_print_dots "Copying models..."
|
|
fn_script_log "Copying models"
|
|
sleep 1
|
|
mkdir "${fastdldir}/models"
|
|
find "${systemdir}/models" -name '*.vtx' -exec cp {} "${fastdldir}/models" \;
|
|
find "${systemdir}/models" -name '*.vvd' -exec cp {} "${fastdldir}/models" \;
|
|
find "${systemdir}/models" -name '*.mdl' -exec cp {} "${fastdldir}/models" \;
|
|
find "${systemdir}/models" -name '*.phy' -exec cp {} "${fastdldir}/models" \;
|
|
find "${systemdir}/models" -name '*.jpg' -exec cp {} "${fastdldir}/models" \;
|
|
find "${systemdir}/models" -name '*.png' -exec cp {} "${fastdldir}/models" \;
|
|
fn_print_ok "Models copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Particles
|
|
fn_print_dots "Copying particles..."
|
|
fn_script_log "Copying particles"
|
|
sleep 0.5
|
|
mkdir "${fastdldir}/particles"
|
|
find "${systemdir}" -name '*.pcf' -exec cp {} "${fastdldir}/particles" \;
|
|
fn_print_ok "Particles copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
|
|
# Sounds
|
|
fn_print_dots "Copying sounds..."
|
|
fn_script_log "Copying sounds"
|
|
sleep 0.5
|
|
mkdir "${fastdldir}/sound"
|
|
find "${systemdir}" -name '*.wav' -exec cp {} "${fastdldir}/sound" \;
|
|
find "${systemdir}" -name '*.mp3' -exec cp {} "${fastdldir}/sound" \;
|
|
find "${systemdir}" -name '*.ogg' -exec cp {} "${fastdldir}/sound" \;
|
|
fn_print_ok "Sounds copied"
|
|
sleep 0.5
|
|
echo -en "\n"
|
|
}
|
|
|
|
# Generate lua file that will force download any file into the FastDL directory
|
|
fn_fastdl_gmod_lua_enforcer(){
|
|
# Remove lua file if luaressource is turned off and file exists
|
|
echo ""
|
|
if [ "${luaressource}" == "off" ]; then
|
|
if [ -f "${luafastdlfullpath}" ]; then
|
|
fn_print_dots "Removing download enforcer"
|
|
sleep 1
|
|
rm -R "${luafastdlfullpath:?}"
|
|
fn_print_ok "Removed download enforcer"
|
|
fn_script_log "Removed old download inforcer"
|
|
echo -en "\n"
|
|
sleep 2
|
|
fi
|
|
fi
|
|
# Remove old lua file and generate a new one if user said yes
|
|
if [ "${luaressource}" == "on" ]; then
|
|
if [ -f "${luafastdlfullpath}" ]; then
|
|
fn_print_dots "Removing old download enforcer"
|
|
sleep 1
|
|
rm "${luafastdlfullpath}"
|
|
fn_print_ok "Removed old download enforcer"
|
|
fn_script_log "Removed old download enforcer"
|
|
echo -en "\n"
|
|
sleep 1
|
|
fi
|
|
fn_print_dots "Generating new download enforcer"
|
|
fn_script_log "Generating new download enforcer"
|
|
sleep 1
|
|
# Read all filenames and put them into a lua file at the right path
|
|
find "${fastdldir:?}" \( -type f ! -name "*.bz2" \) -printf '%P\n' | while read line; do
|
|
echo "resource.AddFile( "\""${line}"\"" )" >> "${luafastdlfullpath}"
|
|
done
|
|
fn_print_ok "Download enforcer generated"
|
|
fn_script_log "Download enforcer generated"
|
|
echo -en "\n"
|
|
echo ""
|
|
sleep 2
|
|
fi
|
|
}
|
|
|
|
fn_fastdl_bzip2(){
|
|
# Compressing using bzip2 if user said yes
|
|
echo ""
|
|
if [ ${bzip2enable} == "on" ]; then
|
|
fn_print_info "Have a break, this step could take a while..."
|
|
echo -en "\n"
|
|
echo ""
|
|
fn_print_dots "Compressing files using bzip2..."
|
|
fn_script_log "Compressing files using bzip2..."
|
|
# bzip2 all files that are not already compressed (keeping original files)
|
|
find "${fastdldir:?}" \( -type f ! -name "*.bz2" \) -exec bzip2 -qk \{\} \;
|
|
fn_print_ok "bzip2 compression done"
|
|
fn_script_log "bzip2 compression done"
|
|
sleep 1
|
|
echo -en "\n"
|
|
# Clear non compressed FastDL files
|
|
if [ "${clearnonbzip2}" == "on" ]; then
|
|
fn_print_dots "Clearing original uncompressed FastDL files..."
|
|
sleep 1
|
|
find "${fastdldir:?}" \( -type f ! -name "*.bz2" \) -exec rm {} \;
|
|
fn_print_ok "Cleared uncompressed FastDL files"
|
|
fn_script_log "Cleared uncompressed FastDL files."
|
|
fi
|
|
fi
|
|
}
|
|
|
|
fn_fastdl_completed(){
|
|
# Finished message
|
|
echo ""
|
|
fn_print_ok "FastDL created!"
|
|
fn_script_log "FastDL job done"
|
|
sleep 2
|
|
echo -en "\n"
|
|
echo ""
|
|
fn_print_info_nl "Need more documentation?"
|
|
echo " * https://github.com/GameServerManagers/LinuxGSM/wiki/FastDL"
|
|
echo -en "\n"
|
|
if [ "$bzip2installed" == "0" ]; then
|
|
echo "By the way, you'd better install bzip2 and re-run this command!"
|
|
fi
|
|
echo "Credits: UltimateByte"
|
|
}
|
|
|
|
# Run functions
|
|
fn_check_bzip2
|
|
fn_fastdl_init
|
|
fn_fastdl_config
|
|
fn_clear_old_fastdl
|
|
if [ "${gamename}" == "Garry's Mod" ]; then
|
|
fn_fastdl_gmod
|
|
fn_fastdl_gmod_lua_enforcer
|
|
else
|
|
fn_fastdl_source
|
|
fi
|
|
fn_fastdl_bzip2
|
|
fn_fastdl_completed
|
|
core_exit.sh
|
|
|